/* --- PILL STYLE FOR MOBILE NAV MENU --- */
.landing-mobile-nav a {
  padding: 0.45em 1.3em;
  border-radius: 999px;
  background: transparent;
  transition:
    background 0.18s,
    color 0.18s;
  border: 1.5px solid transparent;
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.5em;
}
.landing-mobile-nav a:hover,
.landing-mobile-nav a:focus-visible {
  background: var(--landing-accent);
  color: #fff;
  border-color: var(--landing-accent);
  box-shadow: 0 2px 12px 0 rgba(28, 194, 217, 0.1);
}
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --landing-bg: #07090c;
  --landing-bg-soft: #10202b;
  --landing-panel: rgba(16, 30, 40, 0.86);
  --landing-panel-strong: rgba(13, 24, 33, 0.94);
  --landing-border: rgba(159, 233, 244, 0.12);
  --landing-text: #e9f4f9;
  --landing-muted: #92a9b8;
  --landing-accent: #1cc2d9;
  --landing-accent-strong: #0d9bb4;
  --landing-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --landing-radius: 8px;
  --landing-container: min(1180px, calc(100vw - 40px));
  --landing-anchor-offset: 132px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--landing-text);
  background: var(--landing-bg);
}

body.landing-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: block;
}

.landing-header,
.hero-section,
.section-block {
  width: var(--landing-container);
  margin: 0 auto;
}

.hero-section,
.section-block,
.membership-section {
  scroll-margin-top: var(--landing-anchor-offset);
}

.membership-section {
  width: min(1260px, calc(100vw - 32px));
}

.mb-4 {
  display: block !important;
  margin-bottom: 1.5rem !important;
}

.landing-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 18px 24px;
  margin-top: 18px;
  border: 0 !important;
  border-radius: 18px !important;
  background: rgba(8, 17, 24, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.landing-brand-logo {
  width: 188px;
  height: auto;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  color: var(--landing-muted);
  font-size: 0.95rem;
}

.landing-nav a:focus-visible {
  color: var(--landing-text);
}

/* --- PILL STYLE FOR NAV MENU --- */
.landing-nav a {
  padding: 0.45em 1.3em;
  border-radius: 999px;
  background: transparent;
  transition:
    background 0.18s,
    color 0.18s;
  border: 1.5px solid transparent;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.landing-nav a:hover,
.landing-nav a:focus-visible {
  background: var(--landing-accent);
  color: #fff;
  border-color: var(--landing-accent);
  box-shadow: 0 2px 12px 0 rgba(28, 194, 217, 0.1);
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.landing-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(159, 233, 244, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--landing-text);
  cursor: pointer;
}

.landing-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 8px;
  background: currentColor;
}

.landing-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  background: rgba(2, 9, 14, 0.72);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.landing-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.landing-mobile-menu__panel {
  width: min(360px, 100%);
  max-height: calc(100dvh - 32px);
  padding: 1.25rem;
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 22, 30, 0.98), rgba(8, 18, 25, 0.98));
  box-shadow: var(--landing-shadow);
  transform: translateX(18px);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.landing-mobile-menu.is-open .landing-mobile-menu__panel {
  transform: translateX(0);
}

.landing-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-mobile-menu__logo {
  width: 164px;
  height: auto;
}

.landing-mobile-menu__close {
  border: 0;
  background: transparent;
  color: var(--landing-muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.landing-mobile-nav {
  display: grid;
  gap: 0.75rem;
}

.landing-mobile-nav a {
  padding: 0.45em 1.3em;
  border-radius: 999px;
  background: transparent;
  transition:
    background 0.18s,
    color 0.18s;
  border: 1.5px solid transparent;
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.5em;
}
.landing-mobile-nav a:hover,
.landing-mobile-nav a:focus-visible {
  background: var(--landing-accent);
  color: #fff;
  border-color: var(--landing-accent);
  box-shadow: 0 2px 12px 0 rgba(28, 194, 217, 0.1);
}

.landing-mobile-actions {
  margin-top: auto;
  display: grid;
}

@media (max-height: 520px) and (orientation: landscape) {
  .landing-mobile-menu {
    padding: 10px;
  }

  .landing-mobile-menu__panel {
    width: min(400px, 100%);
    max-height: calc(100dvh - 20px);
    padding: 1rem;
    gap: 1rem;
  }

  .landing-mobile-menu__logo {
    width: 132px;
  }

  .landing-mobile-nav {
    gap: 0.55rem;
  }

  .landing-mobile-nav a {
    padding: 0.8rem 0.9rem;
  }

  .landing-mobile-actions {
    margin-top: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  text-transform: uppercase !important;
  background: linear-gradient(135deg, #39d3e9, #14adc4);
  box-shadow: 0 14px 28px rgba(28, 194, 217, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2fb0c4, #0f7686);
}

.btn-secondary,
.btn-ghost {
  border-color: rgba(159, 233, 244, 0.16);
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-lg {
  min-height: 54px;
  padding-inline: 1.6rem;
}

.hero-section {
  padding: 84px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: rgba(28, 194, 217, 0.12);
  border: 1px solid rgba(28, 194, 217, 0.16);
  color: #9fe9f4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-card h2,
.benefit-highlight h3,
.showcase-panel h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-top: 1.1rem;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.hero-text,
.section-heading p,
.benefit-highlight p,
.cta-card p,
.step-card p,
.feature-card p,
.benefit-list span,
.hero-stats span,
.mini-card span,
.showcase-floating li {
  color: var(--landing-muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats article,
.feature-card,
.step-card,
.benefit-highlight,
.benefit-list article,
.cta-card,
.showcase-card,
.showcase-floating {
  border: 0;
  background: linear-gradient(180deg, rgba(15, 30, 41, 0.88), rgba(9, 19, 26, 0.95));
  box-shadow: var(--landing-shadow);
}

.hero-stats article {
  padding: 1.2rem;
  border-radius: 8px;
}

.hero-stats strong,
.feature-card h3,
.step-card h3,
.benefit-list strong,
.mini-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.hero-showcase {
  position: relative;
  min-height: 640px;
}

.showcase-card-main {
  position: relative;
  padding: 1.1rem;
  border-radius: 8px;
}

.showcase-topbar {
  display: flex;
  gap: 0.45rem;
  padding: 0.2rem 0 1rem;
}

.showcase-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.showcase-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.panel-label,
.mini-card p,
.benefit-highlight-label,
.floating-label {
  margin: 0 0 0.4rem;
  color: #9fe9f4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-badge {
  flex-shrink: 0;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  background: rgba(28, 194, 217, 0.12);
  color: #9fe9f4;
  font-weight: 700;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  padding: 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
}

.mini-card.is-accent {
  background: linear-gradient(135deg, rgba(28, 194, 217, 0.16), rgba(8, 31, 38, 0.8));
}

.mini-card.is-outline {
  border: 0;
}

.showcase-floating {
  position: absolute;
  width: min(290px, 46%);
  padding: 1.1rem 1.15rem;
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.showcase-floating-top {
  top: -26px;
  right: -10px;
}

.showcase-floating-bottom {
  left: -12px;
  bottom: 36px;
}

.sport-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sport-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--landing-text);
  font-size: 0.92rem;
}

.sport-pill img {
  width: 20px;
  height: 20px;
}

.showcase-floating ul {
  margin: 0;
  padding-left: 1.1rem;
}

.section-block {
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.step-card,
.benefit-highlight,
.benefit-list article {
  border-radius: var(--landing-radius);
  padding: 1.45rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(28, 194, 217, 0.12);
  color: #9fe9f4;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon--teams {
  background: rgba(28, 194, 217, 0.14);
}

.feature-icon--events {
  background: rgba(94, 193, 255, 0.13);
}

.feature-icon--finance {
  background: rgba(62, 214, 156, 0.14);
  color: #8ff0cb;
}

.feature-icon--map {
  background: rgba(255, 184, 77, 0.14);
  color: #ffd27a;
}

.workflow-panel {
  padding: 2.2rem;
  border-radius: 8px;
  border: 0;
  /* background: linear-gradient(180deg, rgba(7, 17, 23, 0.94), rgba(11, 24, 31, 0.9)); */
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.text-uppercase {
  text-transform: uppercase;
}
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(28, 194, 217, 0.14);
  color: #9fe9f4;
  font-weight: 800;
}

.benefits-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.membership-layout {
  width: 100%;
  margin: 0 auto;
}

.membership-highlight,
.membership-card {
  border-radius: var(--landing-radius);
  padding: 1.45rem;
  border: 0;
  background: linear-gradient(180deg, rgba(15, 30, 41, 0.88), rgba(9, 19, 26, 0.95));
  box-shadow: var(--landing-shadow);
}

.membership-highlight {
  background: linear-gradient(135deg, rgba(28, 194, 217, 0.14), rgba(9, 19, 26, 0.96));
}

.membership-highlight h3,
.membership-card strong {
  display: block;
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.membership-highlight p,
.membership-card span {
  color: var(--landing-muted);
  line-height: 1.75;
}

.membership-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.membership-card {
  width: 100%;
}

.benefits-layout .membership-card {
  min-height: 100%;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 8px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.landing-footer {
  width: var(--landing-container);
  margin: 0 auto 28px;
  padding: 0 0 24px;
}

.landing-footer__inner {
  padding: 1.1rem 1.25rem;
  color: var(--landing-muted);
  text-align: center;
  font-size: 0.92rem;
}

.landing-footer__inner p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-footer__inner a {
  color: #9fe9f4;
  font-weight: 700;
}

.landing-footer__copyright {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #9fe9f4;
}

.landing-footer__copyright svg {
  width: 18px;
  height: 18px;
}

.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(159, 233, 244, 0.18);
  border-radius: 999px;
  background: rgba(8, 17, 24, 0.82);
  backdrop-filter: blur(12px);
  color: #9fe9f4;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
  background: rgba(16, 34, 46, 0.96);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 42px rgba(28, 194, 217, 0.22);
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.scroll-to-top:hover svg,
.scroll-to-top:focus-visible svg {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .landing-header {
    border-radius: 8px;
    padding: 18px;
  }

  .landing-nav {
    display: none;
  }

  .landing-menu-toggle {
    display: inline-flex;
  }

  .hero-section,
  .feature-grid,
  .workflow-steps,
  .membership-layout,
  .benefits-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    gap: 2.4rem;
  }

  .hero-showcase {
    min-height: auto;
  }

  .showcase-floating {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .membership-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-header {
    width: min(100vw - 24px, 100%);
    justify-content: space-between;
  }

  .landing-actions {
    display: none;
  }

  .hero-section {
    padding-top: 52px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-stats,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .workflow-panel,
  .cta-card,
  .showcase-card-main {
    padding: 1.25rem;
  }

  .cta-card {
    gap: 1.25rem;
  }

  .cta-card > div,
  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }

  .showcase-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-footer {
    width: min(100vw - 24px, 100%);
  }

  .scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

.legal-main {
  padding: 0 30px !important;
  color: #dcdcdc;
  line-height: 1.5rem !important;
}

.legal-main h1,
.legal-main h2,
.legal-main h3,
.legal-main h4 {
  color: #f1f1f1 !important;
  margin-top: 1.5rem !important;
}

.legal-main h3 {
  text-align: center !important;
  font-size: 1.5rem !important;
}
