:root {
  --sky: #d9f3ff;
  --sky-strong: #addff4;
  --navy: #0d1c52;
  --navy-soft: #283b70;
  --coral: #dd506d;
  --coral-deep: #c63b5d;
  --pink: #f8becd;
  --lemon: #ffef59;
  --proof-cell: #c8efff;
  --white: #ffffff;
  --muted: #526384;
  --line: rgba(13, 28, 82, 0.16);
  --display: ui-rounded, "Arial Rounded MT Bold", "Nunito", "Trebuchet MS", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }

.site-header {
  width: 100%;
  min-height: 82px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, var(--sky) 0 52%, var(--white) 52%);
}
.wordmark {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.wordmark span { color: var(--coral); }
.header-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.header-link:hover { color: var(--coral-deep); }
.header-link:focus-visible, .wordmark:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}

.hero {
  width: 100%;
  min-height: 900px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  background: linear-gradient(90deg, var(--sky) 0 52%, var(--white) 52%);
}
.hero-content {
  min-width: 0;
  padding: clamp(56px, 6vw, 92px) clamp(44px, 6vw, 92px) 88px 0;
  align-self: center;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 850;
}
.hero h1, .chooser h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.01;
}
.hero h1 > span { display: block; }
.hero h1 .headline-accent { color: var(--coral); }
.hero-intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--navy);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.48;
}
.hero-visual {
  min-width: 0;
  margin: 0;
  padding: 48px 0 72px clamp(24px, 4vw, 64px);
  display: grid;
  place-items: center;
  align-self: stretch;
  background: var(--white);
}
.hero-visual img {
  display: block;
  width: min(100%, 590px);
  height: auto;
}

.waitlist {
  position: relative;
  max-width: 660px;
  margin-top: 42px;
  padding: 26px;
  border-radius: 24px;
  background: var(--coral);
  color: var(--navy);
}
.form-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.form-heading p {
  max-width: 570px;
  margin: 8px 0 0;
  color: #3b2856;
  font-size: 14px;
}
fieldset { margin: 22px 0 20px; padding: 0; border: 0; }
legend, .email-field > span {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}
.airport-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.airport-choice {
  min-width: 0;
  min-height: 50px;
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(13, 28, 82, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .22);
  cursor: pointer;
}
.airport-choice:hover { background: rgba(255, 255, 255, .38); }
.airport-choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-mark {
  width: 17px;
  height: 17px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.airport-choice input:checked + .choice-mark { background: var(--lemon); }
.airport-choice input:checked + .choice-mark::after {
  content: "✓";
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}
.airport-choice input:focus-visible + .choice-mark {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}
.airport-choice strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.2;
}
.airport-choice small {
  display: block;
  margin-top: 2px;
  color: #553154;
  font-size: 10px;
  letter-spacing: .03em;
  line-height: 1.2;
}
.form-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .52fr);
  gap: 10px;
  align-items: end;
}
.email-field { display: block; min-width: 0; }
.email-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 2px solid transparent;
  border-radius: 999px;
  outline: none;
  background: var(--navy);
  color: var(--white);
}
.email-field input::placeholder { color: #b7c5e9; }
.email-field input:focus { border-color: var(--lemon); }
.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
}
.waitlist button {
  min-height: 54px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--lemon);
  color: var(--navy);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}
.waitlist button:hover { background: #fff47f; }
.waitlist button:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.waitlist button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 0; margin: 13px 0 0; font-size: 13px; font-weight: 800; }
.form-status:empty { margin: 0; }
.form-status.is-success { color: #112e48; }
.form-status.is-error { color: #651b36; }
.consent { margin: 12px 0 0; color: #59334f; font-size: 11px; line-height: 1.45; }

.deal-log-section {
  padding: clamp(60px, 7vw, 96px) max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, var(--lemon) 0 25%, var(--pink) 25% 50%, var(--coral) 50% 100%);
}
.deal-log {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 26px;
  background: var(--navy);
  color: var(--white);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  column-gap: clamp(30px, 5vw, 72px);
  margin-bottom: 34px;
  align-items: end;
}
.section-heading > p {
  grid-column: 1;
  margin: 0 0 8px;
  color: var(--sky-strong);
  font-size: 13px;
  font-weight: 850;
}
.section-heading h2 {
  grid-column: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
.section-heading > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 620px;
  color: #d8e4ff;
  font-size: 15px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.deal-ticket {
  min-width: 0;
  padding: 18px;
  border-radius: 15px;
  background: var(--proof-cell);
  color: var(--navy);
}
.deal-ticket-topline,
.deal-ticket-main,
.deal-ticket-foot,
.route-code,
.deal-facts {
  display: flex;
  align-items: center;
}
.deal-ticket-topline,
.deal-ticket-main,
.deal-ticket-foot { justify-content: space-between; gap: 12px; }
.deal-seen {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.deal-number { color: var(--coral-deep); font-size: 11px; font-weight: 900; }
.deal-ticket-main { margin-top: 12px; align-items: flex-start; }
.deal-ticket h3 {
  min-width: 0;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.deal-price { flex: 0 0 auto; text-align: right; }
.deal-price strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}
.deal-price span { display: block; color: var(--muted); font-size: 9px; }
.route-code {
  margin: 14px 0 0;
  gap: 7px;
  font-size: 12px;
}
.route-code > span { color: var(--coral); }
.route-code small { margin-left: auto; color: var(--muted); font-size: 10px; }
.deal-facts {
  margin-top: 13px;
  flex-wrap: wrap;
  gap: 5px 11px;
  color: var(--muted);
  font-size: 10px;
}
.deal-facts span:first-child { color: var(--navy); font-weight: 850; }
.deal-ticket-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 28, 82, .16);
  font-size: 10px;
}
.deal-ticket-foot small { color: var(--muted); }
.deal-ticket-foot em { color: var(--coral-deep); font-style: normal; font-weight: 850; text-align: right; }
.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 15px;
  color: #d8e4ff;
}

.how-it-works {
  width: 100%;
  padding: clamp(84px, 10vw, 142px) max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
  background: var(--sky);
}
.how-it-works > h2 {
  max-width: 580px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.how-it-works ol { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--navy); }
.how-it-works li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.how-it-works li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}
.how-it-works h3 {
  margin: 5px 0 6px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
}
.how-it-works li p { margin: 0; color: var(--muted); font-size: 15px; }

footer {
  min-height: 132px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
  color: var(--white);
}
footer p { max-width: 560px; margin: 0; color: #bac9ea; font-size: 12px; text-align: right; }

.chooser-page { min-height: 100vh; display: grid; place-items: center; background: var(--sky); }
.chooser { width: min(calc(100% - 48px), 920px); padding: 72px 0; }
.chooser .eyebrow { color: var(--coral-deep); }
.chooser > p:not(.eyebrow) { max-width: 630px; color: var(--muted); font-size: 20px; }
.chooser nav { margin-top: 58px; border-top: 2px solid var(--navy); }
.chooser nav a {
  min-height: 108px;
  display: grid;
  grid-template-columns: .55fr 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.chooser nav a:hover strong, .chooser nav a:hover em { color: var(--coral-deep); }
.chooser nav span { color: var(--muted); }
.chooser nav strong { font-family: var(--display); font-size: clamp(25px, 4vw, 36px); }
.chooser nav em { color: var(--coral); font-size: 28px; font-style: normal; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); }
  .hero-content { padding-right: 44px; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .site-header { background: var(--sky); }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-inline: 24px;
    background: var(--sky);
  }
  .hero-content { padding: 58px 0 54px; }
  .hero-copy { max-width: 760px; }
  .waitlist { max-width: 700px; }
  .hero-visual {
    margin: 0 -24px;
    padding: 44px 24px 58px;
  }
  .hero-visual img { width: min(78vw, 560px); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > span { grid-column: 1; grid-row: auto; margin-top: 14px; }
  .how-it-works { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { min-height: 70px; padding-inline: 16px; }
  .wordmark { font-size: 19px; }
  .header-link { display: none; }
  .hero { padding-inline: 16px; }
  .hero-content { padding: 44px 0 42px; }
  .eyebrow { margin-bottom: 17px; font-size: 12px; }
  .hero h1, .chooser h1 { font-size: clamp(43px, 12.3vw, 57px); }
  .market-de .hero h1 { font-size: clamp(39px, 11.1vw, 52px); }
  .hero-intro { margin-top: 22px; font-size: 17px; }
  .waitlist { margin-top: 34px; padding: 20px 16px; border-radius: 20px; }
  .form-heading p { font-size: 13px; }
  .airport-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .airport-choice { min-height: 48px; padding: 6px 8px; }
  .airport-choice strong { font-size: 12px; }
  .form-action-row { grid-template-columns: 1fr; }
  .waitlist button { width: 100%; }
  .hero-visual { margin: 0 -16px; padding: 32px 18px 42px; }
  .hero-visual img { width: min(94vw, 520px); }
  .deal-log-section { padding: 36px 16px; background: linear-gradient(90deg, var(--lemon) 0 33%, var(--pink) 33% 66%, var(--coral) 66% 100%); }
  .deal-log { padding: 22px 16px; border-radius: 20px; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2 { font-size: 37px; }
  .section-heading > span { font-size: 13px; }
  .timeline { grid-template-columns: 1fr; gap: 10px; }
  .deal-ticket { padding: 16px; }
  .deal-ticket h3 { font-size: 25px; }
  .deal-price strong { font-size: 26px; }
  .how-it-works { padding: 76px 16px 84px; gap: 42px; }
  .how-it-works > h2 { font-size: 42px; }
  .how-it-works li { grid-template-columns: 46px 1fr; gap: 14px; }
  footer { min-height: 0; padding: 32px 16px; flex-direction: column; align-items: flex-start; }
  footer p { text-align: left; }
  .chooser { width: min(calc(100% - 32px), 920px); padding: 54px 0; }
  .chooser nav { margin-top: 44px; }
  .chooser nav a { min-height: 112px; grid-template-columns: 1fr auto; gap: 8px 18px; }
  .chooser nav a span, .chooser nav a strong { grid-column: 1; }
  .chooser nav a em { grid-column: 2; grid-row: 1 / span 2; }
}

@media (max-width: 390px) {
  .airport-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
