:root {
  --bg: #0a1418;
  --bg-elev: #101c22;
  --card: #132028;
  --gold: #e0a21a;
  --gold-hi: #f3c34a;
  --ink: #f4f0e6;
  --muted: #8b9aa1;
  --line: rgba(224, 162, 26, 0.28);
  --blue: #3898ec;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Oswald", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  --font-body: "Figtree", "Segoe UI", "Helvetica Neue", sans-serif;
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(224, 162, 26, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(56, 152, 236, 0.08), transparent 50%),
    var(--bg);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold-hi);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
  color: var(--gold-hi);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(10, 20, 24, 0.82);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  display: block;
  height: 42px;
  width: auto;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.wordmark span {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: auto;
  background: var(--ink);
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.nav a:hover {
  color: var(--gold-hi);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 3.5rem;
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.lede {
  max-width: 38rem;
  margin: 1.25rem 0 1.75rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-pin {
  justify-self: center;
  width: min(420px, 100%);
  filter: drop-shadow(0 20px 50px rgba(224, 162, 26, 0.28));
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: #1a1408;
}

.btn-gold:hover {
  color: #1a1408;
  filter: brightness(1.06);
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
}

.btn-soon {
  opacity: 0.55;
  cursor: not-allowed;
}

.road {
  height: 10px;
  margin: 0.5rem 0 3.5rem;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    repeating-linear-gradient(
      90deg,
      var(--gold) 0 22px,
      transparent 22px 38px
    ) border-box;
  border: 2px solid transparent;
  border-radius: 999px;
  animation: drive 9s linear infinite;
}

@keyframes drive {
  to {
    background-position: 60px 0;
  }
}

section {
  padding: 1.5rem 0 3.5rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section-head p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step,
.card {
  padding: 1.35rem 1.3rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(224, 162, 26, 0.06), transparent 42%), var(--card);
}

.mile {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.9rem;
  margin-bottom: 0.85rem;
  border: 2px solid var(--gold);
  border-radius: 6px 6px 10px 10px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.step h3,
.card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step p,
.card p {
  margin: 0;
  color: var(--muted);
}

.step p strong {
  color: var(--ink);
  font-weight: 600;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 0.85rem;
  color: var(--gold);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.catalog .card {
  min-height: 100%;
}

.tag {
  display: inline-block;
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.download img {
  width: min(280px, 100%);
  margin-inline: auto;
  display: block;
}

.store-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.page {
  padding: 3rem 0 4rem;
}

.page h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.ticket {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0 1.5rem;
  padding: 0.7rem 1rem;
  border: 1px dashed var(--gold);
  border-radius: 12px;
  background: rgba(224, 162, 26, 0.08);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}

.ticket span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal {
  max-width: 44rem;
}

.legal h2 {
  margin: 2.2rem 0 0.7rem;
  font-size: 1.45rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.2rem;
}

.updated {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.foot {
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
}

.foot a:hover {
  color: var(--gold-hi);
}

.center {
  text-align: center;
}

.center .lede {
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero,
  .steps,
  .features,
  .catalog,
  .download {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
    text-align: center;
  }

  .lede,
  .actions {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-pin {
    order: -1;
    width: min(260px, 70vw);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    inset: 4.25rem 1rem auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-elev);
  }

  .nav.is-open {
    display: flex;
  }

  .top {
    position: sticky;
  }

  .top-inner {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .road {
    animation: none;
  }
}
