/* =============================================
   BTA SPORTS — Production CSS
   Dark navy field · Electric blue · #ECFF43 edge accent
   Base #050d1e · Accent #419cd4 · Edge #ecff43
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
svg { display: block; flex-shrink: 0; }
h1, h2, h3, h4, .hero-h1, .cta-h2 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }

:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 200;
  background: var(--accent); color: #04204f; font-weight: 700;
  padding: 10px 16px; border-radius: 8px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* --- VARIABLES --- */
:root {
  --bg:        #050d1e;       /* deep dark navy */
  --bg-deep:   #030a16;
  --bg-deeper: #020710;
  --accent:        #419cd4;   /* BTA logo blue */
  --accent-light:  #6fc3f0;
  --accent-bright: #58b6ec;
  --yellow:        #ecff43;   /* edge · insight · action · confidence */
  --yellow-glow:   rgba(236,255,67,0.22);
  --yellow-border: rgba(236,255,67,0.28);
  --green:  #34d399;
  --red:    #f0556a;
  --text:   #ffffff;
  --muted:  rgba(226,236,255,0.66);
  --faint:  rgba(226,236,255,0.42);
  --glass:        rgba(255,255,255,0.055);
  --glass-strong: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.10);
  --radius:    20px;
  --radius-sm: 12px;
  --shadow:    0 28px 70px rgba(2,8,30,0.65);
  --max-w:     1200px;
  --pad:       clamp(20px, 5vw, 80px);
  --sec:       clamp(64px, 8vw, 92px);
}

/* --- HELPERS --- */
.green { color: var(--green); }
.muted { color: var(--muted); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* =============================================
   AURORA BACKGROUND + WARP (bending space-time)
   ============================================= */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; background: var(--bg);
  /* isolate into its own compositor layer so the animated grid never re-rasterizes against the blurred blobs (kills flicker) */
  transform: translateZ(0); isolation: isolate; contain: layout paint size; }
.aurora::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(2,8,24,0) 35%, rgba(2,6,16,0.65) 100%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.6; }
.blob-1 { width: 720px; height: 720px; background: radial-gradient(circle, #2b6fe0 0%, transparent 70%); top: -220px; left: -120px; animation: b1 19s ease-in-out infinite; }
.blob-2 { width: 620px; height: 620px; background: radial-gradient(circle, #419cd4 0%, transparent 70%); top: 28%; right: -160px; animation: b2 23s ease-in-out infinite; }
.blob-3 { width: 540px; height: 540px; background: radial-gradient(circle, #1746b8 0%, transparent 70%); bottom: -140px; left: 28%; animation: b3 17s ease-in-out infinite; }
.blob-4 { width: 460px; height: 460px; background: radial-gradient(circle, #2853c9 0%, transparent 70%); top: 58%; left: 6%; animation: b4 21s ease-in-out infinite; }
@keyframes b1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(120px,80px) scale(1.1); } 66% { transform: translate(-60px,120px) scale(0.9); } }
@keyframes b2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-100px,60px) scale(0.9); } 66% { transform: translate(80px,-80px) scale(1.15); } }
@keyframes b3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-120px,-60px) scale(1.1); } }
@keyframes b4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(80px,-100px); } }

/* Perspective "gravity grid" — two planes receding from the top and bottom edges
   (ceiling + floor), both drifting with the cursor. Kept low-opacity = depth, not decor. */
.warp {
  position: absolute; inset: 0; perspective: 540px; perspective-origin: 50% 50%;
  opacity: 0.62;
}
.warp-grid {
  position: absolute; left: -50%; right: -50%; height: 88%;
  background-image:
    linear-gradient(rgba(111,195,240,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,195,240,0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridflow 8s linear infinite;
  transition: transform 0.28s ease-out;
  /* keep each plane on its own GPU layer — stops the grid lines from flickering as they scroll */
  will-change: transform;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  transform-style: flat;
}
/* floor: anchored to the bottom edge, tilts away going up; fades toward center */
.warp-bottom {
  bottom: 0; transform-origin: 50% 100%;
  transform: rotateX(74deg) translateY(var(--warp-y, 0)) translateX(var(--warp-x, 0));
  -webkit-mask-image: linear-gradient(to top, #000 2%, transparent 72%);
          mask-image: linear-gradient(to top, #000 2%, transparent 72%);
}
/* ceiling: anchored to the top edge, mirrored; fades toward center */
.warp-top {
  top: 0; transform-origin: 50% 0;
  transform: rotateX(-74deg) translateY(calc(var(--warp-y, 0) * -1)) translateX(var(--warp-x, 0));
  -webkit-mask-image: linear-gradient(to bottom, #000 2%, transparent 72%);
          mask-image: linear-gradient(to bottom, #000 2%, transparent 72%);
}
@keyframes gridflow { from { background-position: 0 0; } to { background-position: 0 64px; } }

/* =============================================
   BUTTONS / CTAs
   ============================================= */
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: #04122f; font-weight: 800; font-size: 13px;
  padding: 10px 20px; border-radius: 100px;
  box-shadow: 0 0 20px rgba(236,255,67,0.3);
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
}
.btn-primary-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(236,255,67,0.5); }

/* Primary download button — strong, glowing, with a sweeping shine */
.btn-download {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #04204f; font-weight: 800; font-size: 16px; letter-spacing: -0.01em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 16px 28px; border-radius: 14px;
  box-shadow: 0 14px 38px rgba(65,156,212,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.16s ease, box-shadow 0.22s ease;
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(65,156,212,0.6), inset 0 1px 0 rgba(255,255,255,0.45); }
.btn-download .bd-glow {
  position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { left: -120%; } 80%, 100% { left: 160%; } }
.btn-download--lg { font-size: 18px; padding: 19px 36px; }
.btn-download--sm { font-size: 13px; padding: 11px 18px; border-radius: 11px; box-shadow: 0 8px 24px rgba(65,156,212,0.4); }

/* App Store / Play badges */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: #ffffff; color: #04122f;
  padding: 10px 18px 10px 16px; border-radius: 13px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px rgba(2,8,30,0.4);
  transition: transform 0.15s, box-shadow 0.2s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(65,156,212,0.4); }
.store-glyph { color: #04122f; }
.store-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-txt small { font-size: 10px; font-weight: 500; letter-spacing: 0.02em; opacity: 0.8; }
.store-txt strong { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; font-family: 'Plus Jakarta Sans', sans-serif; }

/* =============================================
   SECTION SHELL
   ============================================= */
.label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(236,255,67,0.35);
}
.section-intro { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-intro h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.section-intro h2 em { font-style: normal; background: linear-gradient(120deg, var(--accent), var(--accent-light) 60%, #a9e0fb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-body { font-size: 18px; color: var(--muted); line-height: 1.7; margin-top: 18px; }

/* Placeholder markers */
.ph-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #ffd27a;
  background: rgba(255,193,84,0.12); border: 1px solid rgba(255,193,84,0.3);
  padding: 2px 8px; border-radius: 100px; margin-top: 8px;
}
.placeholder-n { color: var(--faint) !important; -webkit-text-fill-color: var(--faint) !important; background: none !important; }
.pat-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--yellow); background: rgba(236,255,67,0.08);
  border: 1px solid rgba(236,255,67,0.25); padding: 3px 9px; border-radius: 100px;
  vertical-align: middle; margin-left: 8px; white-space: nowrap;
}

/* --- SCROLL REVEAL (subtle 3D rise = depth) --- */
.reveal { opacity: 0; transform: translateY(30px) scale(0.985); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="80"]  { transition-delay: 80ms; }
.reveal[data-delay="120"] { transition-delay: 120ms; }
.reveal[data-delay="160"] { transition-delay: 160ms; }
.reveal[data-delay="240"] { transition-delay: 240ms; }

/* --- 3D TILT (JS-driven, "expensive" parallax hover) --- */
.tilt { transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease, border-color 0.25s ease; transform-style: preserve-3d; will-change: transform; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--pad);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(3,8,22,0.88);
  border-color: var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; height: 78px; gap: 36px; }
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
/* Bigger ring mark so the "BTA" letters read at roughly the same size as the "SPORTS" wordmark */
.nav-mark { height: 66px; width: auto; object-fit: contain; }
.nav-word-img { height: 19px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 78px; }
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 24px var(--pad) 56px;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; width: 100%;
}
.hero-text { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(236,255,67,0.08); border: 1px solid rgba(236,255,67,0.3);
  color: var(--yellow); font-size: 13px; font-weight: 600;
  padding: 6px 15px; border-radius: 100px; margin-bottom: 24px;
}
.badge-pulse { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(236,255,67,0.7); } 50% { box-shadow: 0 0 0 7px rgba(236,255,67,0); } }

.hero-h1 { font-size: clamp(40px, 5vw, 70px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-light) 52%, var(--yellow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: clamp(16px, 1.5vw, 18px); color: var(--muted); line-height: 1.7; max-width: 540px; margin-bottom: 28px; }
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-cta { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; align-items: flex-start; }

.hero-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-watch { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #fff; transition: color 0.2s; }
.hero-watch:hover { color: var(--accent-light); }
.watch-play {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(65,156,212,0.16); border: 1px solid rgba(65,156,212,0.4); color: var(--accent-light);
}
.hero-note { font-size: 12.5px; color: var(--faint); }

/* --- HERO VISUAL (big phone + parallax depth) --- */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; perspective: 1100px; }
.hero-stage { position: relative; width: 100%; display: flex; justify-content: center; transform-style: preserve-3d; transition: transform 0.18s ease-out; }
.hero-phone-wrap { position: relative; width: clamp(300px, 40vw, 480px); animation: float 7s ease-in-out infinite; }
.hero-phone { width: 100%; height: auto; filter: drop-shadow(0 44px 80px rgba(2,8,30,0.65)); position: relative; z-index: 2; }
.phone-glow {
  position: absolute; inset: 6% 8%; border-radius: 44px; z-index: 0;
  background: radial-gradient(60% 50% at 50% 38%, rgba(65,156,212,0.55), transparent 72%);
  filter: blur(40px);
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-0.5deg); } 50% { transform: translateY(-14px) rotate(0.5deg); } }

.float-card {
  position: absolute; border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 18px 44px rgba(2,8,30,0.5); width: 232px; z-index: 3;
}
.float-prob { top: 6%; left: -6%; animation: floatA 8s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fp-head { font-size: 11px; font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.fp-row { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.fp-row:last-child { margin-bottom: 0; }
.fp-row.dim .fp-team, .fp-row.dim .fp-pct { color: var(--faint); }
.fp-team { font-size: 11px; font-weight: 700; min-width: 42px; }
.fp-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.fp-fill { height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); transition: width 1.4s cubic-bezier(.4,0,.2,1); }
.fp-fill--mkt { background: rgba(255,255,255,0.28); }
.fp-pct { font-size: 12px; font-weight: 800; min-width: 46px; text-align: right; color: var(--yellow); }
.fp-row.dim .fp-pct { font-weight: 700; }

.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px; padding: 9px 15px; font-size: 13px; font-weight: 600; color: #fff;
  box-shadow: 0 14px 36px rgba(2,8,30,0.45); white-space: nowrap; z-index: 3;
}
.float-chip svg { color: var(--yellow); }
.float-chip-1 { top: 30%; right: 2%; left: auto; animation: floatB 8.5s ease-in-out infinite 1s; }
/* sits ~1/3 of the way up the phone on the left */
.float-chip-2 { bottom: 34%; left: -2%; animation: floatA 9s ease-in-out infinite 0.5s; }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* Scan-to-download QR (Rocket-Money style), floats over the phone */
.hero-qr {
  position: absolute; bottom: 2%; right: -4%; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  border-radius: 16px; padding: 12px 14px;
  box-shadow: 0 20px 48px rgba(2,8,30,0.5);
  animation: floatB 9.5s ease-in-out infinite 0.8s;
}
.hero-qr img { width: 124px; height: 124px; border-radius: 12px; background: #fff; padding: 7px; }
.hero-qr-txt { display: flex; flex-direction: column; line-height: 1.3; }
.hero-qr-txt strong { font-size: 15px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-qr-txt span { font-size: 12px; color: var(--muted); }

/* =============================================
   PARTNERS
   ============================================= */
.partners { padding: 44px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); overflow: hidden; }
.strip-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 28px; }

/* Continuous logo marquee — full-bleed, edge-faded, pauses on hover */
.partner-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.partner-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.partner-marquee:hover .partner-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.partner-chip {
  flex: 0 0 auto; margin-right: 24px;
  background: #fff; border-radius: 14px; padding: 18px 30px;
  display: flex; align-items: center; justify-content: center;
  height: 108px; width: 248px; box-shadow: 0 10px 28px rgba(2,8,30,0.32);
  transition: transform 0.25s, box-shadow 0.25s;
}
.partner-chip:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(65,156,212,0.32); }
.partner-chip img { max-height: 100%; width: auto; object-fit: contain; }
/* white-on-black source logos → invert to dark-on-white so the black box disappears into the chip */
.partner-chip--invert img { filter: invert(1) hue-rotate(180deg); }
@media (prefers-reduced-motion: reduce) { .partner-track { animation: none; } }

/* =============================================
   SCIENCE / PILLARS (+ animated icons, no emoji)
   ============================================= */
.science { padding: var(--sec) 0; }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pillar { border-radius: var(--radius); padding: 32px; }
.pillar:hover { border-color: rgba(65,156,212,0.4); }
.pillar-ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 18px; color: var(--accent-light);
  background: rgba(65,156,212,0.14); border: 1px solid rgba(65,156,212,0.28);
  overflow: hidden;
}
.pillar h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.pillar p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.pillar p strong { color: var(--accent-light); font-weight: 700; }

/* Animated icon: equalizer bars */
.ic-bars { display: flex; align-items: flex-end; gap: 4px; height: 26px; }
.ic-bars span { width: 5px; border-radius: 3px; background: currentColor; animation: bars 1.3s ease-in-out infinite; }
.ic-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.ic-bars span:nth-child(2) { height: 90%; animation-delay: 0.2s; }
.ic-bars span:nth-child(3) { height: 60%; animation-delay: 0.4s; }
.ic-bars span:nth-child(4) { height: 100%; animation-delay: 0.15s; }
@keyframes bars { 0%,100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }

/* Animated icon: radar sweep */
.ic-radar { position: relative; width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(111,195,240,0.4); }
.ic-radar::before { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: conic-gradient(from 0deg, rgba(111,195,240,0.55), transparent 70%); animation: spin 2.4s linear infinite; -webkit-mask: radial-gradient(circle, transparent 30%, #000 31%); mask: radial-gradient(circle, transparent 30%, #000 31%); }
.ic-radar::after { content: ''; position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); transform: translate(-50%,-50%); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Animated icon: orbiting satellite */
.ic-orbit { position: relative; width: 34px; height: 34px; }
.orb-core { position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-light); transform: translate(-50%,-50%); }
.orb-ring { position: absolute; inset: 2px; border-radius: 50%; border: 1.5px dashed rgba(111,195,240,0.4); }
.ic-orbit::before { content: ''; position: absolute; inset: 0; animation: spin 3s linear infinite; }
.orb-sat { position: absolute; top: -2px; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: currentColor; transform: translateX(-50%); transform-origin: 50% 19px; animation: spin 3s linear infinite; }

/* Animated icon: drawing sparkline */
.ic-spark { width: 38px; color: var(--accent-light); }
.ic-spark svg { width: 100%; height: auto; }
.ic-spark polyline { stroke-dasharray: 120; stroke-dashoffset: 120; animation: draw 2.6s ease-in-out infinite; }
@keyframes draw { 0% { stroke-dashoffset: 120; } 45%,70% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 0; } }

/* =============================================
   STATS
   ============================================= */
.trust { padding: var(--sec) 0; }
.trust-intro { text-align: center; margin-bottom: 44px; }
.trust-intro h2 { font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { border-radius: var(--radius); padding: 34px 26px; text-align: center; transition: transform 0.3s; position: relative; }
.stat:hover { transform: translateY(-5px); }
.stat-n {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(38px, 4vw, 52px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-l { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.stat-d { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* =============================================
   PRODUCT SHOWCASE (big phones)
   ============================================= */
.showcase { padding: var(--sec) 0; }
.showcase-tabs {
  display: flex; gap: 4px; margin-bottom: 40px; padding: 5px;
  border-radius: 14px; flex-wrap: wrap;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.stab-btn { flex: 1; min-width: 130px; font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 11px 16px; border-radius: 10px; transition: all 0.2s; text-align: center; position: relative; }
.stab-btn:hover { color: #fff; }
.stab-btn.active { background: rgba(65,156,212,0.14); color: #fff; box-shadow: none; }
.stab-btn.active::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; border-radius: 2px; background: var(--yellow); box-shadow: 0 0 8px rgba(236,255,67,0.6); }

.showcase-body { min-height: 480px; perspective: 1200px; }
.sc-pane[hidden] { display: none; }
.sc-pane { display: grid; grid-template-columns: 1fr 0.95fr; gap: 60px; align-items: center; animation: fadeInUp 0.45s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.sc-left h3 { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.sc-left p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.sc-left p em { color: #fff; font-style: italic; }
.sc-left p strong { color: var(--accent-light); }
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-list li { font-size: 15px; color: var(--muted); padding-left: 26px; position: relative; }
.feat-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--yellow); font-weight: 800; }
.sc-right { display: flex; justify-content: center; transform-style: preserve-3d; }
.sc-phone { position: relative; width: 100%; max-width: 440px; }
.sc-phone .phone-glow { inset: 8% 6%; }
.app-shot { width: 100%; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 40px 70px rgba(2,8,30,0.62)); }

/* =============================================
   DEMO VIDEO
   ============================================= */
.demo { padding: var(--sec) 0; }
.video-wrap {
  position: relative; max-width: 940px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--glass-border); box-shadow: var(--shadow);
  aspect-ratio: 16 / 9; background: #020912;
}
.demo-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center; color: #04204f;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 12px 40px rgba(65,156,212,0.5); transition: transform 0.2s, opacity 0.3s;
}
.video-play:hover { transform: scale(1.07); }
.video-wrap.playing .video-play { opacity: 0; pointer-events: none; }

/* =============================================
   RESPONSIBLE PLAY
   ============================================= */
.responsible { padding: var(--sec) 0; }
.resp-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.resp-intro h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.resp-intro h2 em { font-style: normal; background: linear-gradient(120deg, var(--accent), var(--accent-light) 60%, #a9e0fb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.resp-intro .section-body { margin-bottom: 24px; }
.resp-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--accent-light); }
.resp-link:hover { text-decoration: underline; }
.resp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.resp-card { border-radius: var(--radius); padding: 26px; }
.resp-card:hover { border-color: rgba(65,156,212,0.4); }
.resp-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.resp-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.resp-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; color: var(--accent-light); background: rgba(65,156,212,0.14); border: 1px solid rgba(65,156,212,0.28); }
/* animated heart pulse */
.ic-heart { width: 18px; height: 18px; background: currentColor; transform: rotate(-45deg); position: relative; animation: beat 1.6s ease-in-out infinite; }
.ic-heart::before, .ic-heart::after { content: ''; position: absolute; width: 18px; height: 18px; background: currentColor; border-radius: 50%; }
.ic-heart::before { top: -9px; left: 0; }
.ic-heart::after { top: 0; right: -9px; }
@keyframes beat { 0%,100% { transform: rotate(-45deg) scale(1); } 30% { transform: rotate(-45deg) scale(1.18); } }
/* animated shield */
.ic-shield-an { width: 22px; height: 26px; background: currentColor; -webkit-mask: no-repeat center/contain; mask: no-repeat center/contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.3 8 11 4.6-1.7 8-6 8-11V5l-8-3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.3 8 11 4.6-1.7 8-6 8-11V5l-8-3Z'/%3E%3C/svg%3E");
  animation: beat 2.2s ease-in-out infinite; }

/* =============================================
   PERFORMANCE / TRANSPARENCY
   ============================================= */
.performance { padding: var(--sec) 0; }
.perf-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 44px; flex-wrap: wrap; }
.perf-intro { max-width: 560px; }
.perf-intro h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
.perf-summary { display: flex; gap: 34px; flex-shrink: 0; border-radius: var(--radius); padding: 22px 30px; }
.ps-stat { text-align: center; }
.ps-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.ps-lbl { font-size: 13px; color: var(--muted); }

.pred-grid-outer { margin-bottom: 40px; }
.pred-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; font-size: 14px; font-weight: 600; color: var(--muted); }
.pred-head .ph-tag { margin-top: 0; }
.pred-grid { display: grid; grid-template-columns: repeat(20, 1fr); gap: 5px; margin-bottom: 16px; }
.pred-cell { aspect-ratio: 1; border-radius: 4px; opacity: 0; transform: scale(0.5); transition: opacity 0.3s ease, transform 0.3s ease; }
.pred-cell.visible { opacity: 1; transform: scale(1); }
.pred-cell.win { background: var(--green); }
.pred-cell.loss { background: var(--red); }
.pred-cell.pending { background: rgba(255,255,255,0.14); }
.pred-legend { display: flex; gap: 20px; }
.leg { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.leg::before { content: ''; display: block; width: 12px; height: 12px; border-radius: 3px; }
.leg.win::before { background: var(--green); }
.leg.loss::before { background: var(--red); }
.leg.pending::before { background: rgba(255,255,255,0.18); }

.acc-chart-wrap { border-radius: var(--radius); padding: 24px; }
.acc-chart-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 14px; font-weight: 600; flex-wrap: wrap; gap: 10px; }
.acc-chart-hdr .ph-tag { margin-top: 0; }
.acc-svg { width: 100%; height: auto; display: block; overflow: visible; }

/* =============================================
   REVIEWS + TRUST SIGNALS
   ============================================= */
.signals { padding: var(--sec) 0; }
.reviews { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 24px; align-items: stretch; margin-bottom: 40px; }
.rating-summary { border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(160deg, rgba(65,156,212,0.16), rgba(255,255,255,0.04)); border: 1px solid var(--glass-border); }
.rating-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 64px; font-weight: 800; line-height: 1; }
.rating-stars { color: #ffd27a; font-size: 22px; letter-spacing: 3px; margin: 8px 0 6px; }
.rating-lbl { font-size: 13px; color: var(--muted); }
/* all slides share one grid cell → carousel height = tallest review, fixed regardless of which shows */
.review-carousel { position: relative; border-radius: var(--radius); padding: 38px 40px 56px;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: grid; }
.review-slide { grid-area: 1 / 1; align-self: center; opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none; }
.review-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.review-slide p { font-size: clamp(17px, 1.7vw, 21px); font-weight: 500; line-height: 1.6; color: rgba(255,255,255,0.92); font-style: italic; }
.review-slide footer { font-size: 14px; font-weight: 700; color: var(--accent-light); margin-top: 16px; font-style: normal; }
.review-dots { position: absolute; bottom: 22px; left: 40px; display: flex; gap: 8px; }
.review-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: background 0.2s, transform 0.2s; }
.review-dots button.active { background: var(--yellow); transform: scale(1.2); box-shadow: 0 0 8px rgba(236,255,67,0.5); }

.signals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.signal { border-radius: var(--radius); padding: 28px; }
.signal:hover { border-color: rgba(65,156,212,0.4); }
.sig-ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 14px; color: var(--accent-light); background: rgba(65,156,212,0.14); border: 1px solid rgba(65,156,212,0.28); }
.signal h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.signal p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* =============================================
   PRICING
   ============================================= */
.pricing { padding: var(--sec) 0; }
.price-trial-badge {
  display: inline-block; margin-top: 22px; font-size: 13px; font-weight: 700;
  color: #fff; background: rgba(65,156,212,0.16); border: 1px solid rgba(65,156,212,0.38);
  padding: 9px 20px; border-radius: 100px;
}
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 390px)); gap: 24px; justify-content: center; align-items: stretch; }
.price-card { position: relative; overflow: hidden; border-radius: var(--radius); padding: 38px 34px; display: flex; flex-direction: column; }
.price-card--feature { border-color: rgba(236,255,67,0.35); box-shadow: 0 24px 60px rgba(236,255,67,0.1), 0 0 0 1px rgba(236,255,67,0.12); background: linear-gradient(165deg, rgba(65,156,212,0.12), rgba(255,255,255,0.04)); }
.pc-ribbon { position: absolute; top: 22px; right: -42px; transform: rotate(45deg); background: var(--yellow); color: #04122f; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 50px; box-shadow: 0 6px 18px rgba(236,255,67,0.35); }
.pc-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; text-shadow: 0 0 14px rgba(236,255,67,0.3); }
.pc-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 34px; font-weight: 800; letter-spacing: -0.01em; line-height: 1; margin-bottom: 18px; text-transform: uppercase; }
.pc-was { font-size: 20px; font-weight: 600; color: var(--faint); text-decoration: line-through; margin-bottom: 4px; }
.pc-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 58px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
.pc-cur { font-size: 30px; font-weight: 800; align-self: flex-start; margin-top: 8px; }
.pc-per { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--muted); margin-left: 6px; }
.pc-save { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 800; color: #04122f; background: var(--yellow); padding: 5px 14px; border-radius: 100px; box-shadow: 0 0 16px rgba(236,255,67,0.35); }
.pc-access { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-light); margin: 22px 0 18px; }
.pc-feats { display: flex; flex-direction: column; gap: 18px; margin-bottom: 22px; }
.pc-feats li { padding-left: 32px; position: relative; display: flex; flex-direction: column; gap: 3px; }
.pc-feats li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: rgba(65,156,212,0.22); color: var(--accent-light); font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.pc-feat-h { font-size: 16px; font-weight: 700; color: #fff; }
.pc-feat-d { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.pc-included { margin-top: auto; display: flex; align-items: flex-start; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-light); background: rgba(65,156,212,0.1); border: 1px solid rgba(65,156,212,0.22); border-radius: 12px; padding: 13px 16px; margin-bottom: 18px; line-height: 1.45; }
.pc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 4px; box-shadow: 0 0 10px rgba(52,211,153,0.7); }
.pc-cta { display: block; text-align: center; font-weight: 800; font-size: 15px; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; padding: 16px; border-radius: 14px; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border); transition: transform 0.15s, background 0.2s, box-shadow 0.2s; }
.pc-cta:hover { transform: translateY(-2px); background: rgba(255,255,255,0.14); }
.pc-cta--primary { color: #04204f; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-color: transparent; box-shadow: 0 12px 32px rgba(65,156,212,0.45); }
.pc-cta--primary:hover { box-shadow: 0 18px 44px rgba(65,156,212,0.6); }

/* =============================================
   FINAL CTA
   ============================================= */
.cta-final { padding: clamp(80px, 10vw, 120px) 0; text-align: center; position: relative; overflow: hidden; }
.cta-block { position: relative; z-index: 2; }
.cta-h2 { font-size: clamp(38px, 5vw, 62px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 20px; }
.cta-h2 em { font-style: normal; background: linear-gradient(120deg, var(--accent), var(--accent-light) 60%, #a9e0fb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 32px; line-height: 1.65; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(65,156,212,0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }

/* =============================================
   FOOTER
   ============================================= */
.footer { padding: 64px 0 32px; background: rgba(2,6,18,0.65); border-top: 1px solid var(--glass-border); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.1fr; gap: 50px; margin-bottom: 44px; }
.footer-logo { height: auto; width: 170px; margin-bottom: 16px; }
.footer-tag { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; max-width: 320px; }
.footer-brand .btn-download--sm { margin-bottom: 20px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); transition: color 0.2s, background 0.2s, transform 0.2s, border-color 0.2s; }
.socials a:hover { color: #fff; background: rgba(65,156,212,0.2); border-color: rgba(65,156,212,0.5); transform: translateY(-2px); }
.social--dim { opacity: 0.4; }
.footer-col h4 { font-size: 12px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-compliance { font-size: 12px; color: var(--faint); line-height: 1.7; padding: 22px 0; border-top: 1px solid var(--glass-border); }
.footer-bottom { padding-top: 18px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--faint); }
.footer-bottom strong { color: var(--muted); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { align-items: center; }
  .hero-meta { justify-content: center; }
  .hero-phone-wrap { width: clamp(280px, 60vw, 420px); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .signals-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-pane { grid-template-columns: 1fr; gap: 36px; }
  .sc-left { order: 1; text-align: center; }
  .sc-left .feat-list { display: inline-flex; text-align: left; }
  .sc-right { order: 0; }
  .resp-grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --pad: 22px; }
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(3,8,22,0.97); padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--glass-border); backdrop-filter: blur(18px);
  }
  .hero-qr { display: none; }                 /* you can't scan your own phone */
  .float-card { width: 200px; }
  .float-prob { left: -2%; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .resp-cards { grid-template-columns: 1fr 1fr; }
  .pred-grid { grid-template-columns: repeat(10, 1fr); }
  .perf-top { flex-direction: column; align-items: flex-start; }
  .perf-summary { width: 100%; justify-content: space-between; }
  .price-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .store-badges, .cta-badges { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .btn-download { width: 100%; justify-content: center; }
  .hero-meta { flex-direction: column; gap: 14px; }
  .stats-row { grid-template-columns: 1fr; }
  .signals-grid { grid-template-columns: 1fr; }
  .resp-cards { grid-template-columns: 1fr; }
  /* keep the floating bubbles on mobile, pulled inside the viewport so nothing clips */
  .float-prob { top: 3%; left: 0; }
  .float-chip-1 { top: 26%; left: auto; right: 2%; }
  .float-chip-2 { bottom: 32%; left: 2%; }
}

/* ============================================================
   INNER PAGES — shared styles for all non-homepage routes
   ============================================================ */

.nav--inner {
  background: rgba(3,8,22,0.92);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
body.inner-page { padding-top: 82px; }

.page-hero { padding: clamp(72px,11vw,120px) 0 clamp(40px,6vw,64px); text-align: center; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow);
  text-shadow: 0 0 18px rgba(236,255,67,0.35); margin-bottom: 16px;
}
/* stack the icon centered on top of the label (used on the hero eyebrows) */
.page-eyebrow--stack { flex-direction: column; gap: 10px; }
.page-eyebrow svg { color: var(--yellow); }
.page-hero h1 {
  font-size: clamp(34px,5.5vw,62px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.07; margin: 0 auto 22px; max-width: 820px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg,#fff 0%,var(--accent-light) 55%,var(--yellow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-sub {
  font-size: clamp(16px,2vw,18px); color: var(--muted);
  max-width: 620px; margin: 0 auto 32px; line-height: 1.72;
}
.page-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--yellow); background: rgba(236,255,67,0.08);
  border: 1px solid rgba(236,255,67,0.25); border-radius: 999px; padding: 5px 14px;
}
.page-ctas { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 4px; }
.btn-dl {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: #04122f; font-weight: 700; font-size: 15px;
  padding: 15px 30px; border-radius: var(--radius-sm); text-decoration: none;
  transition: transform 0.18s,box-shadow 0.18s; box-shadow: 0 0 28px rgba(236,255,67,0.28);
}
.btn-dl:hover { transform: translateY(-2px); box-shadow: 0 4px 36px rgba(236,255,67,0.38); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-strong); color: #fff; font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: var(--radius-sm); text-decoration: none;
  border: 1px solid var(--glass-border); transition: transform 0.18s,background 0.18s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover { transform: translateY(-2px); background: rgba(255,255,255,0.10); }

.inner-section { padding: clamp(56px,8vw,96px) 0; }
.inner-section--alt { background: rgba(255,255,255,0.018); }
.inner-intro { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.inner-intro h2 {
  font-size: clamp(28px,4vw,44px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px;
}
.inner-intro p { font-size: 16px; color: var(--muted); line-height: 1.7; margin: 0; }

.steps-list { display: flex; flex-direction: column; gap: 20px; max-width: 680px; margin: 0 auto; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--yellow-border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--yellow);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.step-body h3 { font-size: 16px; font-weight: 700; margin: 0 0 5px; }
.step-body p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.65; }

.value-props {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 14px;
}
.value-prop {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
.vp-icon { color: var(--yellow); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.vp-text h4 { font-size: 14px; font-weight: 700; margin: 0 0 3px; }
.vp-text p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 22px 24px;
}
.faq-q { font-size: 16px; font-weight: 700; margin: 0 0 9px; color: #fff; }
.faq-a { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.72; }

.tool-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.tool-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 28px 26px;
  transition: transform 0.22s,border-color 0.22s;
}
.tool-card:hover { transform: translateY(-3px); border-color: rgba(65,156,212,0.3); }
.tool-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.tool-card p { font-size: 14px; color: var(--muted); margin: 0 0 14px; line-height: 1.6; }
.tool-card ul { list-style: none; padding: 0; margin: 0; }
.tool-card li {
  font-size: 13px; color: var(--muted); padding: 6px 0;
  border-top: 1px solid var(--glass-border);
}
.tool-card li:first-child { border-top: none; }
.tool-card li::before { content: '→ '; color: var(--yellow); }

.inner-cta {
  padding: clamp(60px,9vw,100px) 0; text-align: center; position: relative;
}
.inner-cta h2 {
  font-size: clamp(28px,4.5vw,48px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px;
}
.inner-cta h2 em { font-style: normal; color: var(--accent-light); }
.inner-cta > .container > p {
  font-size: clamp(15px,1.8vw,17px); color: var(--muted);
  max-width: 560px; margin: 0 auto 34px; line-height: 1.7;
}
.pricing-note {
  max-width: 800px; margin: 28px auto 0;
  background: rgba(236,255,67,0.06); border: 1px solid rgba(236,255,67,0.18);
  border-radius: var(--radius-sm); padding: 14px 20px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
}
.pricing-note strong { color: var(--yellow); }
.risk-callout {
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: clamp(28px,4vw,48px); max-width: 800px; margin: 0 auto;
}
.risk-callout h3 { font-size: clamp(22px,3vw,30px); font-weight: 800; margin: 0 0 14px; }
.risk-callout p { font-size: 16px; color: var(--muted); line-height: 1.72; margin: 0 0 14px; }
.risk-callout p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .tool-grid { grid-template-columns: 1fr; }
  .value-props { grid-template-columns: 1fr; }
}

/* =============================================
   PREMIUM INNER — split hero, flow, tool journey
   ============================================= */

/* Split hero */
.page-hero--split { padding: clamp(80px,12vw,140px) 0 clamp(40px,6vw,64px); text-align: left; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,72px);
  align-items: center;
}
.hero-split-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.app-screen {
  position: relative;
  display: inline-block;
}
.app-screen img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(2,8,30,0.75);
  display: block;
}
.app-screen::before {
  content: '';
  position: absolute;
  bottom: -22%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(65,156,212,0.38), transparent 70%);
  filter: blur(44px);
  z-index: -1;
}

/* Platform availability pills */
.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 13px;
  border-radius: 999px;
}
.platform-pill--live {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.28);
  color: #34d399;
}
.platform-pill--soon {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--muted);
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.platform-pill--live .pill-dot {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,0.7);
}
.platform-pill--soon .pill-dot {
  background: var(--muted);
  opacity: 0.5;
}

/* Horizontal 4-step flow */
.flow-track {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  gap: 0;
}
.flow-track::before {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(236,255,67,0.5) 0%,
    rgba(65,156,212,0.35) 50%,
    rgba(236,255,67,0.5) 100%
  );
}
.flow-node {
  text-align: center;
  padding: 0 8px 24px;
  position: relative;
  z-index: 1;
}
.flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1.5px solid var(--yellow-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--yellow);
  margin: 0 auto 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.flow-node h4 { font-size: 13px; font-weight: 700; margin: 0 0 6px; line-height: 1.3; }
.flow-node p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Feature trio — 3 equal-height cards */
.feat-trio {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.feat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, transform 0.22s;
}
.feat-card:hover { border-color: rgba(65,156,212,0.3); transform: translateY(-2px); }
.feat-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(65,156,212,0.1);
  border: 1px solid rgba(65,156,212,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
}
.feat-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; flex: 1; }

/* Alternating tool journey sections */
.tool-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px);
  align-items: center;
  padding: clamp(48px,7vw,80px) 0;
  border-top: 1px solid var(--glass-border);
}
.tool-section:first-child { border-top: none; }
.tool-section--rev { direction: rtl; }
.tool-section--rev > * { direction: ltr; }
.tool-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.tool-section-text h3 {
  font-size: clamp(22px,3vw,34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.tool-section-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 20px;
}
.tool-section-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tool-section-text li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.tool-section-text li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 7px;
}
.tool-section-text li strong { color: #fff; font-weight: 700; }
.tool-section-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.screen-wrap {
  position: relative;
  display: inline-block;
  max-width: 410px;
  width: 100%;
}
.screen-wrap img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(2,8,30,0.65);
  display: block;
}
.screen-wrap::after {
  content: '';
  position: absolute;
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(65,156,212,0.3), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Risk Analyzer featured panel */
.risk-panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(28px,4vw,48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,56px);
  align-items: center;
}
.risk-panel-text h3 {
  font-size: clamp(22px,3vw,32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.risk-panel-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 14px;
}
.risk-panel-text p:last-of-type { margin-bottom: 0; }

/* Responsive — premium inner */
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-visual { display: none; }
  .tool-section { grid-template-columns: 1fr; direction: ltr !important; }
  .feat-trio { grid-template-columns: 1fr 1fr; }
  .flow-track::before { display: none; }
  .risk-panel { grid-template-columns: 1fr; }
  .risk-panel-visual { display: none; }
}
@media (max-width: 540px) {
  .feat-trio { grid-template-columns: 1fr; }
  .flow-track { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   PREMIUM INNER v2 — AI badges, card grids, panels
   (used by The App Playbook + Fantasy IQ deep-dive pages)
   ============================================= */

/* Techy "AI" badge that sits above a stacked hero eyebrow */
.hero-ai-badge {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  color: var(--accent-light); position: relative;
  background: radial-gradient(120% 120% at 30% 18%, rgba(65,156,212,0.32), rgba(65,156,212,0.06));
  border: 1px solid rgba(65,156,212,0.45);
  box-shadow: 0 0 0 6px rgba(65,156,212,0.05), 0 16px 38px rgba(65,156,212,0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-ai-badge svg { width: 30px; height: 30px; color: var(--accent-light); }
.hero-ai-badge::after {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  border: 1px solid rgba(111,195,240,0.55); opacity: 0;
  animation: aibadge 3.6s ease-in-out infinite;
}
@keyframes aibadge { 0%,100% { opacity: 0; transform: scale(1); } 50% { opacity: 0.65; transform: scale(1.13); } }

.hero-fineprint { font-size: 12.5px; color: var(--faint); margin-top: 18px; }

/* Responsive auto-fit card grid (uses .feat-card) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(256px, 1fr)); gap: 20px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .card-grid--4 { grid-template-columns: 1fr; } }

/* techy icon + eyebrow tag inside feature cards */
.feat-card-icon svg { width: 24px; height: 24px; }
.feat-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 9px; display: inline-flex; align-items: center; gap: 7px; }
.feat-card .pat-tag { margin-left: 8px; }
.feat-card .feat-link { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--accent-light); display: inline-flex; align-items: center; gap: 6px; }
.feat-card .feat-link:hover { text-decoration: underline; }

/* "Built into the BTA stack" link-out glass panel */
.stack-panel {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(65,156,212,0.13), rgba(255,255,255,0.03));
  border: 1px solid var(--glass-border);
  padding: clamp(28px,4vw,52px);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px,4vw,52px); align-items: center;
}
.stack-panel h3 { font-size: clamp(24px,3vw,34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 14px; }
.stack-panel > div > p { font-size: 16px; color: var(--muted); line-height: 1.72; margin: 0 0 24px; }
.stack-mini { display: grid; gap: 12px; }
.stack-mini-item { display: flex; align-items: center; gap: 14px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 15px 16px; transition: border-color .22s ease, transform .22s ease; }
.stack-mini-item:hover { border-color: rgba(65,156,212,0.42); transform: translateX(4px); }
.stack-mini-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; color: var(--accent-light); background: rgba(65,156,212,0.14); border: 1px solid rgba(65,156,212,0.28); }
.stack-mini-ic svg { width: 21px; height: 21px; }
.stack-mini-tx h4 { font-size: 15px; font-weight: 700; margin: 0 0 2px; }
.stack-mini-tx p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 860px) { .stack-panel { grid-template-columns: 1fr; } }

/* compact pricing teaser row */
.price-teaser { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 4px 0 28px; }
.price-teaser-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 20px 30px; min-width: 180px; text-align: center; }
.price-teaser-card--feat { background: rgba(236,255,67,0.05); border-color: var(--yellow-border); }
.price-teaser-amt { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.price-teaser-amt span { font-size: 13px; font-weight: 500; color: var(--muted); }
.price-teaser-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.price-teaser-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); margin-bottom: 6px; }

/* =================================================================
   PLAYBOOK + FANTASY IQ — 2026 REDESIGN
   Split heroes, bento, interactive optimizer, sticky flows.
   Built entirely on the existing blue / glass / yellow system.
   ================================================================= */

/* ---------- Shared split hero ---------- */
.split-hero { padding: clamp(96px,12vw,150px) 0 clamp(40px,6vw,72px); text-align: left; }
.split-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(36px,5vw,76px);
  align-items: center;
}
.split-grid--visualwide { grid-template-columns: 0.92fr 1.08fr; }
.split-copy { text-align: left; }
.split-copy h1 {
  font-size: clamp(40px,5.6vw,70px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.03; margin: 0 0 22px;
}
.split-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg,#fff 0%,var(--accent-light) 50%,var(--yellow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.split-copy .lead {
  font-size: clamp(16px,1.6vw,18px); color: var(--muted); line-height: 1.74;
  max-width: 540px; margin: 0 0 30px;
}
.split-copy .lead strong { color: #fff; font-weight: 600; }
.split-copy .page-ctas { justify-content: flex-start; }
.split-copy .platform-pills { justify-content: flex-start; }
.split-copy .hero-fineprint { text-align: left; }

/* Eyebrow rendered as a clean pill chip (replaces the big stacked node icon) */
.eyebrow-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(65,156,212,0.1); border: 1px solid rgba(65,156,212,0.3);
  padding: 8px 16px 8px 13px; border-radius: 999px; margin-bottom: 24px;
}
.eyebrow-chip .ec-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(236,255,67,0.7); animation: pulse 2s infinite; flex-shrink: 0;
}
.eyebrow-chip .ec-pat { color: var(--yellow); }

/* Hero visual stage with floating glass cards */
.split-visual { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.split-visual-inner { position: relative; width: 100%; max-width: 384px; }
.split-grid--visualwide .split-visual-inner { max-width: 560px; }
.split-visual .shot {
  width: 100%; height: auto; border-radius: 26px; display: block;
  filter: drop-shadow(0 40px 90px rgba(2,8,30,0.78));
  animation: float 7.5s ease-in-out infinite;
}
.split-grid--visualwide .split-visual .shot { border-radius: 0; }
.split-visual::before {
  content: ''; position: absolute; width: 76%; height: 58%; left: 50%; top: 44%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(65,156,212,0.5), transparent 70%);
  filter: blur(56px); z-index: -1;
}
.fhero-chip {
  position: absolute; z-index: 4;
  background: rgba(8,18,42,0.84); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 15px; padding: 12px 15px; box-shadow: 0 22px 46px rgba(2,8,30,0.55);
}
.fhero-chip-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--faint); margin-bottom: 7px; }
.fhero-chip-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.fhero-chip-val small { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 3px; }
.fhero-chip--proj { top: 8%; left: -10%; animation: floatA 8s ease-in-out infinite; }
.fhero-chip--proj .fhero-chip-val { color: var(--yellow); }
.fhero-chip--cap { bottom: 12%; right: -12%; width: 174px; animation: floatB 9s ease-in-out infinite 0.6s; }
.fhero-chip--lock {
  top: 40%; right: -8%; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px;
  font-size: 12.5px; font-weight: 700; color: #fff; animation: floatA 8.4s ease-in-out infinite 0.3s;
}
.fhero-chip--lock svg { width: 15px; height: 15px; color: var(--green); }
.fhero-mini-track { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.12); overflow: hidden; margin-top: 8px; }
.fhero-mini-fill { height: 100%; width: 84%; border-radius: 4px; background: linear-gradient(90deg,var(--accent),var(--accent-light)); }

/* ---------- Fantasy IQ — bento feature grid ---------- */
.fiq-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 18px;
}
.fiq-tile {
  position: relative; overflow: hidden;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.fiq-tile:hover { transform: translateY(-4px); border-color: rgba(65,156,212,0.42); box-shadow: 0 22px 50px rgba(2,8,30,0.4); }
.fiq-tile::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(65,156,212,0.12), transparent 60%);
  opacity: 0; transition: opacity 0.25s ease;
}
.fiq-tile:hover::after { opacity: 1; }
.fiq-tile--feature { grid-column: span 2; grid-row: span 2; }
.fiq-tile-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 12px; }
.fiq-tile-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; color: var(--accent-light); background: rgba(65,156,212,0.12); border: 1px solid rgba(65,156,212,0.24); }
.fiq-tile-ic svg { width: 23px; height: 23px; }
.fiq-tile h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.fiq-tile p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.fiq-tile .pat-tag { margin: 10px 0 0; }

/* mini sparkline bars inside a tile */
.fiq-spark { display: flex; align-items: flex-end; gap: 5px; height: 38px; margin-top: auto; padding-top: 14px; }
.fiq-spark span { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg,var(--accent-light),rgba(65,156,212,0.25)); animation: fiqbar 2.4s ease-in-out infinite; }
.fiq-spark span:nth-child(2){ animation-delay: .2s } .fiq-spark span:nth-child(3){ animation-delay: .4s }
.fiq-spark span:nth-child(4){ animation-delay: .15s } .fiq-spark span:nth-child(5){ animation-delay: .5s }
.fiq-spark span:nth-child(6){ animation-delay: .32s } .fiq-spark span:nth-child(7){ animation-delay: .6s }
@keyframes fiqbar { 0%,100% { transform: scaleY(0.55); } 50% { transform: scaleY(1); } }
.fiq-spark span { transform-origin: bottom; }

/* platform logos row inside a tile */
.fiq-plats { display: flex; gap: 8px; margin-top: auto; padding-top: 14px; flex-wrap: wrap; }
.fiq-plat { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border); color: #fff; }

/* ---------- Interactive optimizer demo (feature tile) ---------- */
.opt { display: flex; flex-direction: column; height: 100%; }
.opt-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.opt-title { font-size: 18px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.01em; display: block; }
.opt-sub { display: flex; align-items: center; gap: 9px; font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.opt-live { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); }
.opt-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(52,211,153,0.8); animation: pulse 2s infinite; }
.opt-total { text-align: right; flex-shrink: 0; line-height: 1; }
.opt-total-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; font-weight: 800; letter-spacing: -0.02em; color: var(--yellow); display: block; }
.opt-total-l { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); }
.opt-cap { margin-bottom: 8px; }
.opt-cap-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.opt-cap-used { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: #fff; }
.opt-cap-track { height: 8px; border-radius: 5px; background: rgba(255,255,255,0.1); overflow: hidden; }
.opt-cap-fill { height: 100%; width: 0; border-radius: 5px; background: linear-gradient(90deg,var(--accent),var(--accent-light)); transition: width 0.6s cubic-bezier(.4,0,.2,1); }
.opt-cap-foot { font-size: 11px; color: var(--faint); margin-top: 6px; }
.opt-cap-foot b { color: var(--accent-light); font-weight: 700; }
.opt-hint { font-size: 11px; color: var(--faint); text-align: center; margin: 12px 0 0; }
.opt-hint b { color: var(--accent-light); font-weight: 700; }
.opt-viz-note { font-size: 10.5px; color: var(--faint); text-align: center; opacity: 0.7; font-style: italic; margin: 5px 0 0; }
.opt-roster { list-style: none; padding: 0; margin: 14px 0 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.opt-slot {
  display: grid; grid-template-columns: 32px 1fr auto 50px 30px; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  border-radius: 11px; padding: 9px 11px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s ease, opacity 0.3s ease;
}
.opt-slot.empty { border-style: dashed; opacity: 0.65; }
.opt-slot.locked { border-color: var(--yellow-border); background: rgba(236,255,67,0.05); }
.opt-slot.filling { animation: slotpop 0.42s cubic-bezier(.2,.8,.2,1) both; }
@keyframes slotpop { 0% { transform: scale(0.96) translateY(4px); opacity: 0.25; } 100% { transform: none; opacity: 1; } }
.opt-pos { font-size: 11px; font-weight: 800; color: var(--accent-light); text-align: center; }
.opt-name { font-size: 13.5px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.opt-slot.empty .opt-name { color: var(--faint); font-style: italic; font-weight: 500; }
.opt-sal { font-size: 12px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.opt-slot.empty .opt-sal { opacity: 0; }
.opt-proj { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: var(--yellow); text-align: right; }
.opt-slot.empty .opt-proj { color: var(--faint); }
.opt-lock { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: var(--faint); background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); transition: all 0.2s; }
.opt-lock:hover { color: #fff; border-color: rgba(65,156,212,0.5); transform: translateY(-1px); }
.opt-lock svg { width: 14px; height: 14px; }
.opt-slot.empty .opt-lock { opacity: 0.4; pointer-events: none; }
.opt-slot.locked .opt-lock { color: var(--yellow); border-color: var(--yellow-border); background: rgba(236,255,67,0.1); }
.opt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 0.02em;
  color: #04204f; background: linear-gradient(135deg,var(--accent),var(--accent-light));
  border-radius: 13px; padding: 14px; box-shadow: 0 12px 30px rgba(65,156,212,0.4);
  transition: transform 0.15s, box-shadow 0.2s, background 0.3s;
}
.opt-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(65,156,212,0.55); }
.opt-btn:active { transform: translateY(0); }
.opt-btn svg { width: 16px; height: 16px; }
.opt-btn.spinning { pointer-events: none; }
.opt-btn.spinning svg { animation: spin 0.7s linear infinite; }
.opt-btn.done { background: linear-gradient(135deg,var(--green),#5bd6a8); box-shadow: 0 12px 30px rgba(52,211,153,0.42); }

/* ---------- Fantasy IQ — interactive build flow (sticky) ---------- */
.build {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px,5vw,64px); align-items: start;
}
.build-aside { position: sticky; top: 108px; }
.build-aside .page-eyebrow { margin-bottom: 16px; }
.build-aside h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 16px; text-align: left; }
.build-aside p { font-size: 16px; color: var(--muted); line-height: 1.72; margin: 0; }
.build-steps { display: flex; flex-direction: column; gap: 16px; }
.build-step {
  position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.build-step:hover { border-color: rgba(65,156,212,0.42); transform: translateX(6px); }
.build-step-ix {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--yellow);
  background: rgba(236,255,67,0.06); border: 1px solid var(--yellow-border);
}
.build-step h4 { font-size: 17px; font-weight: 700; margin: 0 0 5px; }
.build-step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.build-step:not(:last-child)::after {
  content: ''; position: absolute; left: 54px; bottom: -16px; width: 1px; height: 16px;
  background: linear-gradient(180deg, var(--yellow-border), transparent);
}

/* ---------- Playbook — sticky asymmetric "how it works" ---------- */
.pb-works { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px,5vw,64px); align-items: start; }
.pb-works-aside { position: sticky; top: 108px; }
.pb-works-aside .page-eyebrow { margin-bottom: 16px; }
.pb-works-aside h2 { font-size: clamp(28px,3.8vw,44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; text-align: left; }
.pb-works-aside p { font-size: 16px; color: var(--muted); line-height: 1.72; margin: 0; }
.pb-works-list { display: flex; flex-direction: column; gap: 16px; }
.pb-work {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 20px; align-items: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.pb-work:hover { border-color: rgba(65,156,212,0.42); transform: translateX(6px); box-shadow: 0 18px 44px rgba(2,8,30,0.35); }
.pb-work-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: var(--accent-light); background: rgba(65,156,212,0.12); border: 1px solid rgba(65,156,212,0.24); }
.pb-work-ic svg { width: 25px; height: 25px; }
.pb-work-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 6px; }
.pb-work h3 { font-size: 18px; font-weight: 700; margin: 0 0 5px; letter-spacing: -0.01em; }
.pb-work p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.pb-work-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 34px; font-weight: 800; color: rgba(255,255,255,0.1); letter-spacing: -0.03em; }
.pb-work:hover .pb-work-n { color: rgba(236,255,67,0.35); }

/* ---------- Playbook — "Why BTA" asymmetric pillar rows ---------- */
.pb-why .pillars { grid-template-columns: 1fr 1fr; gap: 18px; }
.pb-why .pillar {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  padding: 30px; border-left: 2px solid rgba(65,156,212,0.3);
}
.pb-why .pillar:hover { border-left-color: var(--yellow); }
.pb-why .pillar-ic { margin-bottom: 0; }
.pb-why .pillar h3 { margin-bottom: 10px; }

/* ---------- Playbook — responsible play split panel ---------- */
.pb-resp {
  display: grid; grid-template-columns: 1fr 0.62fr; gap: clamp(32px,5vw,56px); align-items: center;
  background: linear-gradient(165deg, rgba(65,156,212,0.1), rgba(255,255,255,0.025));
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: clamp(30px,4vw,52px);
}
.pb-resp-text { text-align: left; }
.pb-resp-text .page-eyebrow { margin-bottom: 14px; }
.pb-resp-text h2 { font-size: clamp(24px,3.2vw,36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.14; margin: 0 0 16px; }
.pb-resp-text p { font-size: 15.5px; color: var(--muted); line-height: 1.72; margin: 0 0 14px; }
.pb-resp-text p strong { color: #fff; }
.pb-resp-visual { display: flex; flex-direction: column; gap: 14px; }
.pb-resp-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 18px 20px;
}
.pb-resp-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--accent-light); background: rgba(65,156,212,0.14); border: 1px solid rgba(65,156,212,0.28); flex-shrink: 0; }
.pb-resp-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 3px; }
.pb-resp-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.pb-resp-card strong { color: var(--yellow); }

/* ---------- Toolkit deep-dive — animated step badge ---------- */
.tool-step-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow);
}
.tool-step-badge .tsb-n {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: var(--yellow);
  background: rgba(236,255,67,0.07); border: 1px solid var(--yellow-border);
}

/* ---------- Playbook — "Decision Engine" deck hero (live console, no phone) ---------- */
.deck-hero { padding: clamp(94px,12vw,138px) 0 clamp(48px,7vw,84px); text-align: left; position: relative; }
.deck-hero::before {
  content: ''; position: absolute; top: -6%; left: 50%; transform: translateX(-50%); width: 900px; height: 520px; z-index: -1;
  background: radial-gradient(ellipse, rgba(65,156,212,0.16), transparent 64%); filter: blur(10px); pointer-events: none;
}
.deck-copy { max-width: 800px; }
.deck-copy .eyebrow-chip { margin-bottom: 22px; }
.deck-copy h1 { font-size: clamp(42px,6.4vw,80px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.99; margin: 0 0 22px; }
.deck-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg,#fff 0%,var(--accent-light) 46%,var(--yellow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.deck-copy .lead { font-size: clamp(16px,1.7vw,19px); color: var(--muted); line-height: 1.7; max-width: 640px; margin: 0 0 28px; }
.deck-copy .lead strong { color: #fff; font-weight: 600; }
.deck-copy .page-ctas { justify-content: flex-start; }
.deck-copy .hero-fineprint { text-align: left; margin-top: 18px; }

/* the live console band */
.deck-console {
  margin-top: clamp(40px,5vw,60px); position: relative; overflow: hidden;
  border-radius: clamp(18px,2vw,26px); border: 1px solid var(--glass-border);
  background: linear-gradient(168deg, rgba(65,156,212,0.13), rgba(255,255,255,0.022));
  box-shadow: 0 44px 100px rgba(2,8,30,0.6), inset 0 1px 0 rgba(255,255,255,0.07);
}
.deck-console::before {
  content: ''; position: absolute; top: -45%; right: -8%; width: 540px; height: 540px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(65,156,212,0.22), transparent 64%); filter: blur(8px);
}
/* ticker strip */
.deck-ticker {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--glass-border); background: rgba(2,8,22,0.45);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.deck-ticker-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.deck-console:hover .deck-ticker-track { animation-play-state: paused; }
.deck-tick { display: inline-flex; align-items: center; gap: 9px; padding: 11px 22px; font-size: 12.5px; font-weight: 600; color: var(--muted); white-space: nowrap; border-right: 1px solid var(--glass-border); }
.deck-tick b { color: #fff; font-weight: 700; }
.deck-tick .up { color: var(--green); font-weight: 800; }
.deck-tick .dn { color: var(--accent-light); font-weight: 800; }
.deck-tick .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 7px rgba(236,255,67,0.7); }
/* body — 3 live regions */
.deck-body { position: relative; z-index: 1; display: grid; grid-template-columns: 0.82fr 1.12fr 1.04fr; gap: clamp(20px,2.6vw,40px); padding: clamp(24px,3vw,40px); align-items: center; }
.deck-region-lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
/* gauge */
.deck-gauge { display: flex; flex-direction: column; align-items: center; text-align: center; }
.deck-gauge-ring {
  position: relative; width: clamp(146px,15vw,184px); aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(var(--accent-light) 0deg, rgba(255,255,255,0.07) 0deg);
  transition: background 1.4s cubic-bezier(.2,.7,.2,1);
}
.deck-gauge-ring::after { content: ''; position: absolute; inset: 14px; border-radius: 50%; background: #06122a; box-shadow: inset 0 2px 14px rgba(0,0,0,0.55); }
.deck-gauge-val { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.deck-gauge-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px,4vw,46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff; }
.deck-gauge-sub { font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); margin-top: 6px; }
.deck-gauge-cap { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 16px; }
.deck-gauge-cap b { color: #fff; }
/* signals */
.deck-signals { display: flex; flex-direction: column; gap: 14px; border-left: 1px solid var(--glass-border); border-right: 1px solid var(--glass-border); padding: 0 clamp(16px,2vw,30px); }
.deck-sig { display: grid; grid-template-columns: 30px 1fr auto; gap: 13px; align-items: center; }
.deck-sig-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: var(--accent-light); background: rgba(65,156,212,0.12); border: 1px solid rgba(65,156,212,0.24); }
.deck-sig-ic svg { width: 16px; height: 16px; }
.deck-sig-main { min-width: 0; }
.deck-sig-name { font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.deck-sig-track { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.1); overflow: hidden; }
.deck-sig-fill { display: block; height: 100%; width: 0; border-radius: 4px; background: linear-gradient(90deg,var(--accent),var(--accent-light)); transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.deck-sig-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: var(--yellow); }
/* live feed */
.deck-feed { display: flex; flex-direction: column; gap: 9px; }
.deck-feed-row { display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,0.035); border: 1px solid var(--glass-border); border-radius: 10px; padding: 11px 13px; transition: border-color 0.3s, background 0.3s; }
.deck-feed-row.lead { border-color: rgba(236,255,67,0.32); background: rgba(236,255,67,0.05); }
.deck-feed-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 8px rgba(52,211,153,0.7); }
.deck-feed-row.lead .deck-feed-dot { background: var(--yellow); box-shadow: 0 0 8px rgba(236,255,67,0.7); animation: pulse 2s infinite; }
.deck-feed-tx { font-size: 12px; color: var(--muted); line-height: 1.45; min-width: 0; }
.deck-feed-tx b { color: #fff; font-weight: 700; }
.deck-feed-time { margin-left: auto; font-size: 10.5px; color: var(--faint); white-space: nowrap; }

/* ---------- Interactive tool explorer (How the app works) ---------- */
.explorer { display: grid; grid-template-columns: 0.92fr 1.42fr; gap: clamp(20px,3vw,40px); align-items: stretch; }
.explorer-nav { display: flex; flex-direction: column; gap: 12px; }
.explorer-tab {
  position: relative; overflow: hidden; text-align: left;
  display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: center;
  padding: 17px 20px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.explorer-tab:hover { border-color: rgba(65,156,212,0.42); transform: translateX(3px); }
.explorer-tab.active { background: rgba(65,156,212,0.12); border-color: rgba(65,156,212,0.5); }
.et-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--accent-light); background: rgba(65,156,212,0.12); border: 1px solid rgba(65,156,212,0.24); transition: all 0.22s; }
.et-ic svg { width: 23px; height: 23px; }
.explorer-tab.active .et-ic { color: #04204f; background: linear-gradient(135deg,var(--accent),var(--accent-light)); border-color: transparent; }
.et-tx strong { display: block; font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 2px; letter-spacing: -0.01em; }
.et-tx small { font-size: 13px; color: var(--muted); }
.et-bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--yellow); box-shadow: 0 0 8px rgba(236,255,67,0.6); }
.explorer-tab.active .et-bar.run { animation: etfill 6s linear forwards; }
@keyframes etfill { from { width: 0; } to { width: 100%; } }

.explorer-stage {
  position: relative; display: grid; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, rgba(65,156,212,0.1), rgba(255,255,255,0.025));
  border: 1px solid var(--glass-border); padding: clamp(26px,3.2vw,40px); min-height: 360px;
}
.explorer-panel {
  grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px,3vw,40px); align-items: center;
}
.explorer-panel.active { opacity: 1; visibility: visible; transform: none; }
.ep-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.ep-text h3 { font-size: clamp(21px,2.6vw,28px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.16; margin: 0 0 12px; }
.ep-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0 0 18px; }
.ep-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ep-chip { font-size: 12px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border); padding: 6px 12px; border-radius: 999px; }
.ep-viz { position: relative; }

/* mini visual: device card frame */
.viz {
  position: relative; border-radius: 18px; padding: 18px; overflow: hidden;
  background: rgba(4,12,28,0.6); border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 50px rgba(2,8,30,0.5);
}
.viz-head { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.viz-live { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.viz-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(52,211,153,0.8); }
/* prob bars */
.viz-prob-row { margin-bottom: 12px; }
.viz-prob-row:last-child { margin-bottom: 0; }
.viz-prob-top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.viz-prob-top .pct { font-family: 'Plus Jakarta Sans', sans-serif; }
.viz-prob-track { height: 9px; border-radius: 5px; background: rgba(255,255,255,0.1); overflow: hidden; }
.viz-prob-fill { height: 100%; border-radius: 5px; width: 0; background: linear-gradient(90deg,var(--accent),var(--accent-light)); }
.viz-prob-fill.mkt { background: rgba(255,255,255,0.3); }
.viz-prob-fill.bta { color: var(--yellow); }
.explorer-panel.active .viz-prob-fill { transition: width 1s cubic-bezier(.4,0,.2,1); }
/* prop over/under split */
.viz-prop { display: flex; flex-direction: column; gap: 12px; }
.viz-prop-name { font-size: 13px; font-weight: 700; color: #fff; }
.viz-prop-name span { color: var(--muted); font-weight: 500; }
.viz-split { display: flex; height: 40px; border-radius: 10px; overflow: hidden; border: 1px solid var(--glass-border); }
.viz-split-o, .viz-split-u { display: grid; place-items: center; font-size: 13px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; width: 0; transition: width 1s cubic-bezier(.4,0,.2,1); }
.viz-split-o { background: rgba(52,211,153,0.22); color: var(--green); }
.viz-split-u { background: rgba(240,85,106,0.18); color: var(--red); }
/* risk gauge */
.viz-gauge { display: flex; align-items: center; gap: 20px; }
.gauge-ring { position: relative; width: 116px; height: 116px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--accent-light) 0deg, var(--accent-light) 0deg, rgba(255,255,255,0.08) 0deg); transition: background 1.1s cubic-bezier(.4,0,.2,1); }
.gauge-ring::after { content: ''; position: absolute; inset: 12px; border-radius: 50%; background: #061021; }
.gauge-num { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; color: #fff; }
.gauge-meta h4 { font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.gauge-meta p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.5; }
/* mini lineup */
.viz-lineup { display: flex; flex-direction: column; gap: 8px; }
.viz-cap { height: 8px; border-radius: 5px; background: rgba(255,255,255,0.1); overflow: hidden; margin-bottom: 4px; }
.viz-cap span { display: block; height: 100%; width: 0; border-radius: 5px; background: linear-gradient(90deg,var(--accent),var(--accent-light)); }
.explorer-panel.active .viz-cap span { transition: width 1.1s cubic-bezier(.4,0,.2,1); }
.viz-pl { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; font-size: 12.5px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 9px; padding: 8px 11px; }
.viz-pl .pos { font-weight: 800; color: var(--accent-light); }
.viz-pl .nm { color: #fff; font-weight: 600; }
.viz-pl .pj { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--yellow); }

/* ---------- Toolkit deep-dive — stronger bullet feature rows ---------- */
.tool-feats { list-style: none; padding: 0; margin: 6px 0 0; }
.tool-feats li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
  padding: 15px 0; border-top: 1px solid var(--glass-border);
  font-size: 14.5px; color: var(--muted); line-height: 1.62;
}
.tool-feats li:first-child { border-top: none; }
.tool-feats li::before {
  content: '✓'; width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(65,156,212,0.14); border: 1px solid rgba(65,156,212,0.3);
  color: var(--accent-light); font-size: 13px; font-weight: 800; margin-top: 1px;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.tool-feats li:hover::before { background: var(--yellow); color: #04122f; border-color: var(--yellow); }
.tool-feats li strong { color: #fff; font-weight: 700; }

/* ---------- Responsive — redesign components ---------- */
@media (max-width: 960px) {
  .split-grid, .split-grid--visualwide { grid-template-columns: 1fr; gap: 44px; }
  .split-copy { text-align: center; }
  .split-copy h1 { margin-left: auto; margin-right: auto; }
  .split-copy .lead { margin-left: auto; margin-right: auto; }
  .split-copy .page-ctas, .split-copy .platform-pills { justify-content: center; }
  .split-copy .hero-fineprint { text-align: center; }
  .split-copy .eyebrow-chip { margin-left: auto; margin-right: auto; }
  .build, .pb-works { grid-template-columns: 1fr; gap: 36px; }
  .build-aside, .pb-works-aside { position: static; text-align: center; }
  .build-aside h2, .pb-works-aside h2 { text-align: center; }
  .fiq-bento { grid-template-columns: repeat(2, 1fr); }
  .fiq-tile--feature { grid-column: span 2; grid-row: span 1; }
  .pb-why .pillars { grid-template-columns: 1fr; }
  .pb-resp { grid-template-columns: 1fr; }
  /* Deck hero: console regions stack */
  .deck-body { grid-template-columns: 1fr; gap: 26px; }
  .deck-signals { border-left: none; border-right: none; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 24px 0; }
  /* Explorer: nav on top, stage below */
  .explorer { grid-template-columns: 1fr; }
  .explorer-nav { flex-direction: row; flex-wrap: wrap; }
  .explorer-tab { flex: 1; min-width: 200px; }
}
@media (max-width: 700px) {
  .explorer-panel { grid-template-columns: 1fr; gap: 24px; }
  .explorer-tab { min-width: 100%; }
}
@media (max-width: 560px) {
  .fiq-bento { grid-template-columns: 1fr; }
  .fiq-tile--feature { grid-column: span 1; }
  .pb-work { grid-template-columns: 46px 1fr; }
  .pb-work-n { display: none; }
  .build-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .opt-player { grid-template-columns: 30px 1fr auto 28px; gap: 8px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
/* ── Mobile performance guard (iOS Safari "a problem repeatedly occurred") ──
   Mobile WebKit crashes its render process under the memory cost of large
   filter:blur() layers, stacked backdrop-filters, and 3D compositing contexts.
   On phones we strip ALL of it: flat painted aurora (no blurred blobs), zero
   backdrop-filter, no blurred glows, and flattened 3D. Same content, a small
   fraction of the GPU memory — this is what stops the crash loop. */
@media (max-width: 768px) {
  /* Aurora → flat painted gradient; no blurred blob layers at all */
  .aurora .blob { display: none !important; }
  .aurora {
    background:
      radial-gradient(130% 80% at 50% -12%, #123e8f 0%, transparent 56%),
      radial-gradient(110% 70% at 100% 22%, #16489c 0%, transparent 52%),
      var(--bg) !important;
  }
  /* Drop every backdrop-filter — translucent fills stay legible on the dark bg */
  *, *::before, *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Neutralize the large blurred decorative glows */
  .phone-glow, .app-screen::before, .screen-wrap::after, .split-visual::before {
    filter: none !important; opacity: 0.4;
  }
  /* Flatten 3D so WebKit stops allocating per-layer 3D buffers */
  .hero-visual, .showcase-body, .sc-right, .split-visual { perspective: none !important; }
  .hero-stage, .sc-right, .tilt { transform-style: flat !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .blob, .warp-grid { animation: none; }
  .hero-phone-wrap, .float-card, .float-chip, .hero-qr { animation: none; }
  .ic-bars span, .ic-radar::before, .orb-sat, .ic-orbit::before, .ic-spark polyline, .ic-heart, .ic-shield-an, .btn-download .bd-glow { animation: none; }
  .split-visual .shot, .fhero-chip, .eyebrow-chip .ec-dot, .fiq-spark span, .opt-live::before { animation: none; }
  .deck-ticker-track, .deck-feed-row.lead .deck-feed-dot, .explorer-tab.active .et-bar.run, .viz-live::before { animation: none; }
}
