:root {
  --bg: #070605;
  --bg-2: #0d0b0a;
  --gold: #c9a227;
  --gold-2: #e8c547;
  --ember: #e25a12;
  --cream: #f3ece1;
  --muted: #9a9084;
  --line: rgba(201, 162, 39, 0.16);
  --glass: rgba(10, 8, 7, 0.62);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html, body { background: var(--bg); color: var(--cream); }
body {
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.skip {
  position: absolute;
  left: 16px; top: -40px;
  z-index: 90;
  background: var(--gold);
  color: #1a1306;
  padding: 8px 12px;
  border-radius: 8px;
}
.skip:focus-visible { top: 12px; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)'/%3E%3C/svg%3E");
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(7,6,5,.92), rgba(7,6,5,.55));
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(7,6,5,.92);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.22em;
  font-size: 10px;
  font-weight: 500;
}
.brand img { width: 34px; height: 34px; }
.brand span { color: var(--gold-2); }
.nav-links {
  display: none;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--gold-2) !important;
  font-size: 11px !important;
}
.menu-btn {
  display: grid;
  place-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 42px; height: 42px;
  border-radius: 10px;
  padding: 12px 11px;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold-2);
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px; left: 12px; right: 12px;
  background: #0d0b0a;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 68%, rgba(226,90,18,.2), transparent 46%),
    radial-gradient(ellipse at 18% 18%, rgba(201,162,39,.08), transparent 42%),
    #070605;
}
.hero-bg img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  mask-image: linear-gradient(to right, transparent 0%, #000 36%);
  opacity: 0.55;
}
.hero-orbits {
  position: absolute;
  right: -8%;
  top: 12%;
  width: min(70vw, 420px);
  aspect-ratio: 1;
  opacity: 0.35;
  pointer-events: none;
}
.hero-orbits svg { width: 100%; height: 100%; }
.spin-slow { animation: spin 48s linear infinite; transform-origin: 50% 50%; }
.spin-med { animation: spin 28s linear infinite reverse; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0 48px;
  display: grid;
  align-content: center;
  min-height: 100svh;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 0.24em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 11vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 11em;
}
.hero-top { white-space: nowrap; }
@media (max-width: 719px) {
  .hero h1 { font-size: clamp(26px, 7.8vw, 42px); max-width: none; }
}
.hero-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 3.2vw, 28px);
  color: var(--gold-2);
  margin-top: 18px;
}
.hero-lead {
  margin-top: 16px;
  max-width: 38ch;
  color: var(--muted);
  font-size: 16px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  max-width: 520px;
}
.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(7,6,5,.45);
}
.chips b {
  color: var(--gold);
  font-weight: 500;
  margin-right: 6px;
}

.waitlist {
  margin-top: 28px;
  max-width: 520px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16,13,10,.88), rgba(7,6,5,.92));
  position: relative;
}
.waitlist::before {
  content: "";
  position: absolute;
  left: 18px; right: 18px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fields {
  display: grid;
  gap: 10px;
}
.fields label { display: none; }
input {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  width: 100%;
}
input:focus { border-color: var(--gold); }
.note { color: var(--muted); font-size: 13px; margin-top: 12px; }
.form-ok {
  color: var(--gold-2);
  margin-top: 12px;
  font-size: 15px;
}
.form-err {
  color: #e8a090;
  margin-top: 12px;
  font-size: 14px;
}
.hp {
  display: none !important;
}
.btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  filter: none;
}
.waitlist.ok .fields,
.waitlist.ok .hero-actions,
.waitlist.ok .note,
.waitlist.ok .form-err { display: none; }
.hero-actions { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  transition: 0.2s ease;
  cursor: pointer;
  background: transparent;
}
.btn-primary {
  background: linear-gradient(180deg, #f0d36a, #c9a227);
  color: #1a1306;
  border-color: transparent;
  font-weight: 600;
  width: 100%;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-ghost { color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.full { width: 100%; }

.section { padding: 72px 0; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section-head { margin-bottom: 36px; }
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.26em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(30px, 7vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-2);
  font-weight: 500;
}
.lede { color: var(--muted); font-size: 16px; margin-top: 14px; max-width: 48ch; }
.lede.tight { max-width: 36ch; }

.ride {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,162,39,.08), transparent 50%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.steps { display: grid; gap: 14px; }
.step {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  right: -48px; top: -48px;
  background: radial-gradient(circle, rgba(226,90,18,.18), transparent 70%);
}
.step h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  margin: 10px 0 8px;
}
.step p { color: var(--muted); font-size: 15px; }
.num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.where { background: var(--bg-2); }
.split { display: grid; gap: 32px; }
.ticks { margin-top: 22px; display: grid; gap: 12px; }
.ticks li {
  padding-left: 18px;
  position: relative;
  color: var(--cream);
  font-size: 15px;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.map-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 8px;
  background: #0a0807;
}
.map-inner {
  border-radius: 18px;
  overflow: hidden;
  background: #0a0807;
  position: relative;
}
.map-label {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 1;
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
}
.metro { width: 100%; height: auto; display: block; }
.map-note {
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--line);
}

.cab { border-top: 1px solid var(--line); }
.cab-facts {
  display: grid;
  gap: 14px;
}
.cab-facts article {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.cab-facts article::after {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  right: -48px; top: -48px;
  background: radial-gradient(circle, rgba(226,90,18,.18), transparent 70%);
}
.cab-facts h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  margin: 8px 0;
}
.cab-facts p { color: var(--muted); font-size: 15px; }

.mission {
  background:
    radial-gradient(ellipse at 80% 120%, rgba(226,90,18,.14), transparent 50%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.mission-block { max-width: 720px; }
.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.2;
  font-weight: 500;
  max-width: 18ch;
  margin-top: 32px;
}
.quote span { color: var(--gold-2); }

.faq { background: var(--bg); }
.faq-wrap { display: grid; gap: 28px; }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: "Syne", sans-serif;
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  position: relative;
  padding-right: 22px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after,
.faq-list summary::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: var(--gold);
}
.faq-list summary::after {
  width: 12px;
  height: 1px;
  transform: translateY(-50%);
}
.faq-list summary::before {
  width: 1px;
  height: 12px;
  right: 5.5px;
  transform: translateY(-50%);
}
.faq-list details[open] summary::before { opacity: 0; }
.faq-list p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
  max-width: 58ch;
}

.contact {
  background:
    radial-gradient(ellipse at 80% 120%, rgba(226,90,18,.12), transparent 50%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.waitlist-foot {
  margin-top: 0;
  max-width: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 13px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 720px) {
  .nav { padding: 16px 28px; }
  .brand { font-size: 11px; }
  .hero-inner { width: min(var(--max), calc(100% - 48px)); }
  .wrap { width: min(var(--max), calc(100% - 48px)); }
  .fields {
    grid-template-columns: 1fr 1fr;
  }
  .fields input[name="place"],
  .fields .btn-primary {
    grid-column: 1 / -1;
  }
  .hero-bg img {
    opacity: 0.95;
    mask-image: linear-gradient(to right, transparent 2%, #000 28%);
  }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .cab-facts { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .section { padding: 100px 0; }
}

@media (min-width: 980px) {
  .menu-btn { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: 0;
    padding: 0;
  }
  .hero-inner { max-width: 1180px; }
  .hero-copy { max-width: 560px; }
  .hero-orbits {
    right: 8%;
    top: 14%;
    width: min(42vw, 520px);
    opacity: 0.4;
  }
  .hero-bg img { opacity: 0.97; }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 52px;
  }
  .section-head .lede { margin-top: 0; }
  .split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
  }
  .faq-wrap { grid-template-columns: 0.7fr 1.2fr; align-items: start; }
  .waitlist .fields {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spin-slow, .spin-med { animation: none; }
  .btn-primary:hover { transform: none; }
}
