/* =====================================================================
   THROTL — landing page
   Chunky cartoon racing language, ported verbatim from the app design
   system (`G` tokens + game-ui-kit): cream cards, thick ink outlines,
   hard offset shadows, candy bevel buttons, blue-sky gradient screens.
   Fonts: Lilita One (display) + Baloo 2 (body) — bundled offline.
   ===================================================================== */

@font-face {
  font-family: 'Lilita One';
  src: url('assets/fonts/LilitaOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Baloo 2';
  src: url('assets/fonts/Baloo2-Variable.ttf') format('truetype');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  /* ---- Arcade palette (lib/src/theme/tokens.dart · kArcade) ---- */
  --ink: #23203A;
  --ink-soft: #3A3656;
  --cream: #FFF8EC;
  --cream-dim: #F3E9D2;
  --paper: #FFF4E3;

  --blue-top: #3E8BFF;
  --blue-bot: #2049C9;
  --blue-deep: #16307E;

  --yellow: #FFC421;
  --yellow-lt: #FFD96F;
  --yellow-dk: #8C6C12;
  --orange: #FF8E1F;
  --orange-lt: #FFB66D;
  --orange-dk: #8C4E11;
  --orange-deep: #E06A00;
  --green: #71D63C;
  --green-lt: #A3E480;
  --green-dk: #3E7621;
  --green-deep: #3FA51B;
  --red: #FF5A5A;
  --red-lt: #FF9494;
  --red-dk: #8C3232;
  --purple: #A06CF8;
  --purple-lt: #C19FFA;
  --purple-dk: #583B88;
  --cyan: #4FD9FF;
  --cyan-lt: #84E4FF;
  --cyan-dk: #2B778C;
  --white: #fff;

  --disp: 'Lilita One', system-ui, sans-serif;
  --body: 'Baloo 2', system-ui, -apple-system, sans-serif;

  --shadow-card: 0 6px 0 var(--ink);
  --maxw: 1200px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 600;
  color: var(--ink);
  background: var(--blue-bot);
  overflow-x: hidden;
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: var(--yellow); color: var(--ink); }

/* =====================================================================
   PAGE BACKDROP — fixed blue sky gradient + diagonal speed stripes +
   film grain (GScreen). Sits behind everything; sections layer on top.
   ===================================================================== */
.sky {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, var(--blue-top) 0%, var(--blue-bot) 55%, var(--blue-deep) 100%);
}
.sky__stripes {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.06;
  pointer-events: none;
  background-image: repeating-linear-gradient(-55deg, #fff 0 3px, transparent 3px 26px);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* glow blobs — soft yellow/blue/cyan gradient lights (Troof ellipses) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.blob--yellow { background: var(--yellow); }
.blob--cyan { background: var(--cyan); }
.blob--purple { background: var(--purple); }
.blob--red { background: var(--red); }

/* =====================================================================
   PRIMITIVES
   ===================================================================== */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- chunky bevel button (GBtn) ---- */
.btn {
  --c: var(--green);
  --c-lt: var(--green-lt);
  --c-dk: var(--green-dk);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--disp);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  -webkit-text-stroke: 1px var(--ink);
  background: linear-gradient(180deg, var(--c-lt) 0%, var(--c) 55%);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 6px 0 var(--c-dk), 0 6px 0 3px var(--ink);
  padding: 13px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.15s ease;
}
.btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--c-dk), 0 2px 0 3px var(--ink);
}
.btn svg { -webkit-text-stroke: 0; }
.btn--big {
  font-size: 22px;
  padding: 18px 32px;
  border-radius: 20px;
  box-shadow: 0 7px 0 var(--c-dk), 0 7px 0 3px var(--ink);
}
.btn--big:active { box-shadow: 0 2px 0 var(--c-dk), 0 2px 0 3px var(--ink); }
.btn--green  { --c: var(--green);  --c-lt: var(--green-lt);  --c-dk: var(--green-dk); }
.btn--orange { --c: var(--orange); --c-lt: var(--orange-lt); --c-dk: var(--orange-dk); }
.btn--red    { --c: var(--red);    --c-lt: var(--red-lt);    --c-dk: var(--red-dk); }
.btn--purple { --c: var(--purple); --c-lt: var(--purple-lt); --c-dk: var(--purple-dk); }
.btn--cyan   { --c: var(--cyan);   --c-lt: var(--cyan-lt);   --c-dk: var(--cyan-dk); }

/* ghost / outline button — cream face on ink */
.btn--ghost {
  background: var(--cream);
  color: var(--ink);
  text-shadow: none;
  -webkit-text-stroke: 0;
  box-shadow: 0 6px 0 var(--ink);
}
.btn--ghost:active { box-shadow: 0 2px 0 var(--ink); }

/* ---- cream card (GCard) ---- */
.card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 24px;
}

/* ---- skewed name plate (GPlate) ---- */
.plate {
  position: relative;
  display: inline-block;
}
.plate__kicker {
  position: absolute;
  top: -13px;
  left: 16px;
  z-index: 2;
  transform: skewX(-8deg);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-family: var(--disp);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 7px;
  border: 2px solid var(--ink);
}
.plate__body {
  display: inline-block;       /* form a real box: an inline span can't contain the block child below */
  box-sizing: border-box;
  transform: skewX(-8deg);
  background: linear-gradient(180deg, var(--orange-lt), var(--orange) 60%);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 0 4px 0 var(--ink);
  padding: 8px 24px 7px;
  margin-top: 4px;             /* leave room for the kicker tab riding the top edge */
}
.plate__body > span {
  display: block;
  transform: skewX(8deg);
  font-family: var(--disp);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 2.5px 0 rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

/* ---- small caps kicker (no plate) ---- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--disp);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 100px;
  box-shadow: 0 4px 0 var(--ink);
  padding: 6px 16px;
}
.kicker .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 2px var(--ink);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---- pills (GPill, simplified) ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--disp);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(13, 22, 58, 0.6);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  padding: 5px 13px;
  text-shadow: 0 1.5px 0 rgba(0, 0, 0, 0.4);
}

/* display headings — outlined chunky text */
.h-disp {
  font-family: var(--disp);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}
.h-disp .ink-stroke { -webkit-text-stroke: 2px var(--ink); }
.tx-yellow { color: var(--yellow); }
.tx-green { color: var(--green); }
.tx-cyan { color: var(--cyan); }

.section { position: relative; padding: 96px 0; }
.section__head { text-align: center; margin-bottom: 54px; }
.section__head h2 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
  margin-top: 16px;
}
.section__head p {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.2s ease;
}
.nav__inner {
  margin: 14px auto;
  max-width: var(--maxw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 5px 0 var(--ink);
  padding: 10px 14px 10px 18px;
  width: calc(100% - 32px);
}
.nav.scrolled .nav__inner { margin: 8px auto; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  border: 3px solid var(--ink);
  background: linear-gradient(180deg, var(--orange-lt), var(--orange) 60%);
  box-shadow: 0 3px 0 var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--disp);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav .btn { padding: 10px 18px; font-size: 14px; box-shadow: 0 4px 0 var(--c-dk), 0 4px 0 3px var(--ink); }
.nav .btn:active { box-shadow: 0 1px 0 var(--c-dk), 0 1px 0 3px var(--ink); }
.nav__burger { display: none; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding: 64px 0 84px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 88px);
  color: #fff;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.22);
  margin: 22px 0 0;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 0 5px 0 var(--ink);
}
.hero__sub {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 19px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}
.hero__sub b { color: var(--yellow); font-weight: 800; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 32px;
}
.hero__trust .t-label {
  font-family: var(--disp);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  margin-bottom: -2px;
}
.chip-stack { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  box-shadow: 0 3px 0 var(--ink);
  padding: 6px 13px;
}
.chip svg { flex-shrink: 0; }

/* ---- HERO PHONE ---- */
.hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}
.phone {
  position: relative;
  z-index: 3;
  width: 312px;
  height: 640px;
  background: var(--ink);
  border-radius: 46px;
  border: 4px solid #100e1c;
  box-shadow:
    0 0 0 4px var(--ink),
    0 30px 60px -10px rgba(8, 16, 40, 0.6),
    0 14px 0 -2px rgba(0, 0, 0, 0.35);
  padding: 12px;
  transform: rotate(2deg);
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-12px); } }
.phone__notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 116px; height: 26px;
  background: #100e1c;
  border-radius: 0 0 16px 16px;
  z-index: 6;
}

.screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-top) 0%, var(--blue-bot) 62%, var(--blue-deep) 100%);
  display: flex;
  flex-direction: column;
  padding: 38px 16px 18px;
  font-family: var(--body);
}
.screen::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(-55deg, #fff 0 3px, transparent 3px 26px);
  pointer-events: none;
}
.screen > * { position: relative; z-index: 1; }

.hud-top { display: flex; align-items: center; justify-content: space-between; }
.hud-top .pill { font-size: 12px; }
.hud-pnl { margin-top: 16px; }
.hud-pnl__label {
  font-family: var(--disp); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
}
.hud-pnl__value {
  display: block;
  font-family: var(--disp);
  font-size: 40px;
  color: var(--green);
  -webkit-text-stroke: 1.5px var(--ink);
  text-shadow: 0 3px 0 var(--ink);
  line-height: 1.05;
}

.chart {
  position: relative;
  flex: 1;
  margin: 12px -2px;
}
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart__car {
  position: absolute;
  width: 124px;
  right: 6px;
  bottom: 42%;
  transform: rotate(-9deg);
  filter: drop-shadow(0 6px 5px rgba(8, 16, 40, 0.5));
  z-index: 3;
}
.speedlines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.speedlines i {
  position: absolute; left: 0; right: 0; height: 3px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.7);
  animation: zip 0.7s linear infinite;
}
@keyframes zip {
  0% { transform: translateX(110%); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateX(-130%); opacity: 0; }
}

.hud-stats { display: flex; gap: 7px; flex-wrap: wrap; }
.hud-stats .pill { font-size: 11px; padding: 4px 10px; }
.pill--green { background: linear-gradient(180deg, var(--green-lt), var(--green)); color: #fff; }
.pill--purple { background: linear-gradient(180deg, var(--purple-lt), var(--purple)); color: #fff; }
.pill--cyan { background: linear-gradient(180deg, var(--cyan-lt), var(--cyan)); color: var(--ink); text-shadow: none; }

.xpbar {
  position: relative;
  height: 20px; margin-top: 11px;
  border-radius: 100px;
  background: rgba(13, 22, 58, 0.6);
  border: 2.5px solid var(--ink);
  overflow: hidden;
}
.xpbar > span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(180deg, var(--purple-lt), var(--purple) 60%);
  border-right: 2px solid var(--ink);
}
.xpbar > b {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--disp); font-size: 11px; color: #fff;
  text-shadow: 0 1.5px 0 var(--ink);
}

/* slide-to-arm throttle */
.throttle {
  position: relative;
  margin-top: 12px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--green-lt), var(--green) 55%);
  border: 3px solid var(--ink);
  box-shadow: 0 5px 0 var(--green-dk), 0 5px 0 3px var(--ink);
  display: grid; place-items: center;
  overflow: hidden;
}
.throttle > b {
  font-family: var(--disp); font-size: 16px; color: #fff;
  letter-spacing: 0.06em; text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  -webkit-text-stroke: 1px var(--ink);
}
.throttle__knob {
  position: absolute; left: 5px; top: 5px;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--cream);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--disp); color: var(--ink); font-size: 20px;
  animation: nudge 1.8s ease-in-out infinite;
}
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

/* floating decorations around the phone */
.float {
  position: absolute;
  z-index: 4;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-14px) rotate(var(--r, 0deg)); } }
.float--flag { top: 2%; right: 2%; width: 92px; --r: 6deg; }
.float--badge {
  top: 12%; left: -4%;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 0 4px 0 var(--ink);
  padding: 8px 14px;
  font-family: var(--disp);
  font-size: 14px; color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  display: inline-flex; align-items: center; gap: 7px;
  --r: -6deg;
}
.float--badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px #fff; animation: blink 1.4s infinite; }
.float--coin { bottom: 12%; left: -2%; --r: -10deg; }
.float--chip-card {
  bottom: 6%; right: -2%; --r: 7deg;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 0 5px 0 var(--ink);
  padding: 10px 14px;
}
.float--chip-card .l { font-family: var(--disp); font-size: 10px; letter-spacing: 0.1em; color: var(--ink-soft); }
.float--chip-card .v { font-family: var(--disp); font-size: 20px; color: var(--green-deep); }

/* =====================================================================
   TICKER
   ===================================================================== */
.ticker {
  position: relative;
  background: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.4deg) scale(1.04);
  margin: 18px 0;
}
.ticker__track {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  padding: 14px 0;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__track span {
  font-family: var(--disp);
  font-size: 19px;
  letter-spacing: 0.05em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 38px;
}
.ticker__track span::after {
  content: '';
  width: 11px; height: 11px;
  border-radius: 3px;
  background: var(--yellow);
  transform: rotate(45deg);
}
.ticker__track .hot { color: var(--yellow); }

/* =====================================================================
   FEATURES — cream panel band
   ===================================================================== */
.panel {
  position: relative;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 36px;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.18);
  padding: 64px 48px;
  z-index: 1;
  overflow: hidden;
}
.panel--features .section__head h2,
.panel .section__head h2 { color: var(--ink); text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12); }
.panel .section__head p { color: var(--ink-soft); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 26px 24px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 12px 0 var(--ink); }
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.ic-green  { background: linear-gradient(180deg, var(--green-lt), var(--green)); }
.ic-orange { background: linear-gradient(180deg, var(--orange-lt), var(--orange)); }
.ic-cyan   { background: linear-gradient(180deg, var(--cyan-lt), var(--cyan)); }
.ic-purple { background: linear-gradient(180deg, var(--purple-lt), var(--purple)); }
.ic-red    { background: linear-gradient(180deg, var(--red-lt), var(--red)); }
.ic-yellow { background: linear-gradient(180deg, var(--yellow-lt), var(--yellow)); }
.feature h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.feature p { font-size: 15px; font-weight: 600; color: var(--ink-soft); }

/* =====================================================================
   HOW IT WORKS — numbered steps
   ===================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 30px 22px 24px;
  text-align: center;
}
.step__num {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--orange-lt), var(--orange) 60%);
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  display: grid; place-items: center;
  font-family: var(--disp);
  font-size: 22px; color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  -webkit-text-stroke: 1px var(--ink);
}
.step__car { height: 46px; margin: 14px auto 12px; width: auto; }
.step h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin: 6px 0;
}
.step p { font-size: 14px; font-weight: 600; color: var(--ink-soft); }

/* =====================================================================
   GARAGE
   ===================================================================== */
.garage__cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.car-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.14), rgba(13, 22, 58, 0.35));
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 22px 22px 18px;
  overflow: hidden;
  transition: transform 0.16s ease;
}
.car-card:hover { transform: translateY(-6px); }
.car-card:hover .car-card__img { transform: translateX(8px) rotate(-3deg); }
.car-card__img {
  height: 70px; width: auto; margin: 6px auto 16px;
  filter: drop-shadow(0 8px 6px rgba(8, 16, 40, 0.45));
  transition: transform 0.2s ease;
}
.car-card__row { display: flex; align-items: center; justify-content: space-between; }
.car-card__name { font-family: var(--disp); font-size: 18px; color: #fff; text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4); }
.car-card__tag {
  font-family: var(--disp); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  padding: 3px 10px;
}

.themes { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.theme-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--disp); font-size: 14px; color: #fff;
  background: rgba(13, 22, 58, 0.45);
  border: 3px solid var(--ink);
  border-radius: 100px;
  box-shadow: 0 4px 0 var(--ink);
  padding: 8px 16px 8px 8px;
}
.theme-chip .sw {
  width: 26px; height: 26px; border-radius: 8px;
  border: 2.5px solid var(--ink);
}

/* =====================================================================
   ON-CHAIN PROOF
   ===================================================================== */
.proof { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; }
.proof__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 22px;
}
.stat__num { font-family: var(--disp); font-size: 38px; color: var(--ink); line-height: 1; }
.stat__num small { font-size: 18px; color: var(--ink-soft); }
.stat__label { font-size: 14px; font-weight: 700; color: var(--ink-soft); margin-top: 6px; }
.proof__card { display: flex; flex-direction: column; gap: 14px; }
.proof__card h3 {
  font-family: var(--disp); font-weight: 400; font-size: 24px; color: var(--ink); letter-spacing: 0.01em;
}
.proof__card p { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.addr {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream-dim);
  border: 2.5px dashed var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
  word-break: break-all;
  display: flex; align-items: center; gap: 10px; justify-content: space-between;
}
.addr button {
  flex-shrink: 0;
  font-family: var(--disp); font-size: 11px; letter-spacing: 0.06em;
  color: #fff; cursor: pointer;
  background: var(--ink); border: none; border-radius: 8px; padding: 6px 10px;
}
.proof__list { display: flex; flex-direction: column; gap: 10px; }
.proof__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; font-weight: 600; color: var(--ink); }
.proof__list .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px;
  background: linear-gradient(180deg, var(--green-lt), var(--green));
  border: 2.5px solid var(--ink);
  display: grid; place-items: center;
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.finale { position: relative; text-align: center; padding: 120px 0 96px; }
.finale__flag {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-conic-gradient(var(--ink) 0% 25%, transparent 0% 50%);
  background-size: 54px 54px;
  opacity: 0.08;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}
.finale h2 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 80px);
  color: #fff;
  line-height: 0.95;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
}
.finale h2 em { font-style: normal; color: var(--yellow); -webkit-text-stroke: 2px var(--ink); text-shadow: 0 5px 0 var(--ink); }
.finale p { max-width: 560px; margin: 20px auto 0; font-size: 19px; font-weight: 600; color: rgba(255, 255, 255, 0.94); }
.finale__actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.finale__note { margin-top: 22px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.72); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 34px;
  border-top: 4px solid #100e1c;
}
.footer__grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand__name { color: var(--cream); }
.footer__tag { max-width: 280px; margin-top: 14px; font-size: 15px; font-weight: 600; color: rgba(255, 248, 236, 0.7); }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col h4 {
  font-family: var(--disp); font-weight: 400; font-size: 14px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
}
.footer__col a { display: block; font-size: 15px; font-weight: 600; color: rgba(255, 248, 236, 0.78); margin-bottom: 9px; transition: color 0.15s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 2px solid rgba(255, 248, 236, 0.14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600; color: rgba(255, 248, 236, 0.55);
}

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.07s; }
.reveal.d2 { transition-delay: 0.14s; }
.reveal.d3 { transition-delay: 0.21s; }
.reveal.d4 { transition-delay: 0.28s; }
.reveal.d5 { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 12px; }
  .hero__stage { margin-top: 30px; min-height: 560px; }
  .hero__copy { text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .proof { grid-template-columns: 1fr; }
  .garage__cars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    background: var(--ink); border: none; border-radius: 12px; cursor: pointer;
  }
  .nav__cta .btn:not(.js-burger-cta) { display: none; }
  .nav.open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px;
    background: var(--cream); border: 3px solid var(--ink); border-radius: 18px;
    box-shadow: 0 6px 0 var(--ink); padding: 18px; gap: 14px; align-items: stretch; text-align: center;
  }
  .section { padding: 70px 0; }
  .panel { padding: 44px 22px; border-radius: 28px; }
  .features { grid-template-columns: 1fr; }
  .garage__cars { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .phone { transform: rotate(0deg); }
  @keyframes bob { 0%, 100% { transform: rotate(0deg) translateY(0); } 50% { transform: rotate(0deg) translateY(-12px); } }
  .float--badge { left: 0; }
  .float--chip-card { right: 0; }
}

@media (max-width: 420px) {
  .phone { width: 280px; height: 575px; }
  .hero h1 { font-size: 42px; }
}
