:root {
  --bg: #090b0d;
  --panel: #111417;
  --panel-2: #171b1f;
  --text: #f4f1e9;
  --muted: #9ca1a6;
  --amber: #f5a623;
  --amber-2: #ffbe45;
  --line: rgba(255,255,255,.12);
  --truck: #181818;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(255,153,0,.12), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body::selection { background: var(--amber); color: #000; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .055;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.headlights {
  position: fixed;
  width: 36vw;
  height: 36vw;
  filter: blur(60px);
  border-radius: 50%;
  background: rgba(255,150,0,.08);
  pointer-events: none;
  z-index: -1;
  animation: floatGlow 9s ease-in-out infinite alternate;
}
.headlights-a { left: -15vw; top: 25vh; }
.headlights-b { right: -15vw; top: 55vh; animation-delay: -4s; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(to bottom, rgba(5,7,8,.93), rgba(5,7,8,.45), transparent);
  backdrop-filter: blur(10px);
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(8,10,12,.9);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), transparent 45%),
    #14181b;
  color: var(--amber);
  font-family: Anton, sans-serif;
  letter-spacing: 1px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.35), 0 8px 30px rgba(0,0,0,.3);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-family: Oswald, sans-serif; letter-spacing: .5px; text-transform: uppercase; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase; }

.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a {
  color: #c7c9cb;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--amber); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--amber);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: #0b0c0d;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  box-shadow: 0 14px 35px rgba(245,166,35,.2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245,166,35,.28);
  filter: brightness(1.05);
}
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-ghost {
  background: rgba(255,255,255,.025);
  color: var(--text);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.button-ghost:hover { border-color: var(--amber); color: var(--amber); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  padding: 125px clamp(20px, 6vw, 90px) 80px;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7,9,10,.97) 0%, rgba(7,9,10,.84) 38%, rgba(7,9,10,.25) 72%, rgba(7,9,10,.7) 100%),
    url("assets/hero.png") center/cover no-repeat;
  opacity: .42;
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  z-index: -2;
  background: linear-gradient(transparent, var(--bg));
}
.road-lines {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 58%;
  height: 32%;
  transform: perspective(600px) rotateX(66deg);
  transform-origin: bottom;
  opacity: .22;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 18%,
    rgba(255,255,255,.18) 18.5% 19%,
    transparent 19.5% 38%
  );
  animation: roadMove 1.8s linear infinite;
}

.hero-copy { position: relative; z-index: 2; max-width: 670px; }
.eyebrow, .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(245,166,35,.12), 0 0 20px var(--amber);
  animation: pulse 1.7s ease-in-out infinite;
}
.hero h1 {
  margin: 18px 0;
  font-family: Anton, sans-serif;
  font-size: clamp(62px, 8vw, 124px);
  line-height: .88;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.9);
  background: linear-gradient(180deg, #fff 5%, #777 45%, #fafafa 68%, #707070 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: #c4c7ca;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.platform-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #868c91;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.platform-row strong { color: #d9dcdf; }
.platform-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }

.hero-card {
  position: relative;
  justify-self: end;
  width: min(760px, 49vw);
  aspect-ratio: 1.56;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 50px 100px rgba(0,0,0,.55);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.card-glow {
  position: absolute;
  inset: 30% 20%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(245,166,35,.25);
  filter: blur(70px);
}
.hero-card-badge {
  position: absolute;
  left: -22px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  border-left: 3px solid var(--amber);
  background: rgba(8,10,12,.92);
  box-shadow: 0 12px 35px rgba(0,0,0,.4);
}
.hero-card-badge span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.hero-card-badge strong { margin-top: 4px; font-family: Oswald, sans-serif; letter-spacing: 1px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #74797e;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue span {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--amber), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0e1113;
  transform: rotate(-1deg) scale(1.02);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 18px 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 1.5px;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}
.ticker-track span:nth-of-type(even) { color: transparent; -webkit-text-stroke: 1px #777; }
.ticker-track b { color: var(--amber); }

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 28px;
}
.split-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 90px;
}
.section-number {
  color: rgba(255,255,255,.12);
  font-family: Anton, sans-serif;
  font-size: 72px;
  line-height: 1;
}
.section h2 {
  margin: 10px 0 22px;
  font-family: Oswald, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}
.section-copy > p:not(.kicker) {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.feature-list { display: grid; gap: 12px; margin-top: 34px; }
.feature-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(255,255,255,.035), transparent);
  transition: transform .25s ease, border-color .25s ease;
}
.feature-list article:hover { transform: translateX(7px); border-color: rgba(245,166,35,.45); }
.feature-list article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245,166,35,.4);
  border-radius: 8px;
  color: var(--amber);
  font-family: Oswald, sans-serif;
}
.feature-list h3 { margin: 0 0 4px; font-size: 17px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.phone-stage {
  position: relative;
  min-height: 610px;
}
.phone {
  position: absolute;
  width: 290px;
  height: 590px;
  padding: 12px;
  border: 1px solid #5c6268;
  border-radius: 42px;
  background: linear-gradient(145deg, #2e3337, #050607 18%, #17191b 78%, #555);
  box-shadow: 0 45px 80px rgba(0,0,0,.5);
}
.phone::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  width: 92px;
  height: 22px;
  border-radius: 20px;
  background: #030404;
  transform: translateX(-50%);
  z-index: 3;
}
.phone-back { left: 6%; top: 10px; transform: rotate(-9deg); opacity: .72; }
.phone-front { right: 4%; top: 20px; transform: rotate(6deg); animation: phoneFloat 5s ease-in-out infinite; }
.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: #0d1114;
}
.puzzle-screen {
  padding: 58px 16px 20px;
  background:
    linear-gradient(rgba(8,10,12,.72), rgba(8,10,12,.92)),
    radial-gradient(circle at 50% 20%, #29404e, #101317 58%);
}
.mini-topbar { display: flex; justify-content: space-between; align-items: center; font-family: Oswald, sans-serif; font-size: 13px; }
.mini-topbar strong { color: var(--amber); }
.match-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 26px;
}
.gem {
  aspect-ratio: 1;
  border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,.22), 0 5px 10px rgba(0,0,0,.3);
  animation: gemPulse 2.6s ease-in-out infinite;
}
.gem:nth-child(3n) { animation-delay: -.6s; }
.gem:nth-child(4n) { animation-delay: -1.2s; }
.mini-progress { height: 9px; margin-top: 24px; border-radius: 20px; background: #22282c; overflow: hidden; }
.mini-progress span { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, #cb7d00, var(--amber)); animation: progressGlow 2s ease-in-out infinite; }

.garage-screen { padding: 56px 16px; background: radial-gradient(circle at 50% 25%, #37414a, #101315 55%); }
.mini-label { display: block; text-align: center; font: 700 15px Oswald, sans-serif; letter-spacing: 1px; }
.mini-truck {
  position: relative;
  width: 200px;
  height: 120px;
  margin: 90px auto 45px;
  border-radius: 16px 16px 9px 9px;
  background: linear-gradient(145deg, #222, #000);
  box-shadow: 0 25px 30px rgba(0,0,0,.5), inset 20px 0 30px rgba(255,255,255,.04);
}
.mini-truck::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 45px;
  width: 60px;
  height: 75px;
  border-radius: 5px 16px 10px 5px;
  background: #111;
}
.mini-truck::after {
  content: "";
  position: absolute;
  left: 15px;
  right: -15px;
  bottom: -18px;
  height: 28px;
  background:
    radial-gradient(circle at 16% 50%, #111 0 11px, #aaa 12px 16px, transparent 17px),
    radial-gradient(circle at 80% 50%, #111 0 11px, #aaa 12px 16px, transparent 17px);
}
.swatches { display: flex; justify-content: center; gap: 9px; }
.swatches i { width: 29px; height: 29px; border-radius: 6px; background: #161616; border: 1px solid #666; }
.swatches i:nth-child(2) { background: #8d1616; }
.swatches i:nth-child(3) { background: #123e72; }
.swatches i:nth-child(4) { background: #31511c; }
.swatches i:nth-child(5) { background: #d87813; }

.garage-section {
  max-width: none;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}
.garage-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9,11,13,.96), rgba(9,11,13,.7), rgba(9,11,13,.95)),
    radial-gradient(circle at 50% 20%, rgba(255,166,35,.16), transparent 42%);
}
.garage-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    repeating-linear-gradient(90deg, transparent 0 9.8%, rgba(255,255,255,.08) 10%),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(255,255,255,.07) 80px);
}
.garage-heading { display: grid; grid-template-columns: .75fr 1.25fr; align-items: end; margin-bottom: 64px; }
.garage-heading h2 { margin: 0; max-width: 700px; }
.customiser { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.customiser-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 900px;
}
.customiser-light {
  position: absolute;
  width: 75%;
  height: 55%;
  top: 10%;
  border-radius: 50%;
  background: rgba(245,166,35,.14);
  filter: blur(60px);
  animation: lightSweep 4s ease-in-out infinite alternate;
}
.truck-silhouette {
  position: relative;
  width: min(690px, 100%);
  height: 330px;
  transform: rotateY(-8deg);
  filter: drop-shadow(0 35px 28px rgba(0,0,0,.55));
}
.truck-cab {
  position: absolute;
  right: 28%;
  bottom: 60px;
  width: 220px;
  height: 235px;
  border-radius: 24px 48px 12px 12px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.16), transparent 25%),
    var(--truck);
  transition: background-color .35s ease;
  box-shadow: inset -20px -20px 40px rgba(0,0,0,.35);
}
.truck-cab::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 32px;
  width: 128px;
  height: 72px;
  border-radius: 12px 30px 8px 8px;
  background: linear-gradient(145deg, #344552, #0c1115);
  border: 4px solid #25292d;
}
.truck-bonnet {
  position: absolute;
  right: 4%;
  bottom: 61px;
  width: 240px;
  height: 125px;
  border-radius: 18px 55px 12px 12px;
  background:
    linear-gradient(170deg, rgba(255,255,255,.12), transparent 30%),
    var(--truck);
  transition: background-color .35s ease;
}
.truck-grille {
  position: absolute;
  right: 4%;
  bottom: 68px;
  width: 52px;
  height: 98px;
  border: 7px double #bcc3c7;
  border-radius: 10px;
  background: repeating-linear-gradient(90deg, #333 0 3px, #111 3px 7px);
}
.truck-wheel {
  position: absolute;
  bottom: 12px;
  width: 105px;
  height: 105px;
  border: 17px solid #070707;
  border-radius: 50%;
  background: radial-gradient(circle, #1d2124 0 22%, #c4c8ca 23% 39%, #333 40% 47%, #111 48%);
  box-shadow: inset 0 0 0 4px #292d30;
}
.wheel-one { right: 34%; }
.wheel-two { right: 7%; }
.truck-lights {
  position: absolute;
  right: 21%;
  bottom: 178px;
  width: 135px;
  height: 12px;
  background: repeating-radial-gradient(circle at 7px 6px, #ffc35a 0 4px, transparent 5px 27px);
  filter: drop-shadow(0 0 9px #ff9d00);
  animation: markerBlink 2.2s ease-in-out infinite;
}
.floor-reflection {
  position: absolute;
  left: 12%;
  right: 5%;
  bottom: 25px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,170,36,.12), rgba(255,255,255,.04) 35%, transparent 70%);
  transform: rotateX(70deg);
  filter: blur(10px);
}
.customiser-controls {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(14,17,19,.74);
  backdrop-filter: blur(16px);
}
.control-label { margin: 0 0 14px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; }
.paint-options { display: flex; gap: 12px; margin-bottom: 28px; }
.paint {
  width: 42px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--paint);
  box-shadow: inset 0 4px 10px rgba(255,255,255,.12), 0 8px 20px rgba(0,0,0,.3);
  transition: .2s ease;
}
.paint:nth-child(1) { --paint: #181818; }
.paint:nth-child(2) { --paint: #8d1616; }
.paint:nth-child(3) { --paint: #123e72; }
.paint:nth-child(4) { --paint: #31511c; }
.paint:nth-child(5) { --paint: #d87813; }
.paint:hover, .paint.active { transform: translateY(-3px); border-color: var(--amber); }
.upgrade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.upgrade-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111518;
}
.upgrade-grid span, .stat-row span { color: var(--amber); font-size: 10px; font-weight: 800; letter-spacing: 1.1px; }
.upgrade-grid strong { display: block; margin-top: 5px; font-size: 14px; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.stat-row div { padding: 18px 10px 0; text-align: center; }
.stat-row div + div { border-left: 1px solid var(--line); }
.stat-row strong { display: block; margin-top: 5px; font-family: Oswald, sans-serif; }

.quote-section { max-width: none; min-height: 500px; display: grid; place-items: center; overflow: hidden; }
.quote-section blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 980px;
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: .98;
  text-transform: uppercase;
}
.quote-section blockquote::first-letter { color: var(--amber); }
.quote-lines {
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    linear-gradient(115deg, transparent 20%, rgba(245,166,35,.3) 20.4%, transparent 21%),
    linear-gradient(115deg, transparent 50%, rgba(255,255,255,.12) 50.4%, transparent 51%),
    linear-gradient(115deg, transparent 76%, rgba(245,166,35,.2) 76.4%, transparent 77%);
  animation: linesSlide 9s linear infinite alternate;
}

.signup-section { padding-top: 70px; }
.signup-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 22px;
  background:
    linear-gradient(125deg, rgba(245,166,35,.11), transparent 42%),
    #101417;
  box-shadow: 0 40px 90px rgba(0,0,0,.35);
}
.signup-card h2 { margin-bottom: 14px; }
.signup-card p { color: var(--muted); line-height: 1.7; }
form label { display: block; margin-bottom: 10px; color: #d3d5d7; font-size: 13px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 8px;
  outline: none;
  background: #090c0e;
  color: white;
}
input:focus { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245,166,35,.1); }
.form-message { min-height: 22px; margin: 10px 0 0; font-size: 13px; }
.form-message.success { color: #8ed081; }
.form-message.error { color: #ff8686; }

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--amber); }

dialog {
  width: min(720px, calc(100% - 32px));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  background: #101315;
  color: white;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}
dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.dialog-close {
  position: absolute;
  right: 14px;
  top: 10px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: white;
  font-size: 30px;
}
.trailer-placeholder {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 40px;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.7)),
    url("assets/hero.png") center/cover;
}
.play-ring {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(0,0,0,.5);
  box-shadow: 0 0 40px rgba(245,166,35,.22);
}
.trailer-placeholder h2 { margin: 26px 0 6px; font-family: Oswald, sans-serif; font-size: 35px; text-transform: uppercase; }
.trailer-placeholder p { margin: 0; color: #c5c7c9; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .14s; }

@keyframes pulse { 50% { transform: scale(.72); opacity: .65; } }
@keyframes floatGlow { to { transform: translate(6vw, -5vh) scale(1.15); } }
@keyframes heroDrift { to { transform: scale(1.11) translateX(-1.2%); } }
@keyframes cardFloat { 50% { transform: perspective(1200px) rotateY(-4deg) rotateX(0deg) translateY(-10px); } }
@keyframes scrollPulse { 50% { opacity: .25; transform: scaleY(.6); } }
@keyframes roadMove { to { background-position: 160px 0; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes phoneFloat { 50% { transform: rotate(4deg) translateY(-14px); } }
@keyframes gemPulse { 50% { filter: brightness(1.25); transform: scale(.94); } }
@keyframes progressGlow { 50% { filter: brightness(1.35); } }
@keyframes lightSweep { to { transform: translateX(18%) scale(1.1); } }
@keyframes markerBlink { 50% { opacity: .58; } }
@keyframes linesSlide { to { transform: translateX(5%); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 140px;
  }
  .hero-copy { max-width: 780px; }
  .hero-card { justify-self: center; width: min(860px, 94vw); margin: 20px auto 40px; transform: none; }
  .split-section, .customiser, .signup-card { grid-template-columns: 1fr; }
  .garage-heading { grid-template-columns: 1fr; gap: 16px; }
  .phone-stage { max-width: 650px; width: 100%; margin: 20px auto 0; }
  .customiser-controls { max-width: 700px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 16px; }
  .site-header .button-small { display: none; }
  .brand-copy small { display: none; }
  .hero { padding: 120px 18px 60px; }
  .hero h1 { font-size: clamp(54px, 18vw, 80px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .platform-row { flex-wrap: wrap; }
  .hero-card { width: 100%; border-radius: 12px; }
  .hero-card-badge { left: 10px; bottom: 10px; }
  .section { padding: 88px 18px; }
  .phone-stage { min-height: 510px; }
  .phone { width: 235px; height: 480px; border-radius: 34px; }
  .phone-back { left: -5%; }
  .phone-front { right: -4%; }
  .garage-section { padding-inline: 18px; }
  .customiser-visual { min-height: 380px; transform: scale(.82); margin-inline: -60px; }
  .customiser-controls { padding: 22px; }
  .upgrade-grid { grid-template-columns: 1fr; }
  .signup-card { gap: 34px; padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}