:root {
  --bg: #050914;
  --bg-2: #07111f;
  --panel: rgba(10, 22, 39, .78);
  --panel-strong: rgba(10, 22, 39, .95);
  --glass: rgba(255, 255, 255, .075);
  --glass-2: rgba(255, 255, 255, .12);
  --line: rgba(255, 255, 255, .14);
  --text: #f6fbff;
  --muted: #aebed0;
  --cyan: #39e8ff;
  --blue: #4d7cff;
  --violet: #8b5cff;
  --gold: #ffc84d;
  --orange: #ff7a3d;
  --green: #55ff9d;
  --red: #ff4f73;
  --shadow: 0 28px 80px rgba(0,0,0,.48);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(57, 232, 255, .16), transparent 28rem),
    radial-gradient(circle at 82% 0%, rgba(139, 92, 255, .2), transparent 32rem),
    linear-gradient(180deg, #050914 0%, #07111f 42%, #050914 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: .75rem;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #07111f;
  background: var(--cyan);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
.ambient {
  position: fixed;
  z-index: -2;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .25;
  pointer-events: none;
}
.ambient-one { left: -18rem; top: 8rem; background: var(--cyan); }
.ambient-two { right: -20rem; top: 34rem; background: var(--violet); }

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease, padding .25s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(5, 9, 20, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand img {
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 14px 34px rgba(0,0,0,.28);
  filter: drop-shadow(0 0 18px rgba(57,232,255,.38));
}
.brand span {
  font-size: 1.02rem;
}
.brand strong { color: var(--cyan); }

.app-logo-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.app-logo-chip img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 18px 42px rgba(0,0,0,.38);
}
.app-logo-chip span {
  display: grid;
  line-height: 1.2;
}
.app-logo-chip strong {
  font-size: .98rem;
  color: #fff;
}
.app-logo-chip small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 14px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(246,251,255,.82);
  font-size: .92rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(57,232,255,.15);
  color: var(--text);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 96px;
}
.hero-art-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #02050a;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .58;
  transform: scale(1.04);
  filter: saturate(1.18) contrast(1.08) brightness(.82);
}
.hero-dim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 32%, rgba(57,232,255,.12), transparent 22rem),
    linear-gradient(90deg, rgba(5,9,20,.92), rgba(5,9,20,.62) 45%, rgba(5,9,20,.88)),
    linear-gradient(180deg, rgba(5,9,20,.48), rgba(5,9,20,.78) 78%, #050914 100%);
}
.rail-perspective {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 100vw;
  height: 32vh;
  transform: translateX(-50%);
  perspective: 360px;
  opacity: .75;
  pointer-events: none;
}
.rail-perspective::before,
.rail-perspective::after {
  content: "";
  position: absolute;
  bottom: -10vh;
  width: 4px;
  height: 45vh;
  background: linear-gradient(180deg, transparent, rgba(57,232,255,.7), rgba(255,200,77,.35));
  box-shadow: 0 0 22px rgba(57,232,255,.55);
}
.rail-perspective::before { left: calc(50% - 78px); transform: rotateX(68deg) rotateZ(-10deg); transform-origin: bottom; }
.rail-perspective::after { right: calc(50% - 78px); transform: rotateX(68deg) rotateZ(10deg); transform-origin: bottom; }
.rail-perspective span {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 44vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  transform: translateX(-50%) translateY(var(--y)) scaleX(var(--s));
  animation: sleeper 2.3s linear infinite;
  opacity: .65;
}
.rail-perspective span:nth-child(1) { --y: -2vh; --s: .25; animation-delay: 0s; }
.rail-perspective span:nth-child(2) { --y: -8vh; --s: .36; animation-delay: -.45s; }
.rail-perspective span:nth-child(3) { --y: -14vh; --s: .5; animation-delay: -.9s; }
.rail-perspective span:nth-child(4) { --y: -20vh; --s: .68; animation-delay: -1.35s; }
.rail-perspective span:nth-child(5) { --y: -26vh; --s: .92; animation-delay: -1.8s; }
@keyframes sleeper {
  from { transform: translateX(-50%) translateY(-26vh) scaleX(.2); opacity: 0; }
  35% { opacity: .7; }
  to { transform: translateX(-50%) translateY(2vh) scaleX(1.2); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(85,255,157,.7);
  animation: pulse 1.7s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(85,255,157,.65); }
  100% { box-shadow: 0 0 0 14px rgba(85,255,157,0); }
}
.hero h1,
.section-heading h2,
.gameplay h2,
.download h2,
.policy-hero h1 {
  margin: 0;
  letter-spacing: -.07em;
  line-height: .93;
  text-wrap: balance;
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  text-shadow: 0 18px 80px rgba(0,0,0,.55);
}
.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(246,251,255,.82);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}
.hero-lead strong { color: #fff; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-color: transparent;
  box-shadow: 0 18px 46px rgba(57,232,255,.23), 0 12px 30px rgba(255,200,77,.12);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-120%);
  animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine { 65%, 100% { transform: translateX(120%); } }
.btn-ghost {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover { border-color: rgba(57,232,255,.42); box-shadow: 0 14px 40px rgba(57,232,255,.12); }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 32px;
}
.hero-meta div,
.stats-band div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 55px rgba(0,0,0,.18);
}
.hero-meta strong,
.stats-band strong {
  display: block;
  font-size: 1.28rem;
  color: #fff;
}
.hero-meta span,
.stats-band span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
}

.cockpit-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    rgba(5,9,20,.64);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(22px);
  overflow: hidden;
}
.cockpit-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent, rgba(57,232,255,.5), transparent, rgba(255,200,77,.45), transparent);
  opacity: .55;
  z-index: -1;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cockpit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .86rem;
}
.status-pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #06101b;
  background: var(--green);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .06em;
}
.speed-ring {
  position: relative;
  width: min(260px, 100%);
  margin: 26px auto 20px;
  aspect-ratio: 1;
}
.speed-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.speed-ring circle {
  fill: none;
  stroke: rgba(255,255,255,.13);
  stroke-width: 12;
}
.speed-ring .speed-stroke {
  stroke: url(#none);
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-dasharray: 452;
  stroke-dashoffset: 126;
  filter: drop-shadow(0 0 12px rgba(57,232,255,.8));
}
.speed-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.speed-value span {
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -.08em;
}
.speed-value small {
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.signal-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.signal-board div {
  min-height: 94px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}
.signal {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: block;
  box-shadow: 0 0 24px currentColor;
}
.signal.green { color: var(--green); background: var(--green); }
.signal.amber { color: var(--gold); background: var(--gold); }
.signal.red { color: var(--red); background: var(--red); }
.signal-board p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}
.route-readout {
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(57,232,255,.22);
  background: rgba(57,232,255,.08);
}
.route-readout span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  font-size: .7rem;
}
.route-readout strong {
  display: block;
  margin-top: 5px;
}
.mini-control {
  width: 100%;
  margin-top: 14px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255,255,255,.08);
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.mini-control:hover {
  transform: translateY(-1px);
  border-color: rgba(57,232,255,.42);
  background: rgba(57,232,255,.12);
}

.ticker {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5,9,20,.78);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 14px 0;
  animation: ticker 24s linear infinite;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(246,251,255,.78);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.ticker span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255,200,77,.8);
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}
.section-heading h2,
.gameplay h2,
.download h2 { font-size: clamp(2.3rem, 5vw, 4.8rem); }
.section-heading p,
.gameplay-copy > p,
.download p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}
.features,
.gameplay,
.safety,
.download,
.policy-layout {
  padding: 96px 0;
}

.feature-grid,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card,
.safety-card {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    rgba(255,255,255,.04);
  box-shadow: 0 18px 58px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card::before,
.safety-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(57,232,255,.16), transparent 15rem);
  opacity: 0;
  transition: opacity .25s ease;
}
.feature-card:hover,
.safety-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57,232,255,.34);
}
.feature-card:hover::before,
.safety-card:hover::before { opacity: 1; }
.card-icon,
.safety-card span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(57,232,255,.13);
  border: 1px solid rgba(57,232,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 1.65rem;
}
.feature-card h3,
.safety-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 10px;
  font-size: 1.3rem;
}
.feature-card p,
.safety-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gameplay {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .8fr);
  gap: 46px;
  align-items: center;
}
.timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.timeline div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}
.timeline span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #06101b;
  background: var(--gold);
  font-weight: 950;
}
.timeline strong { align-self: end; font-size: 1.05rem; }
.timeline p { margin: 0; color: var(--muted); }
.phone-demo {
  width: min(390px, 100%);
  margin-inline: auto;
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(145deg, #17243a, #030711);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow), inset 0 0 0 8px rgba(255,255,255,.035);
}
.phone-top {
  width: 104px;
  height: 24px;
  margin: 2px auto 10px;
  border-radius: 999px;
  background: #050914;
}
.game-screen {
  position: relative;
  min-height: 610px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(57,232,255,.3), transparent 42%),
    linear-gradient(180deg, #1a3760, #07111f 62%, #02040a);
}
.sun {
  position: absolute;
  top: 70px;
  right: 58px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 70px rgba(255,200,77,.85);
}
.mountain {
  position: absolute;
  bottom: 220px;
  width: 350px;
  height: 250px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(102,138,170,.6) 28%, rgba(9,24,42,.95) 58%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: .86;
}
.m1 { left: -90px; }
.m2 { right: -130px; transform: scale(.86); opacity: .64; }
.track-lines {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 100%;
  height: 310px;
  transform: translateX(-50%);
  perspective: 280px;
}
.track-lines::before,
.track-lines::after {
  content: "";
  position: absolute;
  bottom: -80px;
  width: 4px;
  height: 370px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(57,232,255,.45));
  box-shadow: 0 0 14px rgba(57,232,255,.6);
}
.track-lines::before { left: 41%; transform: rotateX(66deg) rotateZ(-8deg); transform-origin: bottom; }
.track-lines::after { right: 41%; transform: rotateX(66deg) rotateZ(8deg); transform-origin: bottom; }
.track-lines span {
  position: absolute;
  left: 50%;
  width: 65%;
  height: 3px;
  bottom: var(--b);
  transform: translateX(-50%) scaleX(var(--x));
  background: rgba(255,255,255,.65);
  animation: phoneSleeper 1.9s linear infinite;
}
.track-lines span:nth-child(1) { --b: 26px; --x: 1; }
.track-lines span:nth-child(2) { --b: 88px; --x: .72; animation-delay: -.45s; }
.track-lines span:nth-child(3) { --b: 144px; --x: .48; animation-delay: -.9s; }
.track-lines span:nth-child(4) { --b: 198px; --x: .28; animation-delay: -1.35s; }
@keyframes phoneSleeper {
  from { bottom: 210px; transform: translateX(-50%) scaleX(.22); opacity: 0; }
  35% { opacity: .7; }
  to { bottom: 10px; transform: translateX(-50%) scaleX(1.12); opacity: 0; }
}
.train-front {
  position: absolute;
  left: 50%;
  bottom: 72px;
  width: 136px;
  height: 118px;
  transform: translateX(-50%);
  border-radius: 28px 28px 16px 16px;
  background: linear-gradient(180deg, #f7fbff, #5f7086 54%, #182338);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.train-window {
  width: 92px;
  height: 44px;
  margin: 18px auto 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(57,232,255,.9), rgba(77,124,255,.65));
}
.train-light {
  width: 22px;
  height: 22px;
  margin: 16px auto 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 30px rgba(255,200,77,.9), 0 0 90px rgba(255,200,77,.8);
}
.hud {
  position: absolute;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,9,20,.58);
  backdrop-filter: blur(14px);
  font-size: .8rem;
  font-weight: 900;
}
.hud.speed { left: 18px; top: 18px; }
.hud.rank { right: 18px; top: 18px; }
.hud.signal-ok { left: 50%; transform: translateX(-50%); bottom: 22px; color: var(--green); }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 0;
  padding-bottom: 0;
}
.stats-band div {
  min-height: 118px;
  display: grid;
  place-content: center;
  text-align: center;
}
.stats-band strong { font-size: 1.6rem; }

.safety-card span {
  color: #06101b;
  background: var(--green);
  border-color: transparent;
  font-weight: 950;
}
.download-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,200,77,.16), transparent 18rem),
    linear-gradient(135deg, rgba(57,232,255,.12), rgba(139,92,255,.12)),
    rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}
.download-panel p { max-width: 680px; }

.download-logo {
  width: clamp(94px, 12vw, 142px);
  height: clamp(94px, 12vw, 142px);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 22px 66px rgba(0,0,0,.38), 0 0 55px rgba(57,232,255,.14);
}


.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: rgba(0,0,0,.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) .55fr .65fr;
  gap: 24px;
  color: var(--muted);
}
.footer-brand { margin-bottom: 10px; color: var(--text); }
.footer-grid a,
.footer-grid span,
.footer-grid strong {
  display: block;
  margin: 9px 0;
}
.footer-grid strong { color: var(--text); }
.footer-grid a:hover { color: var(--cyan); }

.policy-body { background: #050914; }
.policy-hero {
  padding: 140px 0 56px;
}
.policy-hero-card {
  position: relative;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 0%, rgba(57,232,255,.22), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(255,200,77,.18), transparent 20rem),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.policy-hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.13) 42px 46px),
    linear-gradient(180deg, transparent, rgba(57,232,255,.12));
  transform: perspective(300px) rotateX(62deg);
  transform-origin: bottom;
  opacity: .55;
}
.policy-hero h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
.policy-hero p { max-width: 780px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.policy-meta span {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: rgba(246,251,255,.82);
  font-size: .88rem;
}
.policy-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 36px;
}
.policy-nav {
  position: sticky;
  top: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}
.policy-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 800;
}
.policy-nav a:hover { color: var(--text); background: rgba(57,232,255,.1); }
.policy-content {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}
.policy-content section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.policy-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -.04em;
}
.policy-content p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 14px;
}
.policy-content strong { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-inner,
  .gameplay,
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .cockpit-card { max-width: 520px; }
  .feature-grid,
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .policy-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: grid;
    border-radius: 24px;
    padding: 14px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { padding: 13px 14px; }
  .hero { padding-top: 106px; }
  .hero-inner { gap: 28px; }
  .hero-meta,
  .feature-grid,
  .safety-grid,
  .stats-band,
  .footer-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .safety-card { min-height: auto; }
  .download-panel { text-align: left; }

  .app-logo-chip {
    border-radius: 24px;
    width: 100%;
    align-items: center;
  }
  .app-logo-chip img {
    width: 58px;
    height: 58px;
  }
  .download-logo {
    width: 112px;
    height: 112px;
  }
  .policy-nav { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .section-shell,
  .nav { width: min(100% - 28px, var(--max)); }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .section-heading h2,
  .gameplay h2,
  .download h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hero-actions .btn { width: 100%; }
  .cockpit-card { padding: 16px; border-radius: 28px; }
  .signal-board { grid-template-columns: 1fr; }
  .features,
  .gameplay,
  .safety,
  .download,
  .policy-layout { padding: 68px 0; }
  .policy-hero { padding-top: 112px; }
  .game-screen { min-height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-bg-art { opacity: .42; }
}
