/* ============================================================
   STATLINE — Landing
   Broadcast-feel scrollytelling. Dark-first, citron accent.
   ============================================================ */

@font-face {
  font-family: 'Bebas Neue Local';
  src: url('assets/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — lifted from the design system, not invented */
  --black: #0A0A0A;
  --card-dark: #1A1A1A;
  --card-elevated: #252525;
  --card-alt: #1F1F1F;
  --grey: #888888;
  --grey-light: #444444;
  --grey-result: #666666;
  --white: #FFFFFF;
  --citron: #E8FF00;
  --subtract: #E53935;
  --win: #4CAF50;

  /* Type stacks — Bebas Neue ships locally, Inter from Google Fonts */
  --font-display: 'Bebas Neue', 'Bebas Neue Local', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii — strict 3-tier from the system */
  --r-chip: 8px;
  --r-card: 12px;
  --r-cta: 16px;

  /* Motion */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Accent usage (tweakable) */
  --accent-density: 1;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--citron); color: var(--black); }

/* ---------- Type primitives ---------- */

.bebas { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; }
.up    { text-transform: uppercase; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--citron);
}

body.accent-restrained .eyebrow::before { background: var(--grey); }

/* ---------- Layout ---------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: padding 0.3s var(--ease-out);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav-wordmark img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--grey);
}

.nav-live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--subtract);
  animation: pulse 1.2s var(--ease-in-out) infinite;
}

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

.nav-links {
  display: none;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-transform: uppercase;
}

.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--white); }

@media (min-width: 880px) { .nav-links { display: flex; } }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--citron);
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  transition: transform 0.18s var(--spring), box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(232, 255, 0, 0.5);
}

.btn-cta.large {
  padding: 18px 30px;
  font-size: 17px;
  border-radius: var(--r-cta);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--grey-light);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--r-card);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover { border-color: var(--white); }

.apple-ico { width: 18px; height: 22px; }

/* ---------- HERO — broadcast scoreboard ---------- */

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 85%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,255,0,0.035) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(8px);
}

body.accent-restrained .hero-glow { opacity: 0.3; }

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1000px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 60px; }
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-eyebrow-row .eyebrow::before {
  background: var(--grey-light);
}

.hero-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-chip);
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.35);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #FF6B6B;
}

.hero-live-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--subtract);
  animation: pulse 1.2s var(--ease-in-out) infinite;
}

.hero h1 {
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 .citron { color: var(--citron); }

.hero-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--grey);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--grey);
}

/* Hero right — clean phone + broadcast banner */
.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}

.hero-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.hero-phone img {
  width: 72%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}

.hero-banner {
  background: var(--citron);
  color: var(--black);
  padding: 14px 28px;
  text-align: center;
  border-radius: 4px;
  font-family: var(--font-display);
  min-width: 300px;
}

body.motion-off .hero-live-chip .dot,
body.motion-off .nav-live .dot {
  animation: none !important;
}

.hero-banner .hb-title {
  font-size: 22px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.hero-banner .hb-sub {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(10,10,10,0.75);
  margin-top: 4px;
  font-weight: 500;
}

/* ---------- Ticker (scoreboard strip under hero) ---------- */

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--card-dark);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-item {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: rgba(255,255,255,0.55);
}

.ticker-item .n {
  color: var(--citron);
  font-size: 28px;
  line-height: 1;
}

.ticker-item .sep {
  color: var(--grey-light);
  font-size: 18px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

body.motion-off .ticker-track { animation: none; }

/* ---------- Acts — section chrome ---------- */

.act {
  padding: 120px 0;
  position: relative;
}

.act-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

@media (min-width: 900px) {
  .act-head { grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: end; }
}

.act-number {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--grey);
  display: flex;
  gap: 16px;
  align-items: center;
}

.act-number .slash { color: var(--citron); font-size: 22px; line-height: 1; }

.act-title {
  font-size: clamp(44px, 6.4vw, 88px);
  color: var(--white);
  line-height: 0.92;
}

.act-title .citron { color: var(--citron); }
.act-title .muted  { color: var(--grey-result); }

.act-lede {
  font-size: clamp(17px, 1.5vw, 19px);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 480px;
}

/* ---------- Act 1 — Sideline (founder / manifesto) ---------- */

.sideline {
  padding: 140px 0 120px;
  background: var(--black);
}

.sideline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .sideline-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
}

.quote-block {
  position: relative;
  padding: 0 0 0 32px;
  border-left: 2px solid var(--citron);
}

body.accent-restrained .quote-block { border-left-color: var(--grey-light); }

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 20px;
}

.quote-block p + p {
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--grey);
}

.quote-attr {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sideline-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--card-dark);
}

.sideline-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.sideline-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.4));
}

.photo-caption {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--white);
}

/* ---------- Act 2 — The Tap (interactive demo) ---------- */

.tap-act {
  padding: 140px 0;
  background: #070707;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.tap-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .tap-stage { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* Mocked phone live-mode widget */
.live-widget {
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 38px;
  padding: 24px 20px 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  position: relative;
}

.live-widget::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 5px;
  background: #000;
  border-radius: 3px;
}

.lw-head {
  text-align: center;
  margin: 14px 0 8px;
}

.lw-head .label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--grey);
}

.lw-head .title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-top: 4px;
}

.lw-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--subtract);
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.14em;
}

.lw-hero {
  text-align: center;
  padding: 32px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 14px;
}

.lw-hero .lbl {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--grey);
}

.lw-hero .big {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--citron);
  margin: 6px 0;
  font-variant-numeric: tabular-nums;
  transition: transform 0.15s var(--spring);
}

.lw-hero .big.punch { transform: scale(1.12); }

.lw-primary {
  display: block;
  width: 100%;
  padding: 16px;
  margin: 10px 0 14px;
  background: var(--citron);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  border-radius: var(--r-cta);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s ease;
}
.lw-primary:active { transform: scale(0.985); }

.lw-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.lw-primary.flash::after { opacity: 1; }

.lw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lw-stat {
  padding: 18px 12px;
  background: var(--card-dark);
  border-radius: var(--r-card);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s ease, background 0.2s ease;
  user-select: none;
}

.lw-stat:active { transform: scale(0.98); }

.lw-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.15s var(--spring), color 0.2s ease;
}

.lw-stat.punch .num { transform: scale(1.15); color: var(--citron); }

.lw-stat .lbl {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--grey);
  margin-top: 6px;
}

.lw-stat::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(232,255,0,0.15);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.lw-stat.flash::before { opacity: 1; }

.lw-undo {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border: 1px solid var(--grey-light);
  color: var(--grey);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  border-radius: var(--r-chip);
}
.lw-undo:hover { color: var(--white); border-color: var(--white); }

/* The tap call-out side */
.tap-side h3 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
}

.tap-side h3 .citron { color: var(--citron); }

.tap-side p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 440px;
}

.tap-instructions {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(232,255,0,0.08);
  border: 1px solid rgba(232,255,0,0.25);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--citron);
}

.tap-instructions .cursor {
  width: 14px; height: 14px;
  border: 1.5px solid var(--citron);
  border-radius: 50%;
  position: relative;
}
.tap-instructions .cursor::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--citron);
  animation: pulse 1.4s ease-in-out infinite;
  opacity: 0.6;
}

/* Bullet list for tap-side */
.tap-bullets {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  list-style: none;
}

.tap-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.tap-bullets li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--citron);
  margin-top: 8px;
}

/* ---------- Act 3 — Sports ticker rail ---------- */

.sports-act {
  padding: 140px 0;
  overflow: hidden;
}

.sport-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(260px, 1fr));
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 40px;
  margin: 0 -24px;
  scrollbar-width: none;
}

.sport-rail::-webkit-scrollbar { display: none; }

.sport-tile {
  scroll-snap-align: start;
  background: var(--card-dark);
  border-radius: var(--r-card);
  padding: 28px 24px 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sport-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(232,255,0,0.25);
  background: var(--card-elevated);
}

.sport-tile .sport-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-chip);
  background: rgba(232,255,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--citron);
  margin-bottom: 28px;
}

body.accent-restrained .sport-tile .sport-ico { background: rgba(255,255,255,0.05); color: var(--white); }

.sport-tile h3 {
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.sport-tile .abbrevs {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.5;
}

.sport-tile .abbrevs em {
  font-style: normal;
  color: var(--citron);
}

.sport-tile .count {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--grey-result);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sport-tile .count strong {
  color: var(--white);
  font-weight: 400;
}

.sport-rail-note {
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--grey-result);
}

.sport-rail-note::before,
.sport-rail-note::after {
  content: '←';
  margin: 0 10px;
  color: var(--grey-light);
}
.sport-rail-note::after { content: '→'; }

/* ---------- Act 4 — The Season (parallax profile + form guide) ---------- */

.season-act {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--black) 0%, #0D0D0D 100%);
  overflow: hidden;
}

.season-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 900px) {
  .season-stage { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.season-copy h2 {
  font-size: clamp(44px, 6vw, 88px);
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 24px;
}

.season-copy h2 .citron { color: var(--citron); }
.season-copy h2 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--citron);
}

.season-copy p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 20px;
}

/* Form guide row */
.form-guide {
  display: inline-flex;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--card-dark);
  border-radius: var(--r-card);
}

.form-guide .fg-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--grey);
  align-self: center;
  margin-right: 4px;
}

.fg-pill {
  width: 34px; height: 34px;
  border-radius: var(--r-chip);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s var(--spring);
}

.fg-pill.visible { opacity: 1; transform: translateY(0); }

.fg-pill.w { background: var(--win); }
.fg-pill.l { background: var(--subtract); }
.fg-pill.d { background: var(--grey-result); }

/* Season phone */
.season-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.season-phone img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
  will-change: transform;
}

/* Stat callouts floating near season phone */
.season-callout {
  position: absolute;
  background: var(--card-elevated);
  border: 1px solid rgba(232,255,0,0.18);
  border-radius: var(--r-card);
  padding: 14px 18px;
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.season-callout .v {
  font-size: 26px;
  color: var(--citron);
  line-height: 1;
}

.season-callout .k {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.14em;
}

.season-callout.c-a { top: 14%; right: -4%; }
.season-callout.c-b { bottom: 22%; left: -6%; }

/* ---------- Act 5 — The Share (full-bleed card) ---------- */

.share-act {
  padding: 140px 0 160px;
  background: #050505;
  overflow: hidden;
  position: relative;
}

.share-act::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(232,255,0,0.06), transparent 70%);
  pointer-events: none;
}

.share-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.share-head h2 {
  font-size: clamp(44px, 7vw, 96px);
  color: var(--white);
  margin-bottom: 16px;
}

.share-head h2 .citron { color: var(--citron); }

.share-head p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto;
}

/* The share card mock */
.share-card {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 28px 24px;
  background: var(--card-dark);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 50px 120px rgba(0,0,0,0.6);
  transform: perspective(1200px) rotateX(3deg);
  will-change: transform;
}

body.motion-off .share-card { transform: none; }

.share-card-brand {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
.share-card-brand img {
  height: 18px;
  width: auto;
  display: block;
}

.share-card-name {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}

.share-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.share-card-meta .w-pill {
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--win);
  color: var(--white);
}

.share-statline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

.share-stat {
  text-align: center;
}

.share-stat .n {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--citron);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.share-stat .l {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.16em;
  margin-top: 4px;
}

.share-slogan {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-align: center;
}

.share-satellites {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}

.share-pill {
  position: absolute;
  padding: 10px 14px;
  background: var(--card-elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-chip);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  will-change: transform;
}

.share-pill .g { color: var(--grey); }

/* ---------- Pricing (Pro-hero framing) ---------- */

.pricing-act {
  padding: 140px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: 1.7fr 1fr; align-items: stretch; }
}

.price-pro {
  position: relative;
  background: var(--card-dark);
  border: 1px solid rgba(232,255,0,0.25);
  border-radius: 24px;
  padding: 48px 44px;
  overflow: hidden;
}

.price-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(232,255,0,0.12), transparent 60%);
  pointer-events: none;
}

.price-pro-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.price-pro-head .tag {
  padding: 4px 10px;
  background: var(--citron);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  border-radius: 6px;
}

.price-pro-head .label {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--grey);
  letter-spacing: 0.14em;
}

.price-pro h3 {
  font-size: clamp(44px, 5vw, 72px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 14px;
  position: relative;
}

.price-pro .desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 30px;
  position: relative;
  line-height: 1.55;
}

.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  position: relative;
}

.price-big {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--citron);
}

.price-big span {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--grey);
  font-weight: 400;
  margin-left: 8px;
}

.price-alt {
  font-size: 14px;
  color: var(--grey);
}

.price-pro-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 32px;
  position: relative;
}

.price-pro-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.price-pro-list li::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(232,255,0,0.15);
  border: 1.5px solid var(--citron);
  flex-shrink: 0;
}

.price-pro-cta {
  position: relative;
  display: inline-flex;
}

.price-free {
  background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-free .eyebrow { margin-bottom: 10px; }

.price-free h3 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 10px;
}

.price-free .desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.price-free ul {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  gap: 8px;
}

.price-free li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  align-items: center;
}

.price-free li::before {
  content: '+';
  color: var(--grey);
  font-family: var(--font-display);
}

.price-free-cta {
  padding: 14px 20px;
  border: 1.5px solid var(--grey-light);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-card);
  text-align: center;
  transition: border-color 0.2s ease;
}

.price-free-cta:hover { border-color: var(--white); }

/* ---------- FAQ ---------- */

.faq-act {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 900px) {
  .faq-grid { grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
}

.faq-head h2 { font-size: clamp(40px, 5vw, 64px); color: var(--white); line-height: 0.95; }
.faq-head p { margin-top: 16px; font-size: 16px; color: var(--grey); line-height: 1.6; max-width: 320px; }

.faq-list { display: grid; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  color: var(--white);
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--citron); }

.faq-plus {
  width: 26px; height: 26px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: var(--grey);
  top: 50%; left: 50%;
  transition: background 0.2s ease;
}
.faq-plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-plus::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }

.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-item.open .faq-plus::before,
.faq-item.open .faq-plus::after { background: var(--citron); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- Final CTA ---------- */

.final-act {
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-act::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,255,0,0.06), transparent 70%);
  pointer-events: none;
}

.final-act h2 {
  position: relative;
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 18px;
}

.final-act h2 .citron { color: var(--citron); }
.final-act h2 .outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--citron);
}

.final-act p {
  position: relative;
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

/* ---------- Footer ---------- */

.footer {
  padding: 40px 0 100px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--grey);
  font-size: 13px;
}

.footer-inner a:hover { color: var(--citron); }

/* ---------- Mobile sticky download bar ---------- */

.mobile-dock {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transform: translateY(120%);
  transition: transform 0.35s var(--spring);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.mobile-dock.visible { transform: translateY(0); }

.mobile-dock .pill {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--citron);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  flex-shrink: 0;
}

.mobile-dock .lbl {
  flex: 1;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.mobile-dock .lbl small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--grey);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

.mobile-dock .go {
  padding: 10px 16px;
  background: var(--citron);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  border-radius: 10px;
  white-space: nowrap;
}

@media (min-width: 900px) { .mobile-dock { display: none; } }

/* ---------- Reveal primitives ---------- */

/* Reveal-ready: JS attaches when safe; fallback shows content if JS never runs. */
html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

html.reveal-ready [data-reveal="lift-lg"] { transform: translateY(50px); }
html.reveal-ready [data-reveal="fade"] { transform: none; }

html.reveal-ready [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

body.motion-off [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- Tweaks panel ---------- */

.tweaks-panel {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 200;
  width: 300px;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  font-family: var(--font-body);
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.tweaks-panel.visible { opacity: 1; transform: translateY(0); }

.tweaks-panel h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tweaks-panel h4::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--citron);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  margin-right: 8px;
}

.tweak-row { margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }

.tweak-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.tweak-opts { display: flex; gap: 6px; flex-wrap: wrap; }

.tweak-opt {
  padding: 6px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.tweak-opt:hover { border-color: var(--grey); }
.tweak-opt.active {
  background: var(--citron);
  color: var(--black);
  border-color: var(--citron);
}

/* ---------- Responsive tightening ---------- */

@media (max-width: 900px) {
  .act, .sideline, .tap-act, .sports-act, .season-act, .share-act, .pricing-act, .faq-act, .final-act {
    padding: 80px 0;
  }
  .price-pro { padding: 36px 28px; }
  .price-pro-list { grid-template-columns: 1fr; }
  .season-callout.c-a { right: -2%; top: 6%; }
  .season-callout.c-b { left: -2%; bottom: 12%; }
  .final-act { padding: 100px 0 80px; }
}

/* ---------- Credibility bar ---------- */
.cred-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.cred-bar .sep { color: var(--citron); opacity: 0.6; }

/* ---------- Testimonial ---------- */
.testimonial-act {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.testimonial-block p {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-block cite {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  font-style: normal;
}

/* ---------- Final trust line ---------- */
.final-trust {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
