:root {
  --bg: #0b1220;
  --bg-2: #101a30;
  --card: linear-gradient(180deg, #141d33, #0f172a);
  --line: rgba(255, 255, 255, .1);
  --text: #eef2f8;
  --muted: #a9b4c7;
  --amber: #f5b52e;
  --amber-2: #ffcf5e;
  --coral: #ef5a2b;
  --ok: #45d38a;
  --err: #ff7a6b;
  --radius: 18px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

/* background: a night sky with two soft glows and a road at the bottom */
.sky { position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 50% -10%, #17264a 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.sky::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12vh;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 48px, transparent 48px 96px) 0 78% / 96px 4px no-repeat,
    linear-gradient(180deg, transparent 0, #0a0f1a 40%, #090d16 100%);
  background-repeat: repeat-x, no-repeat;
  mask-image: linear-gradient(180deg, transparent 0, #000 45%);
  animation: road 2.4s linear infinite; }
@keyframes road { from { background-position: 0 78%, 0 0; } to { background-position: -96px 78%, 0 0; } }
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.glow-a { width: 520px; height: 520px; left: -160px; top: 10%; background: #f5b52e33; }
.glow-b { width: 620px; height: 620px; right: -220px; top: 30%; background: #2b7fff2e; }

.wrap { max-width: 980px; margin: 0 auto; padding: clamp(18px, 4vw, 40px) clamp(18px, 4vw, 32px) 40px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-grid; place-items: center; }
.brand-name { font-weight: 800; letter-spacing: .3px; font-size: 1.15rem; }
.soon { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600;
  color: var(--amber-2); border: 1px solid #f5b52e55; padding: 6px 12px; border-radius: 999px; background: #f5b52e14; }
.soon i { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 #f5b52e88; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.hero { text-align: center; padding: clamp(28px, 6vw, 64px) 0 12px; }
.badge-wrap { display: inline-block; position: relative; margin-bottom: 18px; }
.badge-wrap::before { content: ""; position: absolute; inset: -14px; border-radius: 50%;
  background: radial-gradient(closest-side, #f5b52e33, transparent 72%); animation: breathe 3.6s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.08); opacity: .7; } }
.badge { position: relative; width: clamp(160px, 34vw, 240px); height: auto; filter: drop-shadow(0 18px 30px rgba(0,0,0,.45)); animation: float 5s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-6px) rotate(-1deg); } }
@media (prefers-reduced-motion: reduce) { .badge, .badge-wrap::before, .sky::after, .soon i { animation: none; } }

h1 { font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.05; letter-spacing: -.02em; margin: 6px 0 14px; font-weight: 900; }
h1 em { font-style: normal; background: linear-gradient(90deg, var(--amber-2), var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.2rem); max-width: 600px; margin: 0 auto 28px; }

.signup { max-width: 560px; margin: 0 auto; text-align: left; }
.signup form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; backdrop-filter: blur(8px); }
.row { display: flex; gap: 8px; }
.row input { flex: 1; min-width: 0; font: inherit; color: var(--text); background: #0b1220cc; border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; outline: none; transition: border-color .15s, box-shadow .15s; }
.row input::placeholder { color: #6f7b91; }
.row input:focus { border-color: var(--amber); box-shadow: 0 0 0 4px #f5b52e2b; }
.row button { display: inline-flex; align-items: center; gap: 8px; font: inherit; font-weight: 700; color: #241500; white-space: nowrap;
  background: linear-gradient(180deg, var(--amber-2), var(--amber)); border: 0; border-radius: 12px; padding: 0 18px; cursor: pointer;
  box-shadow: 0 8px 20px #f5b52e33, inset 0 1px 0 #fff6; transition: transform .12s, filter .12s; }
.row button:hover { filter: brightness(1.04); transform: translateY(-1px); }
.row button:active { transform: translateY(0); }
.row button[disabled] { opacity: .7; cursor: progress; transform: none; }
.row button svg { transition: transform .15s; }
.row button:hover svg { transform: translateX(3px); }
.msg { min-height: 1.2em; margin: 10px 4px 0; font-size: .9rem; color: var(--ok); }
.msg.is-error { color: var(--err); }
.msg:empty { margin-top: 0; min-height: 0; }
.fine { margin: 10px 4px 0; font-size: .8rem; color: #8b97ad; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.done { display: flex; gap: 14px; align-items: center; background: #45d38a14; border: 1px solid #45d38a55; border-radius: var(--radius); padding: 16px 18px; animation: pop .35s cubic-bezier(.2,.9,.3,1.3); }
.done-mark { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--ok); color: #05301a; flex: none; }
.done strong { display: block; font-size: 1.05rem; }
.done div > span { color: var(--muted); font-size: .92rem; }
@keyframes pop { from { transform: scale(.94); opacity: 0; } }

@media (max-width: 520px) {
  .row { flex-direction: column; }
  .row button { justify-content: center; padding: 14px 18px; }
  .soon { gap: 6px; padding: 5px 9px; font-size: .72rem; }
}
@media (max-width: 360px) { h1 { font-size: 1.8rem; } }

.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: clamp(36px, 7vw, 64px) 0 0; }
.perks article { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; transition: transform .15s, border-color .15s; }
.perks article:hover { transform: translateY(-2px); border-color: #ffffff22; }
.ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: #ffffff0d; margin-bottom: 10px; }
.perks h2 { font-size: 1rem; margin: 0 0 4px; }
.perks p { margin: 0; color: var(--muted); font-size: .9rem; }
@media (max-width: 720px) { .perks { grid-template-columns: 1fr; } }

.garage { margin-top: clamp(58px, 10vw, 104px); }
.section-heading { text-align: center; max-width: 660px; margin: 0 auto 26px; }
.section-heading .eyebrow { display: inline-block; margin-bottom: 8px; color: var(--amber-2); font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-heading h2 { margin: 0; font-size: clamp(1.75rem, 4vw, 2.7rem); line-height: 1.08; letter-spacing: -.02em; }
.section-heading p { margin: 12px auto 0; color: var(--muted); }
.car-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.car-card { position: relative; overflow: hidden; min-width: 0; padding: 14px 18px 20px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(160deg, #17233d, #0d1526 64%); box-shadow: 0 20px 44px rgba(0,0,0,.22); transition: transform .15s, border-color .15s; }
.car-card:hover { transform: translateY(-2px); border-color: #ffffff22; }
.car-card::before { content: ""; position: absolute; inset: 0; opacity: .6; pointer-events: none; background: radial-gradient(ellipse at 50% 30%, #f5b52e26, transparent 60%); }
.car-card.premium::before { background: radial-gradient(ellipse at 50% 30%, #ff70432b, transparent 60%); }
.car-card.flagship::before { background: radial-gradient(ellipse at 50% 30%, #754cff38, transparent 60%); }
.car-soon { position: relative; z-index: 3; display: inline-block; padding: 5px 10px; color: #fff2ce; background: #0b1220b8; border: 1px solid #ffffff1c; border-radius: 999px; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
/* The stage is a fixed-height box the car fits INSIDE (object-fit: contain);
   the earlier 112%-wide image was cropped by the card's overflow: hidden. */
.car-stage { position: relative; height: 172px; margin: 4px 0 6px; display: grid; place-items: center; }
.car-halo { position: absolute; left: 12%; right: 12%; top: 8%; bottom: 8%; border-radius: 50%; background: radial-gradient(closest-side, #ffffff14, transparent 70%); }
.car-stage::after { content: ""; position: absolute; left: 18%; right: 18%; bottom: 8px; height: 16px; border-radius: 50%; background: #000a; filter: blur(10px); }
.car-stage img { position: relative; z-index: 2; width: 100%; height: 100%; max-width: 100%; object-fit: contain; object-position: 50% 60%; filter: drop-shadow(0 10px 10px rgba(0,0,0,.28)); animation: car-bounce 3.4s ease-in-out infinite; transform-origin: 50% 76%; }
.premium .car-stage img { animation-delay: -.9s; }
.flagship .car-stage img { animation-delay: -1.8s; }
@keyframes car-bounce { 0%, 100% { transform: translateY(3px) rotate(-.3deg); } 48% { transform: translateY(-5px) rotate(.25deg); } 58% { transform: translateY(-4px) rotate(.1deg); } }
.car-copy { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.car-type { display: block; margin-bottom: 1px; color: #8592aa; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.car-copy h3 { margin: 0; font-size: 1.22rem; line-height: 1.2; }
.price { flex: none; color: var(--amber-2); font-size: .8rem; font-weight: 800; }
.price b { color: #68d7ff; font-size: .73rem; }
.price.included { color: var(--ok); }
.car-card > p { position: relative; z-index: 2; margin: 10px 0 0; color: var(--muted); font-size: .82rem; }
.garage-note { margin: 14px 0 0; text-align: center; color: #9aa6ba; font-size: .75rem; }
@media (max-width: 820px) {
  .car-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .car-stage { height: clamp(170px, 46vw, 230px); }
}
@media (prefers-reduced-motion: reduce) { .car-stage img { animation: none; transform: translateY(0); } }

main { position: relative; z-index: 1; }
footer { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .82rem; color: #8b97ad; }
footer .muted { color: #6f7b91; }

@media (hover: none) {
  .perks article:hover, .car-card:hover, .row button:hover { transform: none; }
}
@media (forced-colors: active) {
  h1 em { color: CanvasText; }
}
