:root {
  /* Brand colourful palette */
  --cyan: #00c2c7;
  --cyan-soft: #ecfeff;
  --green: #14aeac;
  --blue: #2a628f;
  --blue-deep: #234f72;
  --gold: #f3c969;
  --gold-dark: #b8861f;
  --pink: #ffa9e7;
  --pink-deep: #c85da8;
  --plum: #38023b;
  --orange: #fb923c;
  --violet: #a78bfa;
  --sky: #60a5fa;
  --amber: #f59e0b;

  --white: #ffffff;
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --border: rgba(42, 98, 143, 0.1);
  --border-strong: #e2e8f0;
  --text: #0f172a;
  --text-muted: #475569;
  --text-soft: #64748b;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 40px rgba(42, 98, 143, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-glow-cyan: 0 8px 32px rgba(0, 194, 199, 0.25);

  --radius: 1rem;
  --radius-lg: 1.35rem;
  --radius-xl: 1.75rem;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--blue-deep);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

/* Parallax backgrounds — fixed while content scrolls */
.parallax-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.parallax-section.is-active .parallax-bg {
  opacity: 1;
}

.parallax-bg--soft::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.94) 100%
  );
}

.parallax-bg--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(35, 79, 114, 0.78) 45%,
    rgba(56, 2, 59, 0.82) 100%
  );
}

/* Dark sections: solid base (no parallax bleed on CTA) */
.referral {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, var(--plum) 100%);
}

.cta {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  color: var(--white);
  background: var(--blue-deep);
  isolation: isolate;
}

.referral .parallax-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

.referral .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .parallax-bg {
    height: 100%;
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  .parallax-section:not(.referral):not(.cta) .parallax-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-attachment: fixed;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(0, 194, 199, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(0, 194, 199, 0.35);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
}

.btn-ghost:hover {
  color: var(--blue);
  background: rgba(0, 194, 199, 0.08);
}

.btn-light {
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: var(--shadow-md);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.75);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
}

.brand-mark {
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-size: 0.975rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a:not(.btn) {
  padding: 0.5rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  border-radius: 999px;
}

.site-nav a:not(.btn):hover {
  color: var(--blue);
  background: rgba(0, 194, 199, 0.08);
}

/* Sport switcher */
.sport-switcher {
  position: relative;
}

.sport-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.sport-switcher-toggle:hover {
  border-color: rgba(0, 194, 199, 0.45);
  background: var(--cyan-soft);
}

.sport-switcher-current {
  color: var(--text-soft);
  font-weight: 600;
}

.sport-switcher-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 11rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 60;
}

.sport-switcher-menu[hidden] {
  display: none !important;
}

.sport-switcher.is-open .sport-switcher-menu:not([hidden]) {
  display: block;
}

.sport-switcher-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sport-switcher-menu a:hover {
  background: var(--cyan-soft);
  color: var(--blue);
}

.sport-switcher-menu a.is-active {
  background: rgba(0, 194, 199, 0.12);
  color: var(--blue-deep);
}

/* Coverage strip */
.coverage-strip {
  padding: 1rem 0;
  background: linear-gradient(90deg, rgba(0, 194, 199, 0.08), rgba(255, 169, 231, 0.08), rgba(243, 201, 105, 0.08));
  border-bottom: 1px solid var(--border-strong);
}

.coverage-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  text-align: center;
}

.coverage-badge {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coverage-inner p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.coverage-inner strong {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: var(--cyan-soft);
  border-radius: 0.75rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

/* Hero */
.hero {
  padding: 3.5rem 0 5rem;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
  color: var(--text);
  font-weight: 400;
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 194, 199, 0.15), rgba(255, 169, 231, 0.15));
  border: 1px solid rgba(0, 194, 199, 0.35);
  color: var(--green);
  font-size: 0.75rem;
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.92);
}

.lead,
.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust li::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mock {
  position: relative;
  width: min(100%, 290px);
  padding: 0.65rem;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border-radius: 2.25rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.phone-notch {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.phone-screen {
  background: var(--white);
  border-radius: 1.85rem;
  padding: 2rem 1.15rem 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.mock-ai-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  padding-bottom: 0.25rem;
}

.mock-ai-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.mock-card {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-strong);
}

.mock-card--ai {
  background: linear-gradient(135deg, rgba(0, 194, 199, 0.08), rgba(255, 169, 231, 0.08));
  border-color: rgba(0, 194, 199, 0.25);
}

.mock-card--accent {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(243, 201, 105, 0.12));
  border-color: rgba(96, 165, 250, 0.25);
}

.mock-label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  margin-bottom: 0.15rem;
}

.mock-card strong {
  font-size: 1.05rem;
  color: var(--text);
}

.mock-hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.mock-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.25rem;
}

.pill {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.pill-cyan { background: rgba(0, 194, 199, 0.15); color: #10918f; }
.pill-blue { background: rgba(96, 165, 250, 0.18); color: var(--blue); }
.pill-gold { background: rgba(243, 201, 105, 0.25); color: var(--gold-dark); }
.pill-pink { background: rgba(255, 169, 231, 0.25); color: var(--pink-deep); }

/* AI strip */
.ai-strip {
  padding: 4.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.section-head .section-lead {
  margin-inline: auto;
}

.ai-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ai-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ai-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.ai-card-icon--cyan { background: rgba(0, 194, 199, 0.12); color: var(--cyan); }
.ai-card-icon--blue { background: rgba(96, 165, 250, 0.15); color: var(--blue); }
.ai-card-icon--gold { background: rgba(243, 201, 105, 0.22); color: var(--gold-dark); }
.ai-card-icon--pink { background: rgba(255, 169, 231, 0.2); color: var(--pink-deep); }

.ai-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.ai-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* How + features */
.how,
.features,
.audience {
  padding: 5rem 0;
}

.how {
  background: linear-gradient(
    160deg,
    var(--cyan-soft) 0%,
    #f0f9ff 35%,
    #fff8fb 70%,
    rgba(243, 201, 105, 0.12) 100%
  );
}

.how .parallax-bg--soft::after {
  background: linear-gradient(
    180deg,
    rgba(236, 254, 255, 0.5) 0%,
    rgba(240, 249, 255, 0.35) 45%,
    rgba(255, 240, 251, 0.45) 100%
  );
}

.steps {
  display: grid;
  gap: 1.25rem;
  list-style: none;
}

.steps li {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--white);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}

.step-num--blue {
  background: linear-gradient(135deg, var(--sky), var(--blue));
}

.step-num--pink {
  background: linear-gradient(135deg, var(--pink), var(--violet));
}

.steps h3 {
  margin: 0 0 0.375rem;
  font-size: 1.15rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.feature-groups {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-group {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-group-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.feature-group-head h3 {
  margin: 0;
  font-size: 1.0625rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-icon--cyan { background: rgba(0, 194, 199, 0.12); color: var(--cyan); }
.feature-icon--blue { background: rgba(96, 165, 250, 0.15); color: var(--blue); }
.feature-icon--gold { background: rgba(243, 201, 105, 0.22); color: var(--gold-dark); }
.feature-icon--pink { background: rgba(255, 169, 231, 0.2); color: var(--pink-deep); }
.feature-icon--violet { background: rgba(167, 139, 250, 0.18); color: #7c3aed; }
.feature-icon--orange { background: rgba(251, 146, 60, 0.15); color: #ea580c; }

.feature-group ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.feature-group li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.feature-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--cyan);
}

.tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  vertical-align: middle;
}

.tag-paid {
  background: rgba(96, 165, 250, 0.18);
  color: var(--blue);
}

.tag-pro {
  background: rgba(243, 201, 105, 0.28);
  color: var(--gold-dark);
}

/* Pricing */
.pricing {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cyan-soft) 100%);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.price-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--pink), var(--gold)) border-box;
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.price-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--plum));
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.price-card-top h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.price {
  margin: 0;
  line-height: 1;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--blue-deep);
}

.price-period {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 600;
}

.price-blurb {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  flex: 1;
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.price-features li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.375rem;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

.price-features li.muted {
  color: var(--text-soft);
  font-style: italic;
}

.price-features li.muted::before {
  content: '·';
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Referral + CTA typography */
.referral {
  padding: 5rem 0;
}

.cta-inner {
  text-align: center;
}

.cta-panel {
  max-width: 40rem;
  margin-inline: auto;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue) 55%, var(--plum) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.referral-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.referral-copy h2,
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0.5rem 0 1rem;
  color: var(--white);
}

.referral-copy p,
.cta-inner p {
  color: rgba(255, 255, 255, 0.96);
  max-width: 32rem;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.referral-steps {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.96);
}

.referral-steps li {
  margin-bottom: 0.375rem;
}

.referral-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.referral-progress-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.referral-avatars {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.referral-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(243, 201, 105, 0.25);
  overflow: hidden;
  flex-shrink: 0;
}

.referral-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.referral-reward {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
}

/* Audience */
.audience-grid {
  display: grid;
  gap: 1.5rem;
}

.audience-grid > div {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.audience-grid h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0.375rem 0 0.75rem;
}

.audience-grid p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.audience-benefits {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.audience-benefits li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.375rem;
  position: relative;
}

.audience-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.faq-list div {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.faq-list dt {
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text);
}

.faq-list dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* CTA layout */
.cta-inner h2 {
  max-width: 22ch;
  margin-inline: auto;
}

.cta-panel > p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.96);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer — always above parallax layers */
.site-footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--border-strong);
  padding: 2rem 0;
  background: var(--white);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Back to top FAB */
.back-to-top-fab {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(0, 194, 199, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-deep);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-fab:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
}

.back-to-top-fab:active {
  transform: scale(0.95);
}

.back-to-top-fab.is-visible:active {
  transform: scale(0.95);
}

/* Responsive */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .referral-inner {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) - 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 0.75rem 1rem;
  }

  .site-nav .btn {
    width: 100%;
    justify-content: center;
  }

  .sport-switcher {
    width: 100%;
  }

  .sport-switcher-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .sport-switcher-menu {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    box-shadow: none;
  }

  .sport-switcher.is-open .sport-switcher-menu:not([hidden]) {
    display: block;
  }

  .price-card--featured {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .feature-group,
  .ai-card {
    transition: none;
  }

  .mock-ai-dot {
    animation: none;
  }

  .back-to-top-fab {
    transition: none;
  }
}
