/* ============================================
   AI ScoreCast PRO — Marketing Site
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #050a1a;
  color: #f1f3f9;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
svg { display: block; }

:root {
  --bg: #050a1a;
  --bg-2: #08112a;
  --surface: #0c1731;
  --surface-2: #131f42;
  --surface-3: #1a2856;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.14);

  --text: #f1f3f9;
  --text-dim: #c4cae0;
  --muted: #8b95b8;
  --muted-2: #5f6a8f;

  --gold: #fbbf24;
  --gold-2: #f59e0b;
  --gold-deep: #b45309;
  --blue: #3b6fff;
  --blue-2: #2d4cdb;
  --blue-soft: rgba(59,111,255,0.12);
  --green: #10b981;
  --green-bright: #00ffa3;
  --red: #ef4444;
  --magenta: #ec4899;

  --display: 'Sora', 'Space Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --radius: 20px;
  --radius-lg: 28px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
h2 strong { font-weight: 700; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 140px 0; position: relative; }

/* ============================================
   AMBIENT BACKGROUND
   ============================================ */
.ambient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 50% at 50% -20%, rgba(59,111,255,0.22), transparent 60%),
    radial-gradient(ellipse 50% 30% at 90% 30%, rgba(251,191,36,0.10), transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 70%, rgba(236,72,153,0.08), transparent 60%),
    #050a1a;
}
.ambient::before {
  content: ''; 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: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.ambient::after {
  /* subtle noise */
  content: ''; position: absolute; inset: 0; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   COMMON ATOMS
   ============================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold);
  padding: 7px 14px; border: 1px solid rgba(251,191,36,0.28);
  background: rgba(251,191,36,0.06); border-radius: 999px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.5); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1605;
  box-shadow: 0 8px 24px rgba(251,191,36,0.28), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(251,191,36,0.40), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.04); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(59,111,255,0.30);
}

/* ============================================
   LOGO
   ============================================ */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: #fff;
  font-style: italic;
}
.pro-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 8px 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #2a1605;
  font-family: var(--display);
  font-weight: 800; font-size: 10px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
  margin-left: 4px;
  position: relative;
  top: -1px;
}

/* ============================================
   ANNOUNCEMENT TICKER (TOP)
   ============================================ */
.announcer {
  position: relative; z-index: 51;
  background: linear-gradient(90deg,
    rgba(251,191,36,0.10) 0%,
    rgba(59,111,255,0.10) 50%,
    rgba(16,185,129,0.10) 100%
  );
  border-bottom: 1px solid rgba(251,191,36,0.15);
  overflow: hidden;
}
.announcer-track {
  display: flex; align-items: center; gap: 60px;
  padding: 11px 0;
  animation: ticker 50s linear infinite;
  white-space: nowrap;
}
.announcer-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--text-dim);
}
.announcer-item strong { color: var(--gold); font-weight: 600; }
.announcer-item .sep { color: var(--muted-2); }
.announcer-item svg { color: var(--gold); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(5,10,26,0.72);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.nav.menu-open {
  background: #050a1a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: var(--maxw); margin: 0 auto;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-dim); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }
.nav-mobile { display: none; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border: 1px solid var(--border-strong); border-radius: 10px;
  }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
  }
}
@media (max-width: 980px) {
  .nav-mobile {
    position: fixed; inset: 64px 0 0 0;
    background: #050a1a;
    border-top: 1px solid var(--border);
    padding: 32px 28px; z-index: 49;
    flex-direction: column; gap: 4px;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-size: 17px; padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--display); font-weight: 600;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center; position: relative;
}

/* WC banner inside hero */
.wc-promo {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 18px 10px 10px;
  background: linear-gradient(90deg, rgba(251,191,36,0.16), rgba(59,111,255,0.10));
  border: 1px solid rgba(251,191,36,0.30);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  position: relative; overflow: hidden;
}
.wc-promo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.18), transparent);
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.wc-promo .trophy-mini {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #2a1605;
}
.wc-promo .flag-row { display: inline-flex; gap: 4px; }
.wc-promo .mini-flag {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--bg);
  margin-left: -8px;
}
.wc-promo .mini-flag:first-child { margin-left: 0; }
.flag-us { background: linear-gradient(180deg, #3b6fff 50%, #fff 50%); }
.flag-ca { background: linear-gradient(180deg, #ef4444 33%, #fff 33%, #fff 66%, #ef4444 66%); }
.flag-mx { background: linear-gradient(90deg, #10b981 33%, #fff 33%, #fff 66%, #ef4444 66%); }

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 28px 0 28px;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%;
  animation: gold-shift 8s ease infinite;
}
@keyframes gold-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
  border-radius: 2px;
  transform-origin: left;
  animation: draw-line 1.2s 0.4s cubic-bezier(0.6, 0, 0.2, 1) both;
}
@keyframes draw-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero p.lead {
  font-size: 19px; color: var(--text-dim);
  max-width: 540px; margin-bottom: 36px;
  line-height: 1.55;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}

.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: 14px;
  background: #f8fafc; color: #050a1a;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,0.35); }
.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn .meta { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-btn .meta small { font-size: 10px; opacity: 0.65; font-weight: 500; letter-spacing: 0.04em; }
.store-btn .meta strong { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.store-btn.dark {
  background: #0c1731; color: #f1f3f9;
  border: 1px solid var(--border-strong);
}

/* Hero meta */
.hero-meta {
  display: flex; gap: 36px; flex-wrap: wrap; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-item .big {
  font-family: var(--display); font-weight: 700;
  font-size: 28px; color: var(--gold);
  letter-spacing: -0.03em;
}
.hero-meta-item .lbl {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em;
}
.hero-meta-item .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

/* ===== HERO RIGHT: stacked phones ===== */
.hero-right {
  position: relative;
  min-height: 700px;
  display: flex; justify-content: center; align-items: center;
}
.pitch-deco {
  position: absolute; width: 800px; height: 800px;
  border: 1.5px solid rgba(59,111,255,0.10);
  border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 0;
}
.pitch-deco::before, .pitch-deco::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(59,111,255,0.08);
}
.pitch-deco::before { inset: 120px; }
.pitch-deco::after { inset: 280px; border-color: rgba(251,191,36,0.10); }

.phone-stack {
  position: relative;
  width: 320px;
  height: 660px;
  z-index: 2;
}
.phone-img {
  position: absolute;
  width: 280px;
  border-radius: 38px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}
.phone-img.main {
  z-index: 3;
  top: 0; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
}
.phone-img.left {
  z-index: 2;
  top: 40px; left: -120px;
  transform: rotate(-12deg) scale(0.85);
  opacity: 0.85;
}
.phone-img.right {
  z-index: 2;
  top: 40px; right: -120px;
  transform: rotate(12deg) scale(0.85);
  opacity: 0.85;
}
.phone-img:hover { transform: translateX(-50%) rotate(0deg) scale(1.02); }

/* Floating callouts around phones */
.callout {
  position: absolute;
  background: rgba(12,23,49,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 14px 18px;
  z-index: 4;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}
.callout-1 { top: 60px; left: -80px; animation-delay: 0s; }
.callout-2 { bottom: 100px; right: -60px; animation-delay: 2s; }
.callout-3 { top: 280px; right: -90px; animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.callout .label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 4px;
}
.callout .val {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
}
.callout .val.gold { color: var(--gold); }
.callout .val.blue { color: var(--blue); }
.callout .val.green { color: var(--green-bright); }
.callout-small { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; text-align: left; }
  .hero-right { min-height: 600px; }
  .pitch-deco { width: 580px; height: 580px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 100px; }
  .phone-stack { width: 240px; height: 540px; }
  .phone-img { width: 220px; }
  .phone-img.left { left: -70px; }
  .phone-img.right { right: -70px; }
  .callout-1 { left: -30px; top: 30px; padding: 10px 14px; }
  .callout-1 .val { font-size: 18px; }
  .callout-2 { right: -10px; bottom: 60px; padding: 10px 14px; }
  .callout-2 .val { font-size: 18px; }
  .callout-3 { display: none; }
  .hero-meta { gap: 24px; }
}

/* ============================================
   STATS BAR
   ============================================ */
.statbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg,
    rgba(251,191,36,0.04),
    rgba(59,111,255,0.04),
    rgba(16,185,129,0.04));
  padding: 56px 0;
}
.statbar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute;
  left: 0; top: 25%; bottom: 25%; width: 1px;
  background: var(--border);
}
.stat .num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4vw, 58px);
  background: linear-gradient(180deg, #fff, #8b95b8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat .num .small { font-size: 0.6em; opacity: 0.7; }
.stat .lbl {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.18em; margin-top: 12px;
}
@media (max-width: 720px) {
  .statbar-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat:nth-child(odd)::before { display: none; }
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 72px; }
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin: 20px 0 20px;
  letter-spacing: -0.035em;
}
.section-head h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head h2 .blue-em {
  font-style: italic;
  background: linear-gradient(120deg, var(--blue), var(--green-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { color: var(--text-dim); font-size: 18px; max-width: 620px; margin: 0 auto; }

/* ============================================
   AI MODELS — INTERACTIVE
   ============================================ */
.ai-showcase {
  display: grid; grid-template-columns: 380px 1fr; gap: 32px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 8px; position: relative; overflow: hidden;
}
.ai-tabs {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 18px;
}
.ai-tab {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  grid-template-areas:
    "logo info badge"
    "neural neural neural";
  column-gap: 14px;
  row-gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.ai-tab:hover { background: rgba(255,255,255,0.03); }
.ai-tab.active {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-color: var(--border-strong);
}
.ai-tab.active::before {
  content: ''; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  background: var(--brand);
  border-radius: 0 3px 3px 0;
}

/* Featured (Scorecast PRO) tab */
.ai-tab.featured {
  background: linear-gradient(135deg, rgba(251,191,36,0.10), rgba(251,191,36,0.02));
  border: 1px solid rgba(251,191,36,0.30);
  padding: 18px 16px;
  box-shadow: 0 0 0 1px rgba(251,191,36,0.08), 0 8px 24px rgba(251,191,36,0.10);
}
.ai-tab.featured:hover { background: linear-gradient(135deg, rgba(251,191,36,0.14), rgba(251,191,36,0.04)); }
.ai-tab.featured.active {
  background: linear-gradient(135deg, rgba(251,191,36,0.16), rgba(251,191,36,0.04));
  border-color: rgba(251,191,36,0.50);
}
.ai-tab.featured::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(251,191,36,0.3), transparent 50%, rgba(251,191,36,0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.ai-tab.featured.active::after { opacity: 1; }

.ai-tab-logo {
  grid-area: logo;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  flex-shrink: 0;
}
.ai-tab.featured .ai-tab-logo {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: rgba(251,191,36,0.5);
  box-shadow: 0 4px 14px rgba(251,191,36,0.30);
}
.ai-tab.featured .ai-tab-logo svg path { stroke: #2a1605 !important; }

.ai-tab-info { grid-area: info; min-width: 0; }
.ai-tab-name {
  font-family: var(--display); font-weight: 700;
  font-size: 16px; letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.ai-tab.featured .ai-tab-name { font-size: 17px; }
.ai-tab-meta {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase;
}
.ai-tab.featured .ai-tab-meta { color: var(--gold); }
.ai-tab-badge {
  grid-area: badge;
  align-self: center;
}
.featured-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1605;
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 5px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.3);
}
.ai-tab-arrow {
  grid-area: badge;
  opacity: 0; transition: opacity 0.2s;
  color: var(--brand); flex-shrink: 0;
  align-self: center;
}
.ai-tab.active:not(.featured) .ai-tab-arrow { opacity: 1; }
.ai-tab.featured .ai-tab-arrow { display: none; }

/* Neural network strength bar */
.neural-row {
  grid-area: neural;
  display: flex; align-items: center; gap: 10px;
}
.neural-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.neural-bar .neural-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, color-mix(in oklab, var(--brand) 60%, transparent) 100%);
  box-shadow: 0 0 8px var(--brand);
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-tab.in-view .neural-bar .neural-fill { transform: scaleX(1); }
.ai-tab.featured .neural-bar .neural-fill {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(251,191,36,0.6);
  animation: shimmer-bar 3s linear infinite;
}
@keyframes shimmer-bar {
  to { background-position: -200% 0; }
}
.neural-bar .neural-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: neural-pulse 2.4s linear infinite;
}
@keyframes neural-pulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(150%); }
}
.neural-pct {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--brand);
  min-width: 32px; text-align: right;
  letter-spacing: -0.01em;
}
.ai-tab.featured .neural-pct { color: var(--gold); font-size: 12px; }
.neural-lbl {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  min-width: fit-content;
}

.ai-panel {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-radius: 22px;
  padding: 36px;
  overflow: hidden;
  min-height: 480px;
}
.ai-panel-glow {
  position: absolute; width: 360px; height: 360px;
  border-radius: 50%;
  top: -100px; right: -100px;
  background: var(--brand);
  filter: blur(120px);
  opacity: 0.15;
  z-index: 0;
}
.ai-panel-content { position: relative; z-index: 1; }
.ai-panel-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px; gap: 20px; flex-wrap: wrap;
}
.ai-panel-title h3 {
  font-size: 32px; margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.ai-panel-title .vendor {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase;
}
.ai-confidence-badge {
  display: inline-flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.ai-confidence-badge .pct {
  font-family: var(--display); font-weight: 800;
  font-size: 48px; color: var(--brand);
  line-height: 1; letter-spacing: -0.04em;
}
.ai-confidence-badge .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase;
}
.ai-panel p.analysis {
  font-size: 17px; line-height: 1.6;
  color: var(--text-dim); margin-bottom: 28px;
}
.ai-prediction-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 24px;
}
.ai-pred {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.ai-pred .pred-lbl {
  font-family: var(--mono); font-size: 9px;
  color: var(--muted); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 6px;
}
.ai-pred .pred-val {
  font-family: var(--display); font-weight: 700;
  font-size: 18px; color: #fff;
}
.ai-pred.highlight { background: var(--brand-bg); border-color: var(--brand-border); }
.ai-pred.highlight .pred-val { color: var(--brand); }

/* Brand themes per AI */
[data-ai="scorecast"] { --brand: #fbbf24; --brand-bg: rgba(251,191,36,0.10); --brand-border: rgba(251,191,36,0.30); }
[data-ai="chatgpt"]   { --brand: #10a37f; --brand-bg: rgba(16,163,127,0.10); --brand-border: rgba(16,163,127,0.30); }
[data-ai="claude"]    { --brand: #d97757; --brand-bg: rgba(217,119,87,0.10); --brand-border: rgba(217,119,87,0.30); }
[data-ai="gemini"]    { --brand: #3b6fff; --brand-bg: rgba(59,111,255,0.10); --brand-border: rgba(59,111,255,0.30); }
[data-ai="grok"]      { --brand: #f1f3f9; --brand-bg: rgba(241,243,249,0.08); --brand-border: rgba(241,243,249,0.20); }

@media (max-width: 980px) {
  .ai-showcase { grid-template-columns: 1fr; }
  .ai-tabs { flex-direction: row; overflow-x: auto; padding: 16px; scrollbar-width: none; }
  .ai-tabs::-webkit-scrollbar { display: none; }
  .ai-tab { flex-shrink: 0; min-width: 260px; }
  .ai-panel { padding: 28px 24px; }
  .ai-confidence-badge .pct { font-size: 38px; }
  .ai-panel-title h3 { font-size: 26px; }
  .ai-prediction-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   BENTO FEATURES
   ============================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.bento-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.bento-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.bento-card h3 {
  font-size: 22px; margin-bottom: 10px;
  letter-spacing: -0.022em;
}
.bento-card p { font-size: 14px; color: var(--muted); }
.bento-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(251,191,36,0.10); border: 1px solid rgba(251,191,36,0.25);
  margin-bottom: 18px;
}

/* Bento spans */
.b-1 { grid-column: span 4; grid-row: span 2; padding: 36px; }
.b-2 { grid-column: span 2; grid-row: span 1; }
.b-3 { grid-column: span 2; grid-row: span 1; }
.b-4 { grid-column: span 2; grid-row: span 1; }
.b-5 { grid-column: span 2; grid-row: span 1; }
.b-6 { grid-column: span 2; grid-row: span 1; }

/* Big bento card has special content */
.b-1 .big-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(80px, 12vw, 168px);
  background: linear-gradient(180deg, var(--gold), rgba(251,191,36,0.2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.06em; line-height: 0.9;
  margin-bottom: 12px;
}
.b-1 h3 { font-size: 28px; }
.b-1 p { font-size: 16px; max-width: 380px; }

/* Visual mini-chart in a card */
.mini-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 70px; margin-top: 16px;
}
.mini-chart .bar {
  flex: 1; border-radius: 3px;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  opacity: 0.9;
  animation: bar-grow 1s ease both;
  transform-origin: bottom;
}
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.confidence-meter {
  margin-top: 18px; height: 8px;
  background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden;
  position: relative;
}
.confidence-meter .fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  width: 87%;
  box-shadow: 0 0 12px rgba(16,185,129,0.5);
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-1 { grid-column: span 2; grid-row: span 1; }
  .b-2, .b-3, .b-4, .b-5, .b-6 { grid-column: span 1; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .b-1, .b-2, .b-3, .b-4, .b-5, .b-6 { grid-column: span 1; }
}

/* ============================================
   WC 2026 SECTION
   ============================================ */
.wc-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.wc-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(251,191,36,0.10), transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(59,111,255,0.10), transparent 55%);
  z-index: -1;
}
.wc-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.wc-left h2 {
  font-size: clamp(42px, 5.5vw, 72px);
  margin: 24px 0 24px;
}
.wc-left .stripe-title {
  display: inline-flex; flex-wrap: wrap; gap: 12px;
  align-items: baseline;
}
.wc-left h2 .gold-stripe {
  position: relative; display: inline-block; padding: 0 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1605;
  font-style: italic;
  border-radius: 8px;
}
.wc-left p { font-size: 18px; color: var(--text-dim); margin-bottom: 32px; max-width: 540px; }

.wc-numbers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 36px;
}
.wc-num-card {
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.wc-num-card .big {
  font-family: var(--display); font-weight: 800;
  font-size: 38px; letter-spacing: -0.04em; line-height: 1;
}
.wc-num-card.gold .big { color: var(--gold); }
.wc-num-card.blue .big { color: var(--blue); }
.wc-num-card.green .big { color: var(--green); }
.wc-num-card .l {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted); margin-top: 6px;
}

/* Countdown */
.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(59,111,255,0.06));
  border: 1px solid rgba(251,191,36,0.20);
}
.countdown-item { text-align: center; }
.countdown-item .num {
  font-family: var(--display); font-weight: 800;
  font-size: 44px; color: var(--gold);
  letter-spacing: -0.03em; line-height: 1;
}
.countdown-item .lbl {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted); margin-top: 8px;
}
.countdown-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--gold);
  text-transform: uppercase; text-align: center;
  margin-bottom: 18px;
}

.wc-right {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 600px;
}
.wc-phone {
  width: 320px;
  border-radius: 42px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  position: relative; z-index: 2;
}
.wc-orbit {
  position: absolute; inset: -40px;
  border: 1.5px dashed rgba(251,191,36,0.20);
  border-radius: 50%;
  animation: orbit 60s linear infinite;
}
.wc-orbit::before, .wc-orbit::after {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 24px var(--gold);
}
.wc-orbit::before { top: 0; left: 50%; transform: translateX(-50%); }
.wc-orbit::after { bottom: 0; left: 50%; transform: translateX(-50%); background: var(--blue); box-shadow: 0 0 24px var(--blue); }
@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .wc-inner { grid-template-columns: 1fr; gap: 60px; }
  .wc-right { min-height: 500px; }
  .wc-phone { width: 280px; }
}

/* ============================================
   SCREENSHOTS — TILT GALLERY
   ============================================ */
.shots-section {
  padding: 120px 0 140px;
  overflow: hidden;
  position: relative;
}

/* Edge fade masks */
.shots-section::before,
.shots-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 220px;
  z-index: 2;
  pointer-events: none;
}
.shots-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.shots-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.shots-track {
  display: flex;
  gap: 28px;
  padding: 60px 0 80px;
  animation: marquee 55s linear infinite;
  width: max-content;
}
.shots-section:hover .shots-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Phone mockup card */
.shot-card {
  flex-shrink: 0;
  width: 240px;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Alternating vertical offset */
.shot-card:nth-child(odd)  { transform: translateY(-24px); }
.shot-card:nth-child(even) { transform: translateY(24px); }

.shot-card:hover { transform: translateY(-38px) scale(1.05) !important; }

/* Phone frame */
.shot-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 46px;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 50%, rgba(251,191,36,0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Glow behind card */
.shot-card::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 40px;
  background: radial-gradient(ellipse at 50% 80%, rgba(59,111,255,0.30), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  transition: opacity 0.4s;
  opacity: 0.7;
}
.shot-card:hover::after { opacity: 1; }

.shot-card img {
  width: 100%;
  border-radius: 44px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.12) inset,
    0 40px 80px rgba(0,0,0,0.65),
    0 8px 20px rgba(0,0,0,0.40);
}

.shot-glow-blue::after  { background: radial-gradient(ellipse at 50% 80%, rgba(59,111,255,0.35), transparent 70%); }
.shot-glow-gold::after  { background: radial-gradient(ellipse at 50% 80%, rgba(251,191,36,0.28), transparent 70%); }
.shot-glow-green::after { background: radial-gradient(ellipse at 50% 80%, rgba(16,185,129,0.30), transparent 70%); }

.shot-glow-gold::before  { background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 50%, rgba(251,191,36,0.22) 100%); }
.shot-glow-green::before { background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 50%, rgba(16,185,129,0.18) 100%); }

/* ============================================
   LIVE MARQUEE (TEAMS/LEAGUES)
   ============================================ */
.live-marquee {
  padding: 36px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.live-marquee::before, .live-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.live-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.live-marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.live-marquee-track {
  display: flex; gap: 64px; align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.league {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 600;
  font-size: 18px; color: var(--muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.league .dot-sep { color: var(--gold); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  padding: 30px 28px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: 20px;
}
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: grid; place-items: center;
  color: #2a1605; font-weight: 700; font-size: 14px;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.review p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(251,191,36,0.30); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; text-align: left;
  padding: 22px 24px;
  font-family: var(--display); font-size: 17px; font-weight: 600;
}
.faq-q svg { transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-dim); font-size: 15px; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 24px 22px; }

/* ============================================
   FINAL CTA
   ============================================ */
.cta-final {
  margin: 40px 28px 100px;
  padding: 90px 60px;
  background:
    radial-gradient(circle at 20% 30%, rgba(251,191,36,0.16), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59,111,255,0.18), transparent 50%),
    linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  text-align: center; max-width: var(--maxw); margin-left: auto; margin-right: auto;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 0 1px, transparent 2px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.cta-final h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 22px; position: relative;
}
.cta-final p {
  color: var(--text-dim); font-size: 18px;
  max-width: 600px; margin: 0 auto 36px;
  position: relative;
}
.cta-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  background: rgba(5,10,26,0.6);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 18px; max-width: 320px; line-height: 1.6; }
.footer-social {
  display: flex; gap: 10px; margin-top: 24px;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--border); color: var(--muted);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer h4 { font-family: var(--display); font-size: 14px; margin-bottom: 20px; color: var(--gold); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--muted); font-size: 12px; font-family: var(--mono);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { padding: 80px 0 60px; }
.legal-page .container { max-width: 900px; }
.legal-page h1 {
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 14px;
  letter-spacing: -0.035em;
}
.legal-page .meta {
  font-family: var(--mono); font-size: 12px;
  color: var(--muted); margin-bottom: 48px;
  letter-spacing: 0.05em;
}
.legal-page h2 {
  font-size: 24px; margin-top: 44px; margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.legal-page p, .legal-page li {
  color: var(--text-dim); font-size: 15.5px; margin-bottom: 14px;
  line-height: 1.7;
}
.legal-page ul { padding-left: 22px; }
.legal-page a {
  color: var(--gold);
  border-bottom: 1px solid rgba(251,191,36,0.3);
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
