/* Gate IQ landing site — luxury invite signup
   Light-first (paper canvas) with dark-grey dark-mode support. */
@import url("colors_and_type.css");

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: #FFFFFF; color: var(--fg-1); font-family: var(--font-body); }
/* Dark mode: light grey body → dark text tokens */
[data-theme="dark"] body {
  background: #C4C8CE;
  --fg-1: #15233F;
  --fg-2: rgba(21, 35, 63, 0.66);
  --fg-3: rgba(21, 35, 63, 0.42);
  --hairline: rgba(21, 35, 63, 0.10);
  --hairline-strong: rgba(21, 35, 63, 0.18);
  --surface-1: #FFFFFF;
  --surface-2: rgba(21, 35, 63, 0.06);
}

/* Side nav stays dark → restore light text */
[data-theme="dark"] .side-nav {
  --fg-1: #F2ECDD;
  --fg-2: rgba(242, 236, 221, 0.66);
  --fg-3: rgba(242, 236, 221, 0.42);
  --hairline: rgba(242, 236, 221, 0.10);
}

/* Dark mode: button backgrounds stay dark and text stays light */
[data-theme="dark"] .side-nav__link {
  background: rgba(21,35,63,0.4);
  color: var(--ivory);
}

[data-theme="dark"] .side-nav__link:hover {
  background: rgba(21,35,63,0.6);
  color: var(--ivory);
}

[data-theme="dark"] .side-nav__step-label {
  color: var(--fg-2);
}

[data-theme="dark"] .side-nav__group-label {
  color: var(--fg-3);
}

/* Password gate stays dark → restore light text */
[data-theme="dark"] .password-gate {
  --fg-1: #F2ECDD;
  --fg-2: rgba(242, 236, 221, 0.66);
  --fg-3: rgba(242, 236, 221, 0.42);
}

/* Journey step number circles in dark mode */
[data-theme="dark"] .side-nav__step-dot {
  background: #8A8D92;
  color: #F2ECDD;
}


* { box-sizing: border-box; }

html.gateiq-locked body > *:not(#password-gate) {
  display: none !important;
}

/* Side nav + password gate keep the warm beige (dark: dark canvas) */
.side-nav { background: var(--bg); }
.password-gate { background: var(--bg); }

.site {
  margin: 0 auto;
  padding: 32px 56px 80px;
}

/* ── Password gate ─────────────────────────────────────── */
.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.password-gate__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.password-gate__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
}
.password-gate__row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.password-gate__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-gate__eye {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-3);
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 160ms ease-out;
}
.password-gate__eye:hover { color: var(--fg-1); }
.password-gate__input {
  background: var(--surface-1);
  color: var(--fg-1);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 14px 42px 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  width: 240px;
  letter-spacing: -0.005em;
  transition: border-color 160ms ease-out;
}
.password-gate__input:focus { border-color: var(--accent); }
.password-gate__input::placeholder { color: var(--fg-3); }
.password-gate__btn {
  background: var(--navy);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms ease-out;
}
.password-gate__btn:hover { background: var(--navy-soft); }
.password-gate__error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #c0392b;
  height: 18px;
  text-align: center;
}
.password-gate--hidden { display: none; }

/* ── Nav ───────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 80px;
}
.site-nav__brand {
  display: inline-flex;
  align-items: center;
}
.site-nav__cta {
  background: var(--navy);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: background 160ms ease-out, transform 120ms ease-out;
  display: inline-flex;
  align-items: center;
}
.site-nav__cta:hover { background: var(--navy-soft); }
.site-nav__cta:active { transform: scale(0.97); }

/* ── Timeline ──────────────────────────────────────────── */
.timeline {
  padding-bottom: 96px;
}
.timeline__header {
  margin-bottom: 64px;
}
.timeline__eyebrow {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 4px rgba(21,35,63,0.07);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--fg-1);
  margin: 0;
  white-space: nowrap;
}
.tl-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-step {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--hairline);
}
.tl-step:last-child { border-bottom: 1px solid var(--hairline); }
.tl-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 2px 6px rgba(21,35,63,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  align-self: center;
}
.tl-step__copy {}
.tl-step__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.tl-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg-1);
  margin: 0 0 12px;
}
.tl-step__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 400px;
}
.tl-img-placeholder {
  background: var(--surface-1);
  border-radius: 24px;
  aspect-ratio: 4/3;
  box-shadow: inset 0 0 0 1px var(--hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tl-img-placeholder__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(184,153,104,0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.tl-img-placeholder__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── Bottom signup (CTA) ───────────────────────────────── */
.signup-bottom {
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.signup-bottom__eyebrow {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 4px rgba(21,35,63,0.07);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.signup-bottom__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--fg-1);
  margin: 0 0 48px;
}
.signup-bottom .signup {
  max-width: 560px;
  width: 100%;
  text-align: left;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 96px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 4px rgba(21,35,63,0.07);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 108px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--fg-1);
  white-space: nowrap;
}
.hero__title .accent { color: var(--accent); }
.hero__sub {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 520px;
  margin-top: 28px;
}

/* ── Signup card — sits on the page, lifts via surface-grey ─── */
.signup {
  background: var(--surface-grey);
  color: var(--fg-on-grey);
  border-radius: 32px;
  padding: 36px 36px 32px;
}
.signup__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-on-grey-2);
}
.signup__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  margin-top: 6px;
  line-height: 1.05;
}
.signup__row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.signup__input {
  flex: 1;
  background: var(--cream);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  letter-spacing: -0.005em;
}
.signup__input::placeholder { color: rgba(21, 35, 63, 0.45); }
.signup__cta {
  background: var(--navy);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: background 160ms ease-out, transform 120ms ease-out;
}
.signup__cta:hover { background: var(--navy-soft); }
.signup__cta:active { transform: scale(0.97); }

.signup__fine {
  font-family: var(--font-body);
  font-size: 12.5px;
  margin-top: 18px;
  color: var(--fg-on-grey-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.signup__fine .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.signup__strip {
  border-top: 1px solid rgba(21,35,63,0.12);
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-on-grey-2);
}
.signup__strip strong { color: var(--navy); font-weight: 600; }

/* ── Signup extra fields ───────────────────────────────── */
.signup__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.signup__row2 {
  display: flex;
  gap: 10px;
}
.signup__input--half {
  flex: 1;
}
.signup__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.signup__select option { background: var(--cream); color: var(--navy); }

/* ── Airport autocomplete ──────────────────────────────── */
.airport-wrap {
  flex: 1;
  position: relative;
}
.airport-wrap .signup__input--half {
  width: 100%;
}
.airport-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21,35,63,0.14);
  z-index: 100;
}
.airport-dropdown--open { display: block; }
.airport-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  cursor: pointer;
  transition: background 100ms ease-out;
}
.airport-option:not(:last-child) {
  border-bottom: 1px solid rgba(21,35,63,0.07);
}
.airport-option--active,
.airport-option:hover { background: rgba(184,153,104,0.14); }
.airport-option__code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  min-width: 34px;
}
.airport-option__name {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(21,35,63,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Pillars ───────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 96px;
}
.pillar {
  background: var(--surface-1);
  border-radius: 28px;
  padding: 28px 26px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(184, 153, 104, 0.14);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg-1);
  margin-top: 18px;
}
.pillar__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  margin-top: 10px;
}

/* ── Promise band ──────────────────────────────────────── */
.promise {
  background: var(--sky);
  color: var(--navy);
  border-radius: 36px;
  padding: 56px 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 96px;
}
.promise__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
  white-space: nowrap;
}
.promise__label--accent {
  color: #4A90E2;
  opacity: 1;
  font-weight: 500;
}
.promise__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.promise__attr {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 18px;
  opacity: 0.7;
}
.promise__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 160px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--brass);
}

/* ── Black membership ────────────────────────────────── */
.black {
  background: var(--surface-grey);
  color: var(--fg-on-grey);
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}
.black__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,35,63,0.12);
  color: var(--navy);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.black__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 16px;
  color: var(--fg-on-grey);
}
.black__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.015em;
  margin-top: 14px;
}
.black__price small { color: var(--fg-on-grey-2); font-weight: 500; font-size: 14px; letter-spacing: 0; }
.black__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--fg-on-grey-2);
  font-family: var(--font-body);
  font-size: 14px;
}
.black__list li { display: flex; gap: 12px; align-items: baseline; }
.black__list li::before {
  content: "—";
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.black__card {
  position: relative;
  background: linear-gradient(135deg, #0E1830 0%, #1E2D4A 100%);
  border-radius: 24px;
  aspect-ratio: 1.586 / 1;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ivory);
  overflow: hidden;
}
.black__card-chip { width: 38px; height: 28px; border-radius: 5px; background: var(--accent); }
.black__card-name { font-family: var(--font-display); font-weight: 700; font-size: 36px; letter-spacing: -0.025em; line-height: 0.95; }
.black__card-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242, 236, 221, 0.55); }
.black__card-glyph { position: absolute; right: -30px; bottom: -36px; font-family: var(--font-deco); font-weight: 400; font-size: 220px; letter-spacing: -0.06em; color: rgba(184, 153, 104, 0.08); pointer-events: none; }

/* ── Footer ────────────────────────────────────────────── */
#site-footer {
  margin: 64px -56px -80px;
  background: #0E1830;
}
.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 56px 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 236, 221, 0.45);
  gap: 0;
}
.foot__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.foot__line {
  color: rgba(242, 236, 221, 0.45);
}
.foot__divider {
  color: var(--brass);
  margin: 12px 0;
}
.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}

/* ── Concierge AI spotlight ─────────────────────────────── */
.concierge {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 96px;
}
.concierge__eyebrow {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 4px rgba(21,35,63,0.07);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.concierge__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin: 0 0 20px;
}
.concierge__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.concierge__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--fg-2);
  font-family: var(--font-body);
  font-size: 14px;
}
.concierge__list li { display: flex; gap: 12px; align-items: baseline; }
.concierge__list li::before {
  content: "—";
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

/* Chat mockup */
.concierge__chat {
  background: var(--surface-dark);
  border-radius: 28px;
  overflow: hidden;
}
.chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(242,236,221,0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,236,221,0.5);
}
.chat__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.chat__flight {
  margin-left: auto;
  color: rgba(242,236,221,0.35);
}
.chat__log {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat__event {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(184,153,104,0.08);
  border-radius: 10px;
  border-left: 2px solid var(--accent);
}
.chat__event-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.chat__event span:last-child {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(242,236,221,0.7);
}
.chat__bubble {
  padding: 14px 16px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  max-width: 92%;
}
.chat__bubble--ai {
  background: var(--surface-1);
  color: var(--fg-1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
/* Chat always sits on dark navy — restore light tokens regardless of mode */
[data-theme="dark"] .concierge__chat {
  --fg-1: #F2ECDD;
  --fg-2: rgba(242, 236, 221, 0.66);
  --fg-3: rgba(242, 236, 221, 0.42);
}
[data-theme="dark"] .chat__bubble--ai {
  background: #2E2E33;
  color: #F2ECDD;
}
.chat__bubble--user {
  background: var(--accent);
  color: var(--navy);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat__options {
  margin: 10px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.chat__options li { color: var(--fg-2); }
.chat__options strong { color: var(--fg-1); font-weight: 600; }

/* ── Nashville pilot band ────────────────────────────────── */
.pilot {
  position: relative;
  min-height: 72vh;
  background-image: url('Nashville-Tennessee-1244x700.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  margin: 0 -56px 96px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.pilot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 24, 48, 0.88) 0%,
    rgba(14, 24, 48, 0.45) 45%,
    rgba(14, 24, 48, 0.10) 100%
  );
  pointer-events: none;
}
.pilot__inner {
  position: relative;
  z-index: 1;
  padding: 56px 72px;
  max-width: 700px;
}
.pilot__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pilot__city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #F2ECDD;
  margin-bottom: 20px;
}
.pilot__airport {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 236, 221, 0.55);
  margin-bottom: 20px;
}
.pilot__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(242, 236, 221, 0.78);
  max-width: 480px;
  margin: 0;
}

/* ── Footer links ──────────────────────────────────────── */
.foot__link {
  color: rgba(242, 236, 221, 0.45);
  text-decoration: none;
}
.foot__link:hover { color: rgba(242, 236, 221, 0.85); }
.foot__link--credit {
  color: var(--accent);
  text-decoration: none;
}
.foot__link--credit:hover { color: var(--brass-light); }

/* ── Cookie consent banner ─────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 24px 24px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 280ms ease-out, transform 280ms ease-out;
}
.cookie-banner--visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner--dismissed {
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 200ms ease-in, transform 200ms ease-in;
}
.cookie-banner--hidden { display: none; }

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
}
.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-on-dark-2);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.cookie-banner__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.cookie-banner__policy {
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.cookie-banner__policy:hover { text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 160ms ease-out, color 160ms ease-out, transform 120ms ease-out;
}
.cookie-banner__btn:active { transform: scale(0.97); }
.cookie-banner__btn--decline {
  background: rgba(242,236,221,0.08);
  color: var(--fg-on-dark-2);
}
.cookie-banner__btn--decline:hover {
  background: rgba(242,236,221,0.14);
  color: var(--fg-on-dark);
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--navy);
}
.cookie-banner__btn--accept:hover { background: var(--brass-light); }

/* ── Side nav ──────────────────────────────────────────── */
.side-nav-toggle {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1A1A1C;
  color: var(--brass);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(21,35,63,0.28);
  transition: background 160ms ease-out, transform 120ms ease-out;
}
.side-nav-toggle:hover { background: #2A2A2C; }
.side-nav-toggle:active { transform: scale(0.94); }

.side-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,35,63,0.45);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease-out;
  backdrop-filter: blur(2px);
}
.side-nav-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--bg);
  z-index: 260;
  transform: translateX(-100%);
  transition: transform 280ms cubic-bezier(0.32, 0, 0.15, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--hairline);
  padding: 28px 0 40px;
}
.side-nav--open {
  transform: translateX(0);
}

.side-nav__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 8px;
}
.side-nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.025em;
  color: var(--fg-1);
}
.side-nav__brand .iq { color: var(--accent); }
.side-nav__brand .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  margin-left: 3px; transform: translateY(-10px);
}
.side-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-3);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 160ms;
}
.side-nav__close:hover { color: var(--fg-1); }

.side-nav__group {
  padding: 16px 0 4px;
}
.side-nav__group-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 0 24px 10px;
}

/* Journey track with connecting line */
.side-nav__track {
  position: relative;
  padding: 0 24px;
}
.side-nav__track::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--hairline);
}

.side-nav__step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.side-nav__step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 2px 6px rgba(21,35,63,0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0;
  z-index: 1;
  transition: background 180ms, color 180ms, box-shadow 180ms, border-color 180ms;
}
.side-nav__step-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.3;
  transition: color 180ms;
}
.side-nav__step:hover .side-nav__step-dot {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(184,153,104,0.28);
}
.side-nav__step:hover .side-nav__step-label { color: var(--fg-1); }

.side-nav__step--active .side-nav__step-dot {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(184,153,104,0.28);
}
.side-nav__step--active .side-nav__step-label {
  color: var(--fg-1);
  font-weight: 500;
}

/* Section links */
.side-nav__links {
  padding: 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.side-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ivory);
  background: rgba(21,35,63,0.4);
  box-shadow: none;
  transition: background 140ms, color 140ms;
}
.side-nav__link:hover {
  background: rgba(21,35,63,0.6);
  color: var(--ivory);
}

/* Light mode: lighter button backgrounds */
.side-nav__link {
  background: rgba(21,35,63,0.15);
}
.side-nav__link:hover {
  background: rgba(21,35,63,0.25);
}
.side-nav__link--active {
  background: rgba(184,153,104,0.1);
  color: var(--accent);
  font-weight: 500;
}
.side-nav__link--cta {
  background: var(--navy);
  color: var(--ivory);
  font-weight: 600;
  margin-top: 8px;
  justify-content: center;
  border-radius: 999px;
  transition: all 160ms ease-out, box-shadow 160ms ease-out;
  position: relative;
}
.side-nav__link--cta:hover {
  background: var(--navy-soft);
  color: var(--ivory);
}
.side-nav__link--cta:active {
  transform: translateY(2px);
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.3);
}
.side-nav__link--cta.side-nav__link--active {
  background: var(--accent);
  color: var(--navy);
}

/* Light mode text colors for journey and explore menu */
.side-nav__step-label {
  color: #15233F;
}

.side-nav__group-label {
  color: #15233F;
}

.side-nav__link {
  color: #15233F;
}

/* Light mode: CTA button keeps light text */
.side-nav__link--cta {
  color: var(--ivory) !important;
}

.theme-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brass) !important;
  color: var(--navy) !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184,153,104,0.3);
  transition: background 160ms ease-out, box-shadow 160ms ease-out, color 160ms ease-out;
}
.theme-toggle:hover {
  background: var(--brass-light) !important;
  box-shadow: 0 6px 28px rgba(184,153,104,0.4);
}
.theme-toggle:active {
  transform: scale(0.94);
}
.theme-toggle__icon {
  width: 20px;
  height: 20px;
}

html[data-theme="dark"] .theme-toggle {
  color: #FFFFFF !important;
}

html[data-theme="light"] .theme-toggle {
  color: var(--navy) !important;
}

/* Desktop: always-visible sidebar, collapsible via X */
@media (min-width: 1100px) {
  .side-nav-toggle { display: none; }
  .side-nav-toggle--show { display: flex !important; }
  .side-nav-overlay { display: none; }
  .side-nav {
    transform: translateX(0);
    width: 220px;
  }
  .side-nav--collapsed {
    transform: translateX(-100%);
  }
  body {
    padding-left: 220px;
    transition: padding-left 280ms cubic-bezier(0.32, 0, 0.15, 1);
  }
  body.nav-collapsed {
    padding-left: 0;
  }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  #site-footer { margin: 64px -32px -64px; }
  .foot { padding: 32px 32px 100px; }
  .site { padding: 24px 32px 64px; }
  .hero, .black, .concierge { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 72px; }
  .concierge__title { font-size: 38px; }
  .promise { grid-template-columns: 1fr; padding: 40px 40px 44px; }
  .promise__quote { font-size: 40px; }
  .promise__num { font-size: 100px; }
  .black { padding: 36px; }
  .black__title { font-size: 44px; }
  .pilot { margin: 0 -32px 64px; background-attachment: scroll; }
  .pilot__city { font-size: 52px; }
  .pilot__inner { padding: 40px 44px; }
  .signup__row2 { flex-direction: column; }
  .tl-step { grid-template-columns: 40px 1fr; gap: 24px; }
  .tl-img-placeholder { display: none; }
  .timeline__title { font-size: 40px; }
  .signup-bottom__title { font-size: 40px; }
}

@media (max-width: 640px) {
  #site-footer { margin: 64px -20px -56px; }
  .foot { padding: 28px 20px 100px; flex-direction: column; gap: 20px; }
  .site { padding: 20px 20px 56px; }
  .site-nav { padding-bottom: 40px; }
  .hero__title { font-size: 56px; }
  .hero__sub { font-size: 16px; }
  .hero { gap: 40px; padding-bottom: 72px; }
  .pillars { grid-template-columns: 1fr; gap: 12px; padding-bottom: 72px; }
  .concierge { gap: 40px; padding-bottom: 72px; }
  .concierge__title { font-size: 32px; }
  .promise { padding: 32px 28px 36px; gap: 16px; }
  .promise__quote { font-size: 30px; }
  .promise__num { font-size: 72px; }
  .black { padding: 28px 24px; gap: 36px; margin-bottom: 0; }
  .black__title { font-size: 36px; }
  .pilot { margin: 0 -20px 72px; min-height: 55vh; background-attachment: scroll; }
  .pilot__city { font-size: 40px; }
  .pilot__inner { padding: 32px 28px; }
  .signup { border-radius: 24px; padding: 28px 24px 24px; }
  .cookie-banner { padding: 0 12px 12px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
  .tl-step { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .tl-step__num { padding-top: 0; }
  .timeline__title { font-size: 32px; }
  .signup-bottom__title { font-size: 32px; }
  .password-gate__row { flex-direction: column; width: 100%; padding: 0 24px; }
  .password-gate__input-wrap { width: 100%; }
  .password-gate__input { width: 100%; }
  .password-gate__btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 48px; }
  .signup__title { font-size: 26px; }
  .promise__quote { font-size: 26px; }
  .tl-step__title { font-size: 26px; }
}
