/* ═══════════════════════════════════════════════════════════
   COURTIQ — Premium Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; }

/* ── Design Tokens ────────────────────────────────────── */
:root {
  /* Palette */
  --black:   #020406;
  --bg:      #070A0F;
  --bg2:     #0B0F18;
  --surf:    #0F1521;
  --surf2:   #141B27;
  --border:  #1A2234;
  --bord2:   #22304A;

  /* Accent */
  --neon:    #7CFF6B;
  --neon-dim:rgba(124,255,107,0.10);
  --neon-glo:rgba(124,255,107,0.18);
  --blue:    #63B3FF;
  --gold:    #FFD700;

  /* Text */
  --text:    #EDF0F5;
  --muted:   #7A8799;
  --dim:     #3E4E62;

  /* Fonts */
  --font-head: 'Syne', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Radius */
  --r:  16px;
  --r2: 24px;

  /* Shadow */
  --shadow-card: 0 24px 64px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-glow: 0 0 40px rgba(124,255,107,0.12);
}

/* ── Base ─────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bord2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon); }

/* Grid texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(124,255,107,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,255,107,0.016) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ── WebGL Canvas ─────────────────────────────────────── */
#webgl-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  width: 100vw; height: 100vh;
}

/* ── Custom Cursor ────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; z-index: 9999; pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon), 0 0 24px rgba(124,255,107,0.4);
  transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(124,255,107,0.45);
  transition: transform 0.18s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.cursor-dot.hovering  { width: 14px; height: 14px; }
.cursor-ring.hovering { width: 56px; height: 56px; border-color: rgba(124,255,107,0.8); }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Layout ───────────────────────────────────────────── */
.w    { max-width: 1140px; margin: 0 auto; }
.sec  { padding: 110px 24px; position: relative; z-index: 1; }
.sec-alt {
  background: linear-gradient(180deg, var(--surf) 0%, rgba(15,21,33,0.6) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Typography ───────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--neon); text-transform: uppercase;
  text-align: center; margin-bottom: 14px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900; line-height: 1.06; letter-spacing: -1.5px;
  color: #fff; text-align: center; margin-bottom: 14px;
}

.sec-sub {
  font-size: 16px; color: var(--muted); text-align: center;
  max-width: 520px; margin: 0 auto 64px; line-height: 1.75;
}

/* Gradient headline text */
.grad-text {
  background: linear-gradient(135deg, #ffffff 20%, var(--neon) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass Card ───────────────────────────────────────── */
.glass-card {
  background: rgba(13,17,25,0.72);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: var(--r); font-family: var(--font-body);
  font-weight: 800; font-size: 15px; padding: 14px 28px;
  cursor: pointer; position: relative; overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.2s ease,
              opacity 0.15s ease;
}
.btn .btn-inner {
  position: relative; z-index: 1;
  transition: inherit;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--rx,50%) var(--ry,50%),
    rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.btn:active::before { opacity: 1; }

.btn-neon {
  background: var(--neon); color: #050709;
  box-shadow: 0 0 0 0 rgba(124,255,107,0);
}
.btn-neon:hover {
  box-shadow: 0 12px 40px rgba(124,255,107,0.35), 0 0 0 1px rgba(124,255,107,0.5);
  opacity: 0.95;
}

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--bord2);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); }

.btn-gold {
  background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
  color: #0C0900;
  box-shadow: 0 8px 24px rgba(255,215,0,0.2);
}
.btn-gold:hover { box-shadow: 0 12px 40px rgba(255,215,0,0.35); opacity: 0.95; }

.btn-lg  { font-size: 16px; padding: 16px 32px; border-radius: 18px; }
.btn-sm  { font-size: 13px; padding: 10px 20px; border-radius: 11px; }

/* Neon pulse */
@keyframes neon-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,255,107,0), 0 8px 24px rgba(124,255,107,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(124,255,107,0), 0 8px 32px rgba(124,255,107,0.3); }
}

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(7,10,15,0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(7,10,15,0.96);
  border-bottom-color: rgba(124,255,107,0.08);
}

.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-family: var(--font-head);
}
/* Full horizontal logo in nav — sized to match nav bar height */
.nav-logo { height: 26px; width: auto; filter: drop-shadow(0 0 8px rgba(124,255,107,0.25)); }

.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--neon); transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

/* Launch countdown tab */
.nav-launch-link {
  color: var(--neon) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  font-weight: 600 !important;
}
.nav-launch-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon), 0 0 12px rgba(124,255,107,0.4);
  position: relative;
  flex-shrink: 0;
}
.nav-launch-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--neon);
  opacity: 0;
  animation: navDotPulse 2s ease-out infinite;
}
@keyframes navDotPulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0;   }
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px; transition: all 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(7,10,15,0.98);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 11px 0; font-size: 16px; color: var(--muted);
  font-weight: 600; border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--neon); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 130px 80px 80px;
  overflow: hidden;
}

/* Hero radial glow */
.hero::before {
  content: '';
  position: absolute; top: -30%; left: -10%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(124,255,107,0.07) 0%, transparent 60%);
  pointer-events: none; animation: hero-breathe 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 2;
}
@keyframes hero-breathe {
  0%,100% { transform: scale(1) translate(0,0); opacity: 1; }
  50%      { transform: scale(1.1) translate(40px, 30px); opacity: 0.7; }
}

.hero-content { position: relative; z-index: 3; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--neon-dim);
  border: 1px solid rgba(124,255,107,0.22);
  border-radius: 99px; padding: 6px 16px 6px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--neon); text-transform: uppercase; margin-bottom: 28px;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--neon);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.6)} }

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; line-height: 1.01; letter-spacing: -3px;
  color: #fff; margin-bottom: 24px;
}
.hero-sport-word { color: var(--neon); }
.hero-cursor {
  display: inline-block; width: 4px; height: 0.82em;
  background: var(--neon); margin-left: 4px; vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
  display: block;
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 700; letter-spacing: -1px; color: var(--muted); margin-top: 8px;
}

.hero-desc {
  font-size: 17px; color: var(--muted); max-width: 480px;
  margin-bottom: 36px; line-height: 1.75;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
}

.hero-credit {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--dim);
}
.hero-credit img { height: 18px; width: auto; opacity: 0.6; }
.hero-credit strong { color: var(--muted); font-weight: 600; }

/* ── Phone Mockup ─────────────────────────────────────── */
.hero-phone-wrap {
  position: relative; z-index: 3;
  display: flex; justify-content: center;
  perspective: 1200px;
}

.phone-scene {
  position: relative; display: inline-block;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

/* Floating badges */
.fbadge {
  position: absolute; z-index: 4;
  background: rgba(13,18,28,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--bord2);
  border-radius: 12px; padding: 9px 15px;
  font-size: 12px; font-weight: 700; color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
  animation: badge-float 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes badge-float { from { opacity:0; transform:scale(0.8); } to { opacity:1; transform:scale(1); } }

.fbadge-live    { top: 60px;  right: -120px; border-color: rgba(124,255,107,.4); color: var(--neon); animation-delay: 1.1s; }
.fbadge-ai      { bottom: 130px; left: -120px; animation-delay: 1.4s; }
.fbadge-ciq     { bottom: 70px;  right: -100px; animation-delay: 1.7s; }
.fbd { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); animation: pulse-dot 1.4s ease-in-out infinite; }

/* Phone frame */
.phone {
  width: 290px;
  background: #0A0F1A;
  border: 1.5px solid #222D3E;
  border-radius: 52px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03),
    0 48px 100px rgba(0,0,0,.8),
    0 0 60px rgba(124,255,107,0.06),
    inset 0 1px 0 rgba(255,255,255,.05);
  animation: phone-float 5s ease-in-out infinite;
}
@keyframes phone-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Outer glow ring */
.phone-scene::after {
  content: '';
  position: absolute; inset: -50px;
  background: radial-gradient(ellipse, rgba(124,255,107,0.07) 0%, transparent 60%);
  border-radius: 80px; pointer-events: none;
  animation: phone-glow 4s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes phone-glow { from { opacity:.5; } to { opacity:1; } }

.phone-notch {
  width: 80px; height: 22px;
  background: #050709; border-radius: 0 0 14px 14px;
  margin: 8px auto 0;
}
.phone-body  { padding: 12px 18px 28px; }
.phone-bar   { display: flex; justify-content: space-between; font-size: 10px; color: var(--dim); margin-bottom: 16px; }
.phone-chip  { font-size: 9px; font-weight: 800; letter-spacing: 2px; color: var(--neon); text-transform: uppercase; margin-bottom: 6px; }
.phone-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 14px; }

.phone-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.phone-row:last-of-type { border-bottom: none; }

.p-pos { width: 18px; text-align: center; font-weight: 900; color: var(--dim); font-size: 11px; }
.p-pos.gold   { color: #F5C542; }
.p-pos.silver { color: #A0AEC0; }
.p-pos.bronze { color: #C87941; }
.p-name { flex: 1; color: var(--text); font-weight: 600; }
.p-pts  { font-weight: 800; color: var(--neon); transition: color 0.3s; }
.p-pts.flash { color: #63B3FF; }

.phone-divider { height: 1px; background: var(--border); margin: 10px 0; }
.phone-insight-label { font-size: 9px; color: #63B3FF; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.phone-insight { font-size: 10px; color: #A0B0C0; line-height: 1.5; min-height: 30px; transition: opacity 0.4s; }
.phone-insight.fading { opacity: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: var(--dim); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--neon));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(0.7); }
}

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar {
  position: relative; z-index: 1;
  background: var(--surf);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(124,255,107,.05) 0%, transparent 65%);
  pointer-events: none;
}
.stats-grid {
  max-width: 1140px; margin: 0 auto;
  padding: 40px 0;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.stat {
  text-align: center; padding: 0 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 900; color: var(--neon);
  letter-spacing: -2px; line-height: 1;
}
.stat-l { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   BRAND BAND
═══════════════════════════════════════════════════════ */
.brand-band {
  position: relative; z-index: 1;
  background: var(--surf); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.brand-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
}
.brand-logo {
  height: 90px; width: auto; flex-shrink: 0;
  filter: drop-shadow(0 0 32px rgba(124,255,107,0.35));
}
.brand-text h2 {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -.3px;
}
.brand-text p    { font-size: 15px; color: var(--muted); max-width: 580px; line-height: 1.75; margin-bottom: 8px; }
.brand-link      { font-size: 14px; color: var(--neon); font-weight: 600; transition: opacity .15s; }
.brand-link:hover { opacity: .8; }

/* ═══════════════════════════════════════════════════════
   PLAYTOMIC
═══════════════════════════════════════════════════════ */
.pt-showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; margin-bottom: 48px;
}
.pt-steps { display: flex; flex-direction: column; gap: 28px; }
.pt-step  { display: flex; gap: 18px; align-items: flex-start; }
.pt-num {
  font-size: 11px; font-weight: 900; letter-spacing: 1px;
  color: var(--neon); background: var(--neon-dim);
  border: 1px solid rgba(124,255,107,.25); border-radius: 8px;
  padding: 6px 10px; flex-shrink: 0; margin-top: 2px;
}
.pt-step h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.pt-step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.pt-card-stack { display: flex; flex-direction: column; }
.pt-booking {
  padding: 22px; position: relative; overflow: hidden; margin-bottom: 0;
}
.pt-booking::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124,255,107,.6), transparent);
}
.pt-booking-dim { opacity: 0.55; transform: scale(0.96) translateY(-4px); margin-top: -4px; }

.pt-booking-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pt-live-badge { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; color: var(--neon); display: flex; align-items: center; gap: 5px; }
.pt-time  { font-size: 11px; color: var(--muted); }
.pt-court { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.pt-players { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.pt-chip {
  background: var(--surf); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 11px; font-size: 12px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 5px;
}
.pt-level { font-size: 11px; font-weight: 800; color: var(--neon); }
.pt-match-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.tag-matched { font-size: 11px; font-weight: 700; border-radius: 7px; padding: 3px 9px; background: rgba(124,255,107,.1); color: var(--neon); border: 1px solid rgba(124,255,107,.25); }
.tag-guest   { font-size: 11px; font-weight: 700; border-radius: 7px; padding: 3px 9px; background: rgba(255,165,0,.08); color: #FFA500; border: 1px solid rgba(255,165,0,.2); }

.pt-badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.pt-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surf2); border: 1px solid var(--border);
  border-radius: 99px; padding: 8px 18px;
  font-size: 13px; color: var(--muted); font-weight: 600;
  transition: border-color .2s, color .2s;
}
.pt-badge:hover { border-color: var(--neon); color: var(--text); }

/* ═══════════════════════════════════════════════════════
   VIDEO
═══════════════════════════════════════════════════════ */
.video-main {
  width: 100%; max-width: 900px; margin: 0 auto 32px;
  overflow: hidden; cursor: pointer;
}
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0D1520 0%, #080C14 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  position: relative; overflow: hidden;
}
.video-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(124,255,107,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,255,107,.012) 1px, transparent 1px);
  background-size: 44px 44px;
}
.video-placeholder::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,255,107,.05) 0%, transparent 65%);
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--neon); color: #050709;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; position: relative; z-index: 1;
  box-shadow: 0 0 0 12px rgba(124,255,107,.1), 0 0 0 24px rgba(124,255,107,.05);
  transition: transform .2s, box-shadow .2s;
}
.video-main:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 0 16px rgba(124,255,107,.14), 0 0 0 32px rgba(124,255,107,.05);
}
.video-label { position: relative; z-index: 1; text-align: center; }
.video-label h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.video-label p  { font-size: 13px; color: var(--muted); }

.video-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.video-card { overflow: hidden; cursor: pointer; transition: transform .2s, border-color .2s; }
.video-card:hover { transform: translateY(-4px); border-color: rgba(124,255,107,.3); }
.vc-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0C1420 0%, #08101A 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.vc-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,255,107,.04) 0%, transparent 70%);
}
.play-sm {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(124,255,107,.12);
  border: 1.5px solid rgba(124,255,107,.4);
  color: var(--neon); display: flex; align-items: center; justify-content: center;
  font-size: 14px; position: relative; z-index: 1;
}
.vc-info { padding: 14px 16px; }
.vc-info h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vc-info p  { font-size: 12px; color: var(--muted); }

/* Native video players (self-hosted media/) */
.video-player {
  width: 100%; aspect-ratio: 16/9; display: block;
  background: #000; border-radius: inherit;
}
.video-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
.vc-video {
  width: 100%; aspect-ratio: 9/16; display: block;
  background: #000; object-fit: cover;
}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════════════════ */
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.feat-card {
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.25s, box-shadow 0.25s;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,255,107,.5), transparent);
  opacity: 0; transition: opacity .25s;
}
.feat-card:hover { transform: translateY(-6px); border-color: rgba(124,255,107,.3); box-shadow: 0 32px 72px rgba(0,0,0,.5), 0 0 0 1px rgba(124,255,107,.07), var(--shadow-glow); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  font-size: 28px; margin-bottom: 18px;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: var(--neon-dim); border: 1px solid rgba(124,255,107,.18);
  border-radius: 16px;
  transition: transform .2s;
}
.feat-card:hover .feat-icon { transform: scale(1.1); }
.feat-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Inline tags */
.tag-new  { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(99,179,255,.12); color: #63B3FF; border: 1px solid rgba(99,179,255,.3); border-radius: 4px; padding: 2px 7px; margin-left: 6px; vertical-align: middle; }
.tag-gold { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(255,215,0,.1);  color: #FFD700; border: 1px solid rgba(255,215,0,.3);  border-radius: 4px; padding: 2px 7px; margin-left: 6px; vertical-align: middle; }
.tag-neon { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(124,255,107,.1); color: var(--neon); border: 1px solid rgba(124,255,107,.3); border-radius: 4px; padding: 2px 7px; margin-left: 6px; vertical-align: middle; }
.tag-new-sm { font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; background: rgba(99,179,255,.12); color: #63B3FF; border: 1px solid rgba(99,179,255,.3); border-radius: 4px; padding: 2px 6px; margin-left: 4px; vertical-align: middle; }

/* ═══════════════════════════════════════════════════════
   CLUB ADMIN
═══════════════════════════════════════════════════════ */
.club-showcase {
  display: grid;
  grid-template-areas: "dash tv" "feats feats";
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.club-card {
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.club-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.club-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(124,255,107,.5), transparent); }

.club-tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; border-radius: 6px; padding: 4px 12px; margin-bottom: 14px; border-width: 1px; border-style: solid; }
.club-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.club-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.club-stats { display: flex; gap: 20px; }
.club-mini-stat { text-align: center; }
.csn { font-family: var(--font-head); font-size: 30px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.csl { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* TV mock */
.tv-mock { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 8px; }
.tv-bar  { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.tv-row  { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 13px; }
.tv-pos  { width: 20px; text-align: center; font-weight: 900; font-size: 12px; }
.tv-pos.gold   { color: #F5C542; } .tv-pos.silver { color: #A0AEC0; } .tv-pos.bronze { color: #C87941; }
.tv-name { flex: 1; font-weight: 700; color: var(--text); }
.tv-pts  { font-weight: 900; color: var(--neon); }

/* Club feature pills */
.club-feats {
  grid-area: feats;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.club-feat {
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.club-feat:hover { border-color: rgba(124,255,107,.2); transform: translateY(-3px); }
.cf-icon { font-size: 28px; flex-shrink: 0; }
.club-feat strong { font-size: 14px; color: #fff; display: block; margin-bottom: 6px; }
.club-feat p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   LEAGUES
═══════════════════════════════════════════════════════ */
.league-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.league-table {
  padding: 20px; position: relative; overflow: hidden; margin-bottom: 16px;
}
.league-table::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), transparent); }
.lt-header { margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.lt-title  { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: var(--neon); }
.lt-cols   { display: flex; gap: 8px; padding: 0 4px; margin-bottom: 4px; font-size: 10px; font-weight: 700; color: var(--dim); }
.lt-cols span:first-child { flex: 1; }
.lt-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 4px; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 13px; color: var(--muted); transition: background .15s;
}
.lt-row:hover { background: rgba(124,255,107,.03); }
.lt-row:last-child { border-bottom: none; }
.lt-pos { width: 22px; text-align: center; font-weight: 900; font-size: 12px; }
.lt-pos.gold { color: #F5C542; } .lt-pos.silver { color: #A0AEC0; } .lt-pos.bronze { color: #C87941; }
.lt-name { flex: 1; font-weight: 700; color: var(--text); }
.lt-pts  { font-weight: 900; color: var(--neon); min-width: 28px; text-align: right; }

.league-fixture { padding: 18px; }
.fx-label  { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: var(--neon); margin-bottom: 10px; }
.fx-row    { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fx-name   { font-size: 14px; font-weight: 800; color: #fff; flex: 1; }
.fx-vs     { font-size: 11px; font-weight: 900; color: var(--dim); background: var(--surf); border-radius: 6px; padding: 4px 8px; }
.fx-notify { font-size: 11px; color: var(--neon); margin-top: 10px; font-weight: 600; }

.league-feat {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px;
  margin-bottom: 12px; transition: border-color .2s, transform .2s;
}
.league-feat:hover { border-color: rgba(124,255,107,.2); transform: translateX(4px); }
.lf-icon { font-size: 26px; flex-shrink: 0; }
.league-feat h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.league-feat p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   AI + CIQ
═══════════════════════════════════════════════════════ */
.premium-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.premium-card { padding: 40px 36px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.premium-card:hover { transform: translateY(-6px); }

.pcard-ai  { background: linear-gradient(160deg, rgba(13,26,42,0.9) 0%, rgba(8,12,20,0.9) 100%) !important; border-color: rgba(59,130,246,.35) !important; box-shadow: 0 0 0 1px rgba(59,130,246,.08), 0 20px 64px rgba(0,0,0,.5) !important; }
.pcard-ai::before  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(99,179,255,.8), transparent); }
.pcard-ciq { background: linear-gradient(160deg, rgba(26,18,0,0.9) 0%, rgba(14,10,0,0.9) 100%) !important; border-color: rgba(255,215,0,.35) !important; box-shadow: 0 0 0 1px rgba(255,215,0,.08), 0 20px 64px rgba(0,0,0,.5) !important; }
.pcard-ciq::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,215,0,.8), transparent); }

.pc-icon { font-size: 44px; margin-bottom: 18px; }
.pc-tag  { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; border-radius: 6px; padding: 4px 12px; margin-bottom: 16px; border-width: 1px; border-style: solid; }
.premium-card h3 { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -.5px; margin-bottom: 14px; line-height: 1.1; }
.premium-card p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.pc-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #CBD5E0; }
.pc-bullets li span:first-child { flex-shrink: 0; margin-top: 1px; }
.pc-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 99px; border-width: 1px; border-style: solid; }

.ciq-demo { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.15); border-radius: 16px; padding: 16px 20px; margin-bottom: 24px; }
.ciq-badge { text-align: center; }
.ciq-num   { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: #FFD700; letter-spacing: -1px; line-height: 1; }
.ciq-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; color: rgba(255,215,0,.6); text-transform: uppercase; margin-top: 2px; }
.ciq-bar-wrap { flex: 1; }
.ciq-tier  { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ciq-bar   { height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.ciq-fill  { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #B8860B, #FFD700); width: 0%; transition: width 1.4s cubic-bezier(0.34,1.56,0.64,1); }

/* ═══════════════════════════════════════════════════════
   WATCH
═══════════════════════════════════════════════════════ */
.watch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.watch-card { padding: 28px; text-align: center; transition: border-color .2s, transform .2s; }
.watch-card:hover { border-color: rgba(124,255,107,.25); transform: translateY(-3px); }
.wc-icon { font-size: 36px; margin-bottom: 14px; }
.watch-card h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.watch-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 26px; left: calc(12.5% + 26px); right: calc(12.5% + 26px);
  height: 1px;
  background: linear-gradient(90deg, var(--neon), rgba(124,255,107,.2));
  pointer-events: none; z-index: 0;
}
.step-card { padding: 32px 24px; text-align: center; position: relative; z-index: 1; transition: border-color .2s, transform .2s; }
.step-card:hover { border-color: rgba(124,255,107,.2); transform: translateY(-4px); }
.step-n {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--neon) 0%, #48C83A 100%);
  color: #050709; font-family: var(--font-head); font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 28px rgba(124,255,107,.35);
}
.step-card h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   FORMATS
═══════════════════════════════════════════════════════ */
.fmt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.fmt-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.fmt-card:hover { border-color: rgba(124,255,107,.25); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.fmt-ico { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.fmt-card h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.fmt-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }

.plan-card { padding: 32px 28px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.plan-card:hover { transform: translateY(-5px); }

.plan-pro {
  border-color: rgba(124,255,107,.45) !important;
  background: linear-gradient(180deg, rgba(11,26,11,0.85) 0%, rgba(13,17,25,0.85) 100%) !important;
  box-shadow: 0 0 0 1px rgba(124,255,107,.08), 0 24px 64px rgba(0,0,0,.5) !important;
}
.plan-pro::before  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), transparent); }
.plan-ultimate {
  border-color: rgba(255,215,0,.4) !important;
  background: linear-gradient(180deg, rgba(26,20,0,0.85) 0%, rgba(13,17,25,0.85) 100%) !important;
  box-shadow: 0 0 0 1px rgba(255,215,0,.08), 0 24px 64px rgba(0,0,0,.5) !important;
}
.plan-ultimate::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #FFD700, transparent); }

.plan-badge { display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; border-radius: 6px; padding: 4px 10px; margin-bottom: 18px; }
.plan-badge-free     { background: rgba(255,255,255,.05); color: var(--muted); border: 1px solid var(--border); }
.plan-badge-pro      { background: rgba(124,255,107,.1);  color: var(--neon);  border: 1px solid rgba(124,255,107,.3); }
.plan-badge-ultimate { background: rgba(255,215,0,.1);    color: #FFD700;       border: 1px solid rgba(255,215,0,.3); }

.plan-name { font-family: var(--font-head); font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.plan-name-gold { color: #FFD700; }
.plan-price { font-family: var(--font-head); font-size: 44px; font-weight: 900; letter-spacing: -2px; color: #fff; line-height: 1; }
.plan-price sup { font-size: 20px; font-weight: 700; letter-spacing: 0; vertical-align: super; }
.plan-price-gold { color: #FFD700; }
.plan-period { font-size: 14px; color: var(--muted); margin-bottom: 26px; margin-top: 4px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan-divider-gold { background: rgba(255,215,0,.2); }
.plan-pro .plan-divider { background: rgba(124,255,107,.15); }

.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.tick { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.tick.g { color: var(--neon); }
.tick.y { color: #FFD700; }
.tick.d { color: var(--dim); }
.dim { color: var(--dim); }

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

/* Club CTA */
.club-cta {
  background: linear-gradient(135deg, rgba(10,26,10,0.85) 0%, rgba(13,17,25,0.85) 100%) !important;
  border-color: rgba(124,255,107,.3) !important;
}
.club-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), transparent); }
.club-cta { position: relative; overflow: hidden; padding: 36px; }
.club-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.club-cta-tag  { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--neon); text-transform: uppercase; margin-bottom: 10px; }
.club-cta h3   { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.club-cta p    { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* ═══════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════ */
.newsletter-band {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, #0A1A0A 0%, var(--bg) 55%);
  border-top: 1px solid rgba(124,255,107,.1);
  border-bottom: 1px solid rgba(124,255,107,.1);
  overflow: hidden; padding: 100px 24px;
}
.newsletter-band::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,255,107,.07) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.nl-logo { height: 36px; width: auto; margin: 0 auto 24px; filter: drop-shadow(0 0 16px rgba(124,255,107,.35)); }
.newsletter-inner h2 { font-family: var(--font-head); font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: 14px; }
.newsletter-inner p  { font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.75; }
.nl-form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto;
}
.nl-form input {
  flex: 1; background: var(--surf2); border: 1px solid var(--bord2);
  border-radius: 12px; padding: 14px 18px; font-size: 15px;
  color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s;
}
.nl-form input::placeholder { color: var(--dim); }
.nl-form input:focus { border-color: var(--neon); box-shadow: 0 0 0 3px rgba(124,255,107,.1); }
.nl-note { font-size: 12px; color: var(--dim); margin-top: 14px; }
.nl-note a { color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cd-icon {
  width: 42px; height: 42px; background: var(--neon-dim);
  border: 1px solid rgba(124,255,107,.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--text); font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.contact-detail > div { font-size: 14px; color: var(--muted); }
.contact-detail a { color: var(--neon); }

.contact-form { padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; background: var(--surf2); border: 1px solid var(--bord2);
  border-radius: 12px; padding: 12px 15px; font-size: 15px; color: var(--text);
  font-family: inherit; outline: none; resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--dim); }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--neon); box-shadow: 0 0 0 3px rgba(124,255,107,.1); }
.form-row textarea { min-height: 120px; }
.form-row select option { background: var(--surf2); }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
}
.f-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.f-brand-row img { filter: drop-shadow(0 0 10px rgba(124,255,107,0.3)); }
.f-brand p { font-size: 13px; color: var(--muted); max-width: 240px; line-height: 1.65; margin-bottom: 14px; }
.f-social { display: flex; gap: 10px; margin-top: 16px; }
.f-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surf); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted); transition: border-color .15s, color .15s;
  text-decoration: none;
}
.f-social a:hover { border-color: var(--neon); color: var(--neon); }
footer h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; color: var(--dim); text-transform: uppercase; margin-bottom: 18px; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 14px; color: var(--muted); transition: color .15s; }
footer ul li a:hover { color: var(--neon); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--dim); flex-wrap: wrap; gap: 8px;
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATION STATES
═══════════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transform: translateY(40px) scale(0.975);
  will-change: opacity, transform;
}
[data-anim="feat"] {
  transform: translateY(40px) scale(0.97);
}
[data-anim="fade-down"] {
  transform: translateY(-20px);
}
[data-anim].anim-done {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.75s cubic-bezier(0.16,1,0.3,1),
    transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; padding: 130px 40px 80px; text-align: center; }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-btns    { justify-content: center; }
  .hero-credit  { justify-content: center; }
  .fbadge-live  { right: -20px; }
  .fbadge-ai    { left: -20px; }
  .fbadge-ciq   { display: none; }
}

@media (max-width: 900px) {
  .sec { padding: 80px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .feat-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .fmt-grid   { grid-template-columns: 1fr 1fr; }
  .premium-showcase { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .brand-inner { flex-direction: column; text-align: center; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .video-grid  { grid-template-columns: 1fr; }
  .club-showcase { grid-template-areas: "dash" "tv" "feats"; grid-template-columns: 1fr; }
  .club-feats  { grid-template-columns: 1fr 1fr; }
  .league-showcase { grid-template-columns: 1fr; }
  .pt-showcase { grid-template-columns: 1fr; }
  .watch-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 20px 60px; }
  .phone { width: 250px; }
  .feat-grid  { grid-template-columns: 1fr; }
  .fmt-grid   { grid-template-columns: 1fr; }
  .watch-grid { grid-template-columns: 1fr; }
  .club-feats { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-2col  { grid-template-columns: 1fr; }
  .nl-form    { flex-direction: column; }
  .club-cta-inner { flex-direction: column; }
}
