:root {
  --bg: #f4f7f5;
  --ink: #171717;
  --muted: #5f625e;
  --line: rgba(23, 23, 23, .14);
  --surface: #ffffff;
  --surface-2: #e7edf0;
  --accent: #0f766e;
  --accent-2: #164e63;
  --gold: #c08a2c;
  --coral: #d95f43;
  --shadow: 0 24px 70px rgba(23, 23, 23, .16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.hero {
  background: #eef4f2;
  min-height: 92vh;
  overflow: hidden;
  padding: 22px clamp(18px, 4vw, 64px) 72px;
  position: relative;
}
.hero:before {
  background: #cbd9d5;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 74px;
}

.site-nav, .legal-nav, .site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
}

.wordmark {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}
.wordmark span { color: var(--accent); }
.nav-links, .site-footer div {
  align-items: center;
  display: flex;
  gap: 22px;
}
.nav-links a, .site-footer a, .legal-nav a:not(.wordmark) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero-stage {
  margin: 72px auto 0;
  max-width: 1160px;
  min-height: 640px;
  position: relative;
}
.hero-copy {
  max-width: 760px;
  padding-top: 78px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1, h2 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}
h1 {
  font-size: clamp(54px, 8vw, 108px);
  max-width: 780px;
}
h2 { font-size: clamp(32px, 4vw, 58px); }
.lead {
  color: #363a36;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  margin: 26px 0 28px;
  max-width: 640px;
}

.waitlist-inline {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(220px, 360px) auto;
  max-width: 560px;
}
label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}
input, select {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}
button {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
}
button:hover { background: var(--accent); border-color: var(--accent); }
.form-status {
  color: var(--accent-2);
  font-weight: 750;
  min-height: 22px;
}
.hp {
  height: 0;
  left: -9999px;
  opacity: 0;
  position: absolute;
  width: 0;
}

.ops-visual {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 520px;
  overflow: hidden;
  padding: 18px;
  position: absolute;
  right: 0;
  top: 30px;
  transform: rotate(-2deg);
  width: min(46vw, 520px);
  z-index: 1;
}
.ops-visual:before {
  background: rgba(15,118,110,.12);
  border: 1px solid rgba(15,118,110,.12);
  border-radius: 8px;
  content: "";
  inset: 34px -44px -38px 48px;
  position: absolute;
  z-index: -1;
}
.ticket-card {
  align-items: start;
  background: #101716;
  border-radius: 8px;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 18px;
}
.label {
  color: #a7c8c3;
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ticket-card strong { font-size: 24px; }
.pill {
  background: rgba(15,118,110,.22);
  border: 1px solid rgba(94,234,212,.34);
  border-radius: 999px;
  color: #99f6e4;
  font-size: 12px;
  font-weight: 850;
  padding: 6px 10px;
}
.route {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  padding: 34px 6px 28px;
}
.route span { font-weight: 900; }
.route-line {
  background: linear-gradient(90deg, var(--accent), var(--gold));
  height: 2px;
  position: relative;
}
.route-line:before, .route-line:after, .route-line i {
  background: var(--surface);
  border: 3px solid var(--accent);
  border-radius: 50%;
  content: "";
  height: 14px;
  position: absolute;
  top: -6px;
  width: 14px;
}
.route-line:before { left: 0; }
.route-line:after { border-color: var(--coral); right: 0; }
.route-line i {
  background: var(--ink);
  border-color: var(--ink);
  left: 52%;
}
.ops-list {
  display: grid;
  gap: 8px;
}
.ops-list div {
  align-items: center;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}
.ops-list span { color: var(--muted); font-weight: 700; }
.ops-list b { font-size: 13px; }

main {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 clamp(18px, 4vw, 64px) 72px;
}
.positioning {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 0 0 48px;
  padding: 34px 0;
}
.positioning p {
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.18;
  margin: 0;
  max-width: 980px;
}
.features {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 74px;
}
.features article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 22px;
}
.icon {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 54px;
}
.features h2 {
  font-size: 22px;
  line-height: 1.1;
}
.features p, .waitlist p, .legal-content p, .legal-content li {
  color: var(--muted);
  line-height: 1.65;
}
.waitlist {
  align-items: start;
  background: #111716;
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  padding: clamp(24px, 5vw, 54px);
}
.waitlist p { color: #cbd5d1; font-size: 17px; }
.waitlist-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 18px;
}
.waitlist-card label { color: #dfe8e5; }
.waitlist-card input, .waitlist-card select { background: rgba(255,255,255,.94); }
.consent {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}
.consent input {
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 76px;
  padding: 24px clamp(18px, 4vw, 64px) 34px;
}

.legal-page { background: var(--surface); }
.legal-nav {
  border-bottom: 1px solid var(--line);
  padding: 22px clamp(18px, 4vw, 64px);
}
.legal-content {
  margin: 0 auto;
  max-width: 860px;
  padding: 54px clamp(18px, 4vw, 64px) 92px;
}
.legal-content h1 { font-size: clamp(42px, 7vw, 72px); margin-bottom: 34px; }
.legal-content h2 { font-size: 24px; margin: 30px 0 10px; }
.legal-content a { color: var(--accent); text-decoration: underline; }

@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-stage {
    display: grid;
    gap: 30px;
    min-height: auto;
  }
  .hero-copy { padding-top: 28px; }
  .ops-visual {
    max-width: 560px;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }
  .waitlist { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .site-nav, .site-footer, .legal-nav { align-items: flex-start; gap: 18px; }
  .site-nav, .site-footer { flex-direction: column; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  .hero-stage { margin-top: 46px; }
  .waitlist-inline { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .features article { min-height: auto; }
  .icon { margin-bottom: 28px; }
  .ticket-card { display: grid; gap: 14px; }
}
