/* BigWarRoom — Winamp-style hero + sticky phone showcase, war-room chrome. */

:root {
  --void: #0a0a0c;
  --panel: #131316;
  --panel-2: #1a1a1f;
  --amber: #f2a93b;
  --amber-deep: #c8731a;
  --amber-grad: linear-gradient(118deg, #8a4a12 0%, #f2a93b 48%, #ffd48a 100%);
  --amber-glow: 0 14px 40px rgba(242, 169, 59, 0.28);
  --win: #34d17b;
  --lose: #ff3b5c;
  --dual: #3aa0ff;
  --tf: #2f7dff;
  --muted: rgba(255, 255, 255, 0.64);
  --faint: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.1);
  --max: 1180px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Bebas Neue", "Impact", "Avenir Next Condensed", sans-serif;
  --font-body: "Inter", "SF Pro Text", system-ui, -apple-system, sans-serif;
  --phone-w: 380px;
}

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

html, body {
  margin: 0;
  background: #07070a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: hidden would turn body into a scroll container and kill position: sticky */
  overflow-x: clip;
}

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

.skip {
  position: absolute; left: 12px; top: -40px; z-index: 80;
  padding: 8px 12px; background: var(--amber); color: #000; border-radius: 8px;
}
.skip:focus { top: 12px; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* MARK: - Aurora (Winamp's blurred hero video, done in CSS: drifting color fields behind everything) */

.aurora {
  position: fixed; inset: -10%; z-index: 0; pointer-events: none;
  overflow: hidden;
  --a1: rgba(242,169,59,0.85);   /* amber */
  --a2: rgba(255,59,92,0.7);     /* lose */
  --a3: rgba(52,209,123,0.5);    /* win */
  --a4: rgba(58,160,255,0.5);    /* dual */
  transition: --a1 1.2s, --a2 1.2s, --a3 1.2s, --a4 1.2s;
}
.aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
  mix-blend-mode: screen;
}
.aurora .b1 { width: 62vw; height: 62vw; left: -8vw;  top: -18vw; background: radial-gradient(circle, var(--a1) 0%, transparent 62%); animation: drift1 38s ease-in-out infinite alternate; }
.aurora .b2 { width: 58vw; height: 58vw; right: -14vw; top: 6vw;   background: radial-gradient(circle, var(--a2) 0%, transparent 62%); animation: drift2 46s ease-in-out infinite alternate; }
.aurora .b3 { width: 50vw; height: 50vw; left: 26vw;  bottom: -22vw; background: radial-gradient(circle, var(--a3) 0%, transparent 62%); animation: drift3 52s ease-in-out infinite alternate; }
.aurora .b4 { width: 44vw; height: 44vw; right: 14vw; bottom: -10vw; background: radial-gradient(circle, var(--a4) 0%, transparent 62%); animation: drift4 41s ease-in-out infinite alternate; }
/* tone follows the showcase */
body[data-tone="lose"] .aurora { --a1: rgba(255,59,92,0.8);  --a2: rgba(242,169,59,0.55); }
body[data-tone="dual"] .aurora { --a1: rgba(58,160,255,0.8); --a2: rgba(120,80,255,0.55); --a4: rgba(242,169,59,0.4); }
body[data-tone="rx"]   .aurora { --a1: rgba(178,102,255,0.8); --a2: rgba(255,59,92,0.5); --a3: rgba(58,160,255,0.45); }
body[data-tone="win"]  .aurora { --a1: rgba(52,209,123,0.8); --a2: rgba(242,169,59,0.55); --a4: rgba(52,209,123,0.4); }
@keyframes drift1 { to { transform: translate(18vw, 14vh) scale(1.25); } }
@keyframes drift2 { to { transform: translate(-16vw, 22vh) scale(0.85); } }
@keyframes drift3 { to { transform: translate(14vw, -18vh) scale(1.2); } }
@keyframes drift4 { to { transform: translate(-20vw, -10vh) scale(1.3); } }
/* film grain so gradients don't band */
.aurora::after {
  content: ""; position: absolute; inset: 0; opacity: 0.07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
/* darken veil keeps copy legible while color still moves underneath */
.aurora::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, rgba(7,7,10,0.05) 0%, rgba(7,7,10,0.5) 100%);
}
main, .footer { position: relative; z-index: 1; }
@property --a1 { syntax: "<color>"; inherits: true; initial-value: rgba(242,169,59,0.85); }
@property --a2 { syntax: "<color>"; inherits: true; initial-value: rgba(255,59,92,0.7); }
@property --a3 { syntax: "<color>"; inherits: true; initial-value: rgba(52,209,123,0.5); }
@property --a4 { syntax: "<color>"; inherits: true; initial-value: rgba(58,160,255,0.5); }

/* MARK: - Type */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.kicker {
  margin: 0 0 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber);
}
.lead { font-size: 19px; color: var(--muted); max-width: 62ch; }
.grad {
  background: var(--amber-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.win { color: var(--win); }
.lose { color: var(--lose); }
.dual { color: var(--dual); }

/* MARK: - Buttons */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 14px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-tf {
  background: #fff; color: #0a0a0c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.btn-tf:hover { box-shadow: 0 14px 36px rgba(47, 125, 255, 0.35); }
.btn-tf .tf-icon { width: 26px; height: 26px; border-radius: 7px; }
.btn-tf small { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #5b6472; margin-bottom: 2px; }
.btn-tf b { display: block; font-size: 15px; font-weight: 700; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06); color: #fff;
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-amber {
  background: var(--amber-grad); color: #1a0f02;
  box-shadow: var(--amber-glow);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* MARK: - Nav */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 28px;
  background: rgba(10, 10, 12, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.03em;
}
.nav-brand img { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.nav-links { display: flex; gap: 26px; justify-content: center; font-size: 14px; font-weight: 500; color: var(--muted); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px; border-radius: 10px;
  background: #fff; color: #0a0a0c; font-size: 13px; font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(47,125,255,0.3); }
.nav-cta .tf-icon { width: 20px; height: 20px; border-radius: 5px; }
.nav-toggle { display: none; font-size: 22px; padding: 4px 8px; }

/* MARK: - Hero (Winamp: giant tilted phone bleeding off the right) */

.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  /* visible: the phone flies out of the hero into the showcase */
  overflow: visible;
  z-index: 3;
}
.hero-plate {
  position: absolute; inset: 0; z-index: -3; overflow: hidden;
  background: url("../assets/plates/warroom.jpg") center right / cover no-repeat;
  opacity: 0.6;
  mix-blend-mode: luminosity;
  -webkit-mask-image: linear-gradient(90deg, transparent 18%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 18%, #000 62%);
  animation: kenburns 30s ease-in-out infinite alternate;
}
.hero-glow {
  position: absolute; z-index: -2; pointer-events: none;
  right: -10%; top: -20%; width: 70vw; height: 120%;
  background:
    radial-gradient(ellipse 45% 55% at 60% 45%, rgba(242,169,59,0.55) 0%, rgba(242,169,59,0) 70%),
    radial-gradient(ellipse 40% 50% at 30% 80%, rgba(255,59,92,0.4) 0%, rgba(255,59,92,0) 70%);
  filter: blur(30px);
  animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow { to { transform: translate(-4%, 4%) scale(1.06); opacity: 0.85; } }
@keyframes kenburns { to { transform: scale(1.08) translate(-1.5%, 1%); } }
.hero-fade {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(7,7,10,0.3) 0%, rgba(7,7,10,0) 30%, rgba(7,7,10,0) 70%, rgba(7,7,10,0.5) 100%);
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint);
}
.hero-scroll i {
  width: 18px; height: 28px; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 10px; position: relative;
}
.hero-scroll i::after {
  content: ""; position: absolute; left: 50%; top: 5px; width: 3px; height: 6px; border-radius: 2px;
  background: var(--amber); translate: -50% 0; animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 50% { transform: translateY(10px); opacity: 0.2; } }
.hero-inner {
  position: relative; z-index: 2;
  width: min(var(--max), calc(100% - 56px)); margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}
.hero-copy { max-width: min(560px, 46vw); }
.hero h1 {
  font-size: clamp(60px, 7.6vw, 122px);
  line-height: 0.88;
  margin: 8px 0 18px;
  text-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.hero h1 .thin { color: rgba(255,255,255,0.55); }
.hero-lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 52ch; margin: 0 0 28px; }
.hero-lead b { color: #fff; font-weight: 600; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted);
}
.hero-badges span {
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.04);
}
.hero-badges span b { color: #fff; }
.hero-badges .live::before {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%;
  background: var(--lose); box-shadow: 0 0 0 0 rgba(255,59,92,0.6);
  animation: pulse 1.6s infinite; vertical-align: 1px;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(255,59,92,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,92,0); } }

.hero-phone {
  /* Winamp: the phone is enormous, heavily tilted, and sits UNDER the copy */
  position: absolute; z-index: 4;
  left: 22%;
  top: -14%;
  width: clamp(720px, 64vw, 1240px);
  transform: rotate(-27deg);
  transform-origin: center;
  filter: drop-shadow(-40px 70px 100px rgba(0,0,0,0.8));
  will-change: transform;
  transform-style: preserve-3d;
}
.hero-phone > .phone { animation: float 7s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }
/* hero reel: screens blur-dissolve into each other */
.hero-phone .screen img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top;
  opacity: 0;
  transition: opacity 1s var(--ease), filter 1s var(--ease);
  will-change: opacity, filter;
}
.hero-phone .screen img.is-active { opacity: 1; }
.hero-phone .screen img.is-blur { filter: blur(26px) saturate(1.2); }
.hero-phone.is-parked { visibility: hidden; }
/* scrim between phone and copy — Winamp's left-side vignette */
.hero-scrim {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,7,10,0.9) 0%, rgba(7,7,10,0.72) 26%, rgba(7,7,10,0.3) 48%, rgba(7,7,10,0) 66%),
    linear-gradient(180deg, rgba(7,7,10,0.5) 0%, rgba(7,7,10,0) 22%, rgba(7,7,10,0) 70%, rgba(7,7,10,0.9) 100%);
}
.hero-inner { z-index: 6; }
.hero-scroll { z-index: 7; }

/* MARK: - Phone frame (CSS device so screenshots stay pixel-true) */

.phone {
  position: relative;
  width: var(--phone-w);
  aspect-ratio: 1320 / 2868;
  border-radius: 15% / 7%;
  background: #0c0c0e;
  padding: 3.2%;
  box-shadow:
    inset 0 0 0 2px #2a2a2e,
    inset 0 0 0 5px #0b0b0d,
    0 40px 90px rgba(0,0,0,0.6);
}
.phone::before {
  /* titanium rim */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, #3a3a40 0%, #17171a 30%, #2b2b30 65%, #101013 100%);
  z-index: 0;
}
.phone .screen {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: 12.5% / 5.8%;
  overflow: hidden; background: #000;
}
.phone .screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.phone .island {
  position: absolute; z-index: 3;
  top: 5.2%; left: 50%; transform: translateX(-50%);
  width: 27%; height: 2.6%;
  border-radius: 999px; background: #000;
}
.phone .btn-side {
  position: absolute; z-index: 0; right: -1.2%; top: 22%; width: 1.2%; height: 9%;
  background: #2b2b30; border-radius: 2px;
}
.phone .btn-side.vol1 { right: auto; left: -1.2%; top: 18%; height: 4%; }
.phone .btn-side.vol2 { right: auto; left: -1.2%; top: 25%; height: 7%; }
.phone .btn-side.vol3 { right: auto; left: -1.2%; top: 33%; height: 7%; }

.phone--land {
  width: min(980px, 100%);
  aspect-ratio: 2868 / 1320;
  border-radius: 7% / 15%;
  padding: 1.5%;
}
.phone--land .screen { border-radius: 5.8% / 12.5%; }
.phone--land .island {
  top: 50%; left: 2.4%; transform: translateY(-50%);
  width: 1.2%; height: 27%;
}

/* MARK: - Sticky showcase (Winamp: phone stays, copy scrolls, screen swaps) */

.showcase {
  position: relative;
  padding: 40px 0 0;
}
.showcase-grid {
  width: min(1100px, calc(100% - 48px)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
}
.showcase-stage {
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  display: grid; place-items: center;
  perspective: 1600px;
}
.showcase-glow {
  position: absolute; z-index: 0;
  left: 50%; top: 50%; translate: -50% -50%;
  width: 960px; height: 960px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,169,59,1) 0%, rgba(200,115,26,0.6) 24%, rgba(255,59,92,0.22) 46%, rgba(10,10,12,0) 72%);
  filter: blur(46px);
  transition: background 0.9s var(--ease);
  animation: breathe 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes breathe { 50% { transform: scale(1.08); } }
.showcase-stage[data-tone="win"]   .showcase-glow { background: radial-gradient(circle, rgba(52,209,123,1) 0%, rgba(52,209,123,0.48) 26%, rgba(52,209,123,0.12) 50%, rgba(10,10,12,0) 72%); }
.showcase-stage[data-tone="lose"]   .showcase-glow { background: radial-gradient(circle, rgba(255,59,92,1) 0%, rgba(255,59,92,0.48) 26%, rgba(255,59,92,0.12) 50%, rgba(10,10,12,0) 72%); }
.showcase-stage[data-tone="dual"]   .showcase-glow { background: radial-gradient(circle, rgba(58,160,255,1) 0%, rgba(58,160,255,0.48) 26%, rgba(58,160,255,0.12) 50%, rgba(10,10,12,0) 72%); }
.showcase-stage[data-tone="rx"]   .showcase-glow { background: radial-gradient(circle, rgba(178,102,255,1) 0%, rgba(178,102,255,0.48) 26%, rgba(178,102,255,0.12) 50%, rgba(10,10,12,0) 72%); }
.showcase-mark {
  position: absolute; z-index: 0;
  left: 50%; top: 50%; translate: -50% -50%;
  width: 640px; height: 640px; opacity: 0.18;
  color: #fff;
  animation: markspin 90s linear infinite;
}
@keyframes markspin { to { transform: rotate(360deg); } }
/* orbit ring: a thin arc that circles the phone, Winamp-lightning-outline energy */
.showcase-ring {
  position: absolute; z-index: 0; left: 50%; top: 50%; translate: -50% -50%;
  width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  mask: conic-gradient(from 0deg, #000 0 28%, transparent 34% 100%);
  -webkit-mask: conic-gradient(from 0deg, #000 0 28%, transparent 34% 100%);
  animation: ringspin 14s linear infinite;
  box-shadow: 0 0 30px rgba(242,169,59,0.25);
}
@keyframes ringspin { to { rotate: 360deg; } }
.showcase-phone {
  position: relative; z-index: 1; --phone-w: min(360px, 34vh, 36vw);
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0; transition: opacity 0.25s;
}
.showcase-phone.is-live { opacity: 1; }
.showcase-phone .screen img,
.showcase-phone .screen video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
  transform-origin: 50% 0%;
}
.showcase-phone .screen img.is-active,
.showcase-phone .screen video.is-active {
  opacity: 1;
  /* slow drift reads as the user scrolling the app */
  animation: screenDrift 14s linear forwards;
}
.showcase-phone .screen img.no-pan.is-active { animation: none; }
@keyframes screenDrift { from { transform: scale(1) translateY(0); } to { transform: scale(1.08) translateY(-4%); } }
/* load shimmer sweeps across on every swap */
.showcase-phone .screen::after {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%); opacity: 0;
}
.showcase-phone.is-swapping .screen::after { animation: shimmer 0.7s var(--ease) forwards; }
@keyframes shimmer { 0% { opacity: 1; transform: translateX(-120%); } 100% { opacity: 0; transform: translateX(120%); } }

.showcase-copy { padding: 30vh 0 20vh; }
.feature-block {
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 10vh 0;
  opacity: 0.28; transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.feature-block.is-active { opacity: 1; transform: none; }
.feature-block h2 {
  font-size: clamp(44px, 5vw, 72px);
  margin-bottom: 14px;
}
.feature-block p { color: var(--muted); font-size: 18px; max-width: 48ch; margin: 0 0 18px; }
.feature-block ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.feature-block li {
  position: relative; padding-left: 22px; color: rgba(255,255,255,0.82); font-size: 15px;
}
.feature-block li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 3px;
  background: var(--amber); transform: rotate(45deg);
}
.feature-block .tag {
  display: inline-block; margin-left: 10px; vertical-align: middle;
  font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  padding: 4px 8px; border-radius: 6px; background: var(--win); color: #04120a;
}
.feature-block .tag.ai { background: #b266ff; color: #12041f; }
.feature-block .tag.live { background: var(--lose); color: #fff; }

/* MARK: - Bracket band (landscape phone) */

.band {
  position: relative; padding: 120px 0; overflow: hidden;
}
.band-head { text-align: center; margin-bottom: 44px; }
.band-head h2 { font-size: clamp(48px, 6vw, 88px); }
.band-head .lead { margin: 12px auto 0; }
.bracket-stage {
  display: grid; place-items: center;
  perspective: 1600px;
}
.bracket-stage .phone--land {
  transform: rotateX(8deg);
  transform-origin: center bottom;
  box-shadow: inset 0 0 0 2px #2a2a2e, inset 0 0 0 5px #0b0b0d, 0 60px 120px rgba(0,0,0,0.7), 0 0 120px rgba(52,209,123,0.12);
}

/* MARK: - Player page band (auto-scrolling tall shot) */

.player-band .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.player-band h2 { font-size: clamp(44px, 5vw, 72px); margin-bottom: 14px; }
.player-band .checks { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.player-band .checks li { position: relative; padding-left: 26px; color: rgba(255,255,255,0.84); }
.player-band .checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--win); font-weight: 800;
}
.scroll-phone { --phone-w: min(340px, 80vw); margin: 0 auto; }
.scroll-phone .screen img {
  height: auto; width: 100%; object-fit: unset;
  animation: tallScroll 26s ease-in-out infinite alternate;
}
@keyframes tallScroll {
  0%, 6% { transform: translateY(0); }
  94%, 100% { transform: translateY(var(--scroll-end, -78%)); }
}

/* MARK: - Feature grid (the whole arsenal) */

.arsenal {
  position: relative; padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(7,7,10,0.2) 0%, rgba(7,7,10,0.55) 22%, rgba(7,7,10,0.55) 78%, rgba(7,7,10,0.2) 100%),
    url("../assets/plates/turf.jpg") center / cover no-repeat;
  background-blend-mode: normal, luminosity;
}
.arsenal-head { text-align: center; margin-bottom: 52px; }
.arsenal-head h2 { font-size: clamp(48px, 6vw, 88px); }
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px;
}
.feat {
  position: relative;
  padding: 22px 22px 24px; border-radius: 18px;
  background: rgba(19, 19, 22, 0.78);
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feat:hover { transform: translateY(-3px); border-color: rgba(242,169,59,0.35); }
.feat .ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  margin-bottom: 14px; font-size: 20px;
  background: rgba(242,169,59,0.12); color: var(--amber);
}
.feat .ico.win { background: rgba(52,209,123,0.14); color: var(--win); }
.feat .ico.lose { background: rgba(255,59,92,0.14); color: var(--lose); }
.feat .ico.dual { background: rgba(58,160,255,0.14); color: var(--dual); }
.feat .ico.rx { background: rgba(178,102,255,0.14); color: #b266ff; }
.feat h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.feat p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.feat .new {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  padding: 4px 7px; border-radius: 6px; background: var(--win); color: #04120a;
}
.feat .new.soon { background: rgba(255,255,255,0.14); color: #fff; }

/* MARK: - Platforms strip */

.platforms { padding: 40px 0 0; text-align: center; }
.platforms p { color: var(--faint); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin: 0 0 16px; }
.platform-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.platform-row span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  font-weight: 600; font-size: 14px;
}
.platform-row .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }

/* MARK: - CTA collage (Winamp: "Grab the app today!") */

.collage {
  position: relative; padding: 0; height: 720px; overflow: hidden;
  display: grid; place-items: center;
  background: rgba(13,13,16,0.35);
}
.collage-field {
  position: absolute; inset: -30% -12%;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px;
  transform: rotate(-16deg) translateY(-4%);
  opacity: 0.9;
  filter: saturate(0.9) brightness(0.82);
  pointer-events: none;
}
.collage-field .phone { --phone-w: 100%; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.collage-field .col { display: grid; gap: 36px; align-content: start; }
.collage-field .col:nth-child(even) { transform: translateY(220px); }
.collage-fade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at center, rgba(13,13,16,0.72) 0%, rgba(13,13,16,0.5) 50%, rgba(13,13,16,0.15) 100%),
    linear-gradient(180deg, rgba(7,7,10,0.6) 0%, rgba(13,13,16,0) 18%, rgba(13,13,16,0) 82%, rgba(7,7,10,0.6) 100%);
}
.collage-inner { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.collage-inner h2 { font-size: clamp(56px, 8vw, 120px); text-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.collage-inner .lead { margin: 10px auto 26px; color: rgba(255,255,255,0.8); }
.collage-inner .cta-row { justify-content: center; }
.collage-inner .icon-hero {
  width: 88px; height: 88px; border-radius: 22px; margin: 0 auto 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.1);
}

/* MARK: - Footer */

.footer {
  padding: 56px 0 40px; border-top: 1px solid var(--line);
  color: var(--faint); font-size: 13.5px;
  background: rgba(8,8,10,0.6);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-size: 24px; letter-spacing: 0.03em; margin-bottom: 10px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.footer h4 { margin: 0 0 10px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.footer a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }
.footer .mark { font-size: 12px; color: rgba(255,255,255,0.3); }

/* MARK: - Legal pages */

.legal-page { padding: calc(var(--nav-h) + 60px) 0 80px; max-width: 760px; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(56px, 7vw, 92px); line-height: 0.9; margin-bottom: 18px; }
.legal-page h2 { font-size: 22px; font-weight: 700; margin: 34px 0 10px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page a { color: var(--amber); }
.legal-page ul { padding-left: 20px; }
.legal-page strong { color: #fff; }

/* MARK: - Reveal */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal.is-in { opacity: 1; transform: none; }

/* MARK: - Responsive */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; padding: 0 18px; }
  .nav-links {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(10,10,12,0.96); border-bottom: 1px solid var(--line);
  }
  .nav-links a { padding: 16px 22px; border-top: 1px solid var(--line); }
  .nav.is-open .nav-links { display: flex; }
  .nav-toggle { display: inline-block; }
  .nav-cta .nav-cta-full { display: none; }

  .hero { min-height: auto; display: block; }
  .hero-inner { padding-top: calc(var(--nav-h) + 30px); padding-bottom: 0; }
  .hero-copy { max-width: none; }
  .hero-phone {
    position: relative; left: auto; top: 0;
    width: min(420px, 80vw); margin: 30px auto -300px;
    transform: rotate(-10deg) !important;
  }
  .hero-stage-mobile { height: 560px; overflow: hidden; }
  .hero-fade { background: linear-gradient(180deg, rgba(10,10,12,0.75) 0%, rgba(10,10,12,0.4) 40%, rgba(10,10,12,1) 100%); }

  .aurora span { filter: blur(70px); }
  .aurora .b3, .aurora .b4 { display: none; }
  .aurora .b1 { width: 120vw; height: 120vw; }
  .aurora .b2 { width: 110vw; height: 110vw; }
  .hero-scroll { display: none; }
  .hero-scrim { display: none; }
  .hero-phone .screen img.hero-swap { display: none; }
  .hero-phone { filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7)); }

  .showcase-grid { grid-template-columns: 1fr; gap: 0; }
  .showcase-stage { display: none; }
  .showcase-copy { padding: 20px 0 6vh; }
  .feature-block {
    min-height: auto; padding: 30px 22px 44px;
    margin: 0 0 8px; border-radius: 22px;
    background: radial-gradient(120% 70% at 50% 0%, rgba(242,169,59,0.10), rgba(10,10,12,0) 60%), rgba(15,15,19,0.72);
    border: 1px solid var(--line);
    opacity: 1; transform: none;
  }
  .feature-block[data-tone="win"]  { background: radial-gradient(120% 70% at 50% 0%, rgba(52,209,123,0.14), rgba(10,10,12,0) 60%), rgba(15,15,19,0.72); }
  .feature-block[data-tone="lose"] { background: radial-gradient(120% 70% at 50% 0%, rgba(255,59,92,0.14), rgba(10,10,12,0) 60%), rgba(15,15,19,0.72); }
  .feature-block[data-tone="dual"] { background: radial-gradient(120% 70% at 50% 0%, rgba(58,160,255,0.14), rgba(10,10,12,0) 60%), rgba(15,15,19,0.72); }
  .feature-block[data-tone="rx"]   { background: radial-gradient(120% 70% at 50% 0%, rgba(178,102,255,0.14), rgba(10,10,12,0) 60%), rgba(15,15,19,0.72); }
  .feature-block h2 { font-size: 40px; }
  .block-phone { margin: 0 auto 26px; width: min(260px, 62vw); }
  .block-phone .phone { --phone-w: min(260px, 62vw); position: relative; }

  .player-band .wrap { grid-template-columns: 1fr; gap: 30px; }
  .collage { height: 600px; }
  .collage-field { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .collage-field .col { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 68px; }
  .btn { padding: 12px 16px; }
  .hero-badges { font-size: 11px; }
}
