@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --cloud: #ffffff;
  --sky: #10223d;
  --surface: #193253;
  --surface-raised: #243f63;
  --sky-deep: #294976;
  --blue: #aac8ff;
  --blue-hover: #d3e2ff;
  --action: #345cda;
  --action-hover: #416ce7;
  --ink: #f5f8ff;
  --muted: #b3c3db;
  --line: #345173;
  --control-line: #7893b6;
  --mint: #183e38;
  --green: #a0e5c4;
  --lavender: #c8baff;
  --error: #ffb1be;
  --display: "Nunito", "Avenir Next", sans-serif;
  --body: "Nunito Sans", "Avenir Next", sans-serif;
  --content: 1160px;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--sky);
  color: var(--ink);
  font: 400 17px/1.6 var(--body);
}
img,
svg {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--blue);
  text-underline-offset: 4px;
}
a:hover {
  color: var(--blue-hover);
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
::selection {
  background: var(--blue);
  color: var(--sky);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
}
h1 {
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wrap {
  width: min(var(--content), calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--surface);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-head {
  width: min(var(--content), calc(100% - 80px));
  margin: auto;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
}
.brand:hover {
  color: var(--ink);
}
.brand-icon {
  width: 54px;
  height: 44px;
  object-fit: contain;
}
.brand-name {
  font: 900 29px/1 var(--display);
  letter-spacing: -0.06em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
}
.nav a:hover {
  color: var(--blue);
}
.nav .nav-cta {
  border: 1px solid var(--control-line);
  padding: 10px 17px;
  border-radius: 100px;
}
.nav .nav-cta:hover {
  background: var(--surface);
}
.btn {
  border: 1px solid transparent;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 26px;
  min-height: 54px;
  background: var(--cloud);
  color: var(--sky);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.16s ease,
    box-shadow 0.16s ease;
}
.btn:hover {
  background: var(--blue-hover);
  color: var(--sky);
  box-shadow: 0 5px 15px #07152955;
}
.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
.ghost {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--control-line);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.ghost:hover {
  background: var(--sky-deep);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 36px;
  align-items: center;
  padding-block: 54px 76px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
.kicker .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.lede {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 26em;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.price-note {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.price-note strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin: 18px 0 0;
}
.hero-footnote .icon {
  width: 17px;
  height: 17px;
}
.hero-art {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  top: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -1;
}
.hero-art::after {
  content: "";
  position: absolute;
  width: 98%;
  aspect-ratio: 1;
  top: -7%;
  border: 1px dashed var(--line);
  border-radius: 50%;
  z-index: -1;
}
.hero-mascot {
  position: relative;
  width: 100%;
  max-width: 530px;
  filter: drop-shadow(0 22px 18px #07152955);
  animation: arrive 0.8s ease both;
}
.sample-text {
  position: absolute;
  left: 3%;
  bottom: 0;
  width: 88%;
  max-width: 410px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px 20px 20px 5px;
  padding: 18px 20px;
  box-shadow: 0 12px 36px #07152933;
}
.sample-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
}
.sample-head .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.sample-head span {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}
.sample-text p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}
.sample-text strong {
  font-weight: 800;
}
.how {
  border-top: 1px solid var(--line);
  padding-block: 44px 52px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading p {
  color: var(--muted);
  font-size: 15px;
  max-width: 355px;
  margin-bottom: 3px;
}
.destination-heading-title {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.destination-heading-title h2 {
  max-width: 390px;
}
.destination-plane {
  width: 150px;
  flex: 0 0 150px;
}
.watch-route {
  display: block;
  width: min(100%, 320px);
  margin: 28px 0 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface);
  color: var(--blue);
}
.step h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.destinations-section {
  background: var(--surface);
  padding-block: 64px;
}
.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.city {
  background: #142b49;
  border-radius: 20px;
  padding: 22px 24px;
}
.city-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.city h3 {
  font-size: 24px;
  margin: 0;
}
.city .route {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}
.city .route .icon {
  width: 13px;
  height: 13px;
  margin-inline: 3px;
}
.city .product {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 7px;
}
.city .product .icon {
  width: 16px;
  height: 16px;
}
.city .fare {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.3;
}
.city .fare span {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.city .cash {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}
.examples-note {
  color: var(--muted);
  font-size: 12px;
  margin: 20px 0 0;
}
.watch-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 66px;
  align-items: start;
  padding-block: 80px;
}
.watch-intro {
  padding-top: 24px;
}
.watch-intro h2 {
  font-size: clamp(36px, 3.5vw, 48px);
  margin-bottom: 18px;
}
.watch-intro > p {
  color: var(--muted);
  max-width: 25em;
}
.watch-price {
  font: 900 62px/1 var(--display);
  letter-spacing: -0.05em;
  margin: 34px 0 22px;
}
.watch-price span {
  font: 500 16px var(--body);
  letter-spacing: 0;
  color: var(--muted);
}
.watch-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 15px;
}
.watch-perks li {
  display: flex;
  gap: 9px;
  align-items: center;
}
.watch-perks .icon {
  width: 19px;
  height: 19px;
  color: var(--blue);
}
.watch-mascot {
  width: 130px;
  margin-top: 34px;
}
.slip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 35px #07152933;
}
.slip h3 {
  margin-bottom: 4px;
}
.form-intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 25px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.field {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
  min-width: 0;
}

.field-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 9px;
  padding: 0;
}
.field-name span {
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.field .field-sub {
  margin: 0 0 12px;
}
.field .field-sub:last-child {
  margin-bottom: 0;
}
.field-sub .field-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"] {
  width: 100%;
  color: var(--ink);
  background: var(--sky);
  border: 1px solid var(--control-line);
  border-radius: 12px;
  min-height: 48px;
  padding: 11px 14px;
  font-size: 16px;
}
input::placeholder {
  color: #a8b9d0;
  opacity: 1;
}
input:focus {
  background: var(--surface);
}
.airport-input {
  max-width: 190px;
  text-transform: uppercase;
}
.field-help {
  color: var(--muted);
  font-size: 12px;
  margin: 7px 0 0;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip,
.cabin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  border: 1px solid var(--control-line);
  border-radius: 100px;
  padding: 8px 13px;
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.12s ease,
    border-color 0.12s ease;
}
.chip:hover,
.cabin:hover {
  border-color: var(--blue);
}
.chip[aria-pressed="true"],
.cabin[aria-pressed="true"] {
  background: var(--sky-deep);
  border-color: var(--blue);
  color: var(--blue);
}
.chip[aria-pressed="true"]::before,
.cabin[aria-pressed="true"]::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
  margin-right: 2px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.slip .actions .btn {
  width: 100%;
}
.hint {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
}
.slip .hint {
  text-align: center;
}
.err {
  color: var(--error);
  font-size: 14px;
  margin: 14px 0 0;
}
.err:empty {
  display: none;
}
.err[data-state="success"] {
  color: var(--green);
}
.site-foot {
  border-top: 1px solid var(--line);
  padding-block: 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.footer-top .brand-name {
  font-size: 24px;
}
.footer-top .brand-icon {
  width: 42px;
  height: 34px;
}
.footer-top .nav {
  font-size: 13px;
  gap: 24px;
}
.legal {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  max-width: 850px;
  margin-bottom: 0;
}
.account,
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 28px 90px;
}
.account h1,
.legal-page h1 {
  font-size: clamp(36px, 5vw, 52px);
  overflow-wrap: anywhere;
}
.account-mascot {
  display: block;
  width: 100px;
  margin-bottom: 22px;
}
.account .kicker {
  margin-bottom: 12px;
}
.account .lede {
  font-size: 17px;
}
.account .grid {
  grid-template-columns: 125px 1fr;
  align-items: center;
}
.account .grid .field-name {
  margin: 0;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  margin: 22px 0;
}
.panel h2 {
  font-size: 24px;
  margin: 0 0 18px;
}
.panel input {
  max-width: 360px;
}
.panel #code-wrap {
  margin-top: 22px;
}
.alerts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.alerts li {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 15px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.alerts li:first-child {
  border-top: 0;
}
.alerts .empty-alert {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 0;
}
.empty-alert img {
  width: 64px;
}
.empty-alert .empty-globe {
  width: 96px;
  flex: 0 0 96px;
}
.empty-alert strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}
.legal-page p {
  color: var(--muted);
}
.legal-page h1 {
  margin-bottom: 32px;
}
.brand-page {
  padding-block: 50px 80px;
}
.brand-page > .lede {
  max-width: 620px;
}
.brand-section {
  margin-top: 56px;
}
.brand-section > h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.brand-previews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.brand-preview {
  min-width: 0;
  min-height: 260px;
  border-radius: 24px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 24px;
}
.brand-preview > img {
  max-width: min(100%, 320px);
  max-height: 190px;
  object-fit: contain;
}
.brand-preview.is-dark {
  background: var(--sky);
  border: 1px solid var(--line);
}
.brand-preview.is-light {
  background: #edf5ff;
  color: #172c4d;
}
.brand-preview.is-light a {
  color: #345cda;
}
.brand-preview a {
  font-size: 13px;
}
.illustration-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.illustration-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--sky);
  text-align: center;
}
.illustration-preview > img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}
.illustration-preview strong,
.illustration-preview span {
  display: block;
}
.illustration-preview span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.illustration-downloads {
  display: flex;
  gap: 24px;
  margin-top: auto;
}
.illustration-downloads a {
  display: grid;
  place-items: center;
  min-height: 44px;
  font-size: 14px;
}
@media (max-width: 720px) {
  .destination-heading-title {
    gap: 12px;
    width: 100%;
    justify-content: space-between;
  }
  .destination-plane {
    width: 96px;
    flex-basis: 96px;
  }
  .watch-route {
    width: 240px;
  }
  .illustration-gallery {
    grid-template-columns: 1fr;
  }
}
.swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.swatch {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  font-size: 13px;
}
.swatch-color {
  height: 90px;
}
.swatch p {
  margin: 12px;
}
.swatch strong {
  display: block;
}
.icon-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-radius: 16px;
  padding: 24px 10px 16px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.icon-item .icon {
  color: var(--blue);
  width: 28px;
  height: 28px;
}
.asset-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block: 26px;
}
.social-preview {
  width: 100%;
  max-width: 800px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(12px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
@media (min-width: 1400px) {
  .hero {
    padding-block: 68px 90px;
  }
}
@media (max-width: 1000px) {
  .wrap,
  .site-head {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 20px;
    padding-top: 38px;
  }
  .hero-art {
    min-height: 410px;
  }
  .sample-text {
    width: 96%;
    left: 0;
  }
  .hero h1 {
    font-size: 64px;
  }
  .steps {
    gap: 22px;
  }
  .step {
    grid-template-columns: 1fr;
  }
  .city {
    padding: 20px;
  }
  .city-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .watch-section {
    gap: 32px;
    grid-template-columns: 0.75fr 1.25fr;
  }
  .slip {
    padding: 24px;
  }
  .swatches {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .site-head {
    min-height: 84px;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-icon {
    width: 46px;
    height: 38px;
  }
  .nav {
    gap: 16px;
    font-size: 13px;
  }
  .nav .desktop-link {
    display: none;
  }
  .nav .nav-cta {
    padding: 8px 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 32px 48px;
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(54px, 10.5vw, 76px);
    max-width: 570px;
  }
  .hero .lede {
    max-width: 31em;
    font-size: 18px;
  }
  .kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }
  .hero-art {
    width: min(470px, 100%);
    margin: 0 auto;
    min-height: 390px;
    padding-bottom: 88px;
  }
  .hero-mascot {
    width: 92%;
  }
  .sample-text {
    width: 88%;
    left: 2%;
  }
  .how {
    padding-block: 34px 40px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .section-heading h2 {
    max-width: 450px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .step {
    grid-template-columns: 44px 1fr;
  }
  .destinations-section {
    padding-block: 44px;
  }
  .cities {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .city {
    padding: 18px;
    border-radius: 16px;
  }
  .city h3 {
    font-size: 22px;
  }
  .city .fare {
    font-size: 26px;
  }
  .city .fare span {
    display: block;
    margin-top: 2px;
  }
  .city .product {
    align-items: flex-start;
    font-size: 12px;
    min-height: 38px;
  }
  .watch-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 46px;
  }
  .watch-intro {
    padding-top: 0;
  }
  .watch-intro h2 {
    max-width: 400px;
  }
  .watch-intro > p {
    max-width: 30em;
  }
  .watch-price {
    margin: 22px 0;
    font-size: 52px;
  }
  .watch-mascot {
    display: none;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .footer-top .nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  .account,
  .legal-page {
    padding: 30px 24px 64px;
  }
  .account .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .account .grid .field-name:not(:first-child) {
    margin-top: 8px;
  }
  .panel {
    padding: 22px;
  }
  .brand-previews {
    grid-template-columns: 1fr;
  }
  .icon-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 380px) {
  .wrap,
  .site-head {
    width: calc(100% - 32px);
  }
  .site-head .brand {
    gap: 5px;
  }
  .site-head .brand-name {
    font-size: 23px;
  }
  .site-head .brand-icon {
    width: 39px;
  }
  .site-head .nav {
    gap: 12px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-art {
    min-height: 330px;
  }
  .sample-text {
    width: 96%;
    font-size: 14px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .btn {
    padding-inline: 20px;
  }
  .city {
    padding: 14px;
  }
  .city h3 {
    font-size: 20px;
  }
  .slip {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.channel-help {
  margin: 0 0 14px;
}
.channel-label {
  margin-top: 18px;
}
.watch-preview {
  border-radius: 16px 16px 16px 4px;
  padding: 18px;
  margin-top: 22px;
  background: var(--sky);
}
.watch-preview p {
  margin: 0;
  font-size: 14px;
}

.airline-logo-area {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  margin: 4px 0 18px;
}
.airline-logo {
  display: block;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
.airline-logo-delta {
  width: 112px;
  height: 22px;
}
.airline-logo-virgin-atlantic {
  width: 156px;
  height: 32px;
}
.airline-logo-korean-air {
  width: 156px;
  height: 28px;
}
.airline-logo-klm {
  width: 54px;
  height: 32px;
}

/* Shared feedback for loading, confirmations, and completed actions. */
.action-feedback {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  margin-top: 18px;
  padding: 6px 16px 6px 8px;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 4px;
}
.action-feedback img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}
.action-feedback p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.action-feedback[data-state="success"] {
  background: var(--mint);
  border-color: #487e69;
  color: var(--green);
}
.account > .action-feedback {
  margin-bottom: 22px;
}
[aria-busy="true"] .btn:disabled {
  cursor: wait;
}
.motion-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.motion-preview {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 22px;
  text-align: center;
  border-radius: 22px;
  background: var(--surface);
}
.motion-preview img {
  width: 160px;
  height: 160px;
}
.motion-preview h3 {
  margin: 8px 0;
  font-size: 21px;
}
.motion-preview p {
  font-size: 14px;
  color: var(--muted);
}
.motion-preview a {
  font-size: 12px;
  margin-top: 12px;
}
.motion-preview .ghost {
  margin-top: auto;
}
.airport-picker {
  width: 100%;
  max-width: 100%;
}
.autocomplete__wrapper {
  position: relative;
}
.autocomplete__input {
  width: 100%;
}
.panel .autocomplete__input {
  max-width: none;
}
.autocomplete__menu {
  position: absolute;
  z-index: 5;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-height: 310px;
  overflow-y: auto;
  overscroll-behavior: contain;
  list-style: none;
  margin: 0;
  padding: 6px;
  border: 1px solid var(--control-line);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: 0 12px 26px #07152988;
}
.autocomplete__menu--hidden {
  display: none;
}
.autocomplete__menu--visible {
  display: block;
}
.autocomplete__option {
  display: block;
  border-radius: 9px;
  padding: 10px;
  cursor: pointer;
}
.autocomplete__option--focused,
.autocomplete__option:hover {
  background: var(--sky);
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.autocomplete__option--no-results {
  font-size: 14px;
  color: var(--muted);
  cursor: default;
}
.autocomplete__option > * {
  pointer-events: none;
}
.airport-option {
  display: flex;
  gap: 12px;
  align-items: center;
}
.airport-code {
  flex: 0 0 42px;
  color: var(--blue);
  font-size: 14px;
}
.airport-option > span {
  min-width: 0;
}
.airport-option strong:not(.airport-code) {
  display: block;
  font-size: 14px;
}
.airport-option small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
@media (max-width: 720px) {
  .motion-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .motion-preview {
    padding: 14px;
  }
  .motion-preview img {
    width: 120px;
    height: 120px;
  }
  .motion-preview h3 {
    font-size: 18px;
  }
  .motion-preview .ghost {
    font-size: 13px;
    padding-inline: 12px;
  }
}
@media (max-width: 380px) {
  .motion-gallery {
    grid-template-columns: 1fr;
  }
}
@media (forced-colors: active) {
  .autocomplete__menu {
    border-color: CanvasText;
  }
  .autocomplete__option--focused {
    outline-color: Highlight;
  }
  .airport-code,
  .airport-option small {
    color: inherit;
  }
}

/* A watch can include several cabin types and nonconsecutive travel months. */
.cabin-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cabin-picker .cabin {
  justify-content: flex-start;
  padding: 14px;
  border-radius: 14px;
  min-height: 78px;
  text-align: left;
  color: var(--ink);
}
.cabin-picker .cabin::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid var(--control-line);
  border-radius: 5px;
  margin-right: 5px;
  transform: none;
}
.cabin-picker .cabin[aria-pressed="true"]::before {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 4px var(--sky-deep);
}
.cabin-picker strong,
.cabin-picker small {
  display: block;
}
.cabin-picker strong {
  font-size: 15px;
}
.cabin-picker small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  margin-top: 3px;
}
.month-picker {
  min-width: 0;
}
.month-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: var(--sky);
}
.month-modes button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.month-modes button[aria-pressed="true"] {
  border-color: var(--control-line);
  background: var(--sky-deep);
  color: var(--ink);
}
.month-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 10px 0 0;
}
.month-shortcuts button {
  border: 0;
  border-radius: 6px;
  min-height: 44px;
  padding: 4px 2px;
  background: transparent;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 13px;
}
.month-shortcuts [data-clear] {
  margin-left: auto;
}
.month-shortcuts button:disabled {
  color: var(--muted);
  text-decoration: none;
  cursor: default;
}
.month-help {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.month-year {
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.month-year legend {
  padding: 0;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}
.month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.month-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 50px;
  border: 1px solid var(--control-line);
  border-radius: 10px;
  background: var(--sky);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.month-tile::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg) translateY(-1px);
}
.month-tile[aria-pressed="true"] {
  background: var(--sky-deep);
  color: var(--ink);
  border-color: var(--blue);
}
.month-tile[aria-pressed="true"]::before {
  border-color: var(--blue);
}
.month-tile:hover {
  border-color: var(--blue-hover);
  color: var(--ink);
}
.month-selection {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--sky);
  overflow-wrap: anywhere;
}
.month-selection strong,
.month-selection span {
  display: block;
}
.month-selection strong {
  font-size: 14px;
}
.month-selection span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .month-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (forced-colors: active) {
  .month-tile[aria-pressed="true"],
  .month-modes button[aria-pressed="true"] {
    outline: 2px solid Highlight;
    outline-offset: -3px;
  }
  .month-tile[aria-pressed="true"]::before {
    border-color: ButtonText;
  }
}
.panel > .field-help {
  margin: -8px 0 16px;
}
.watch-preview .selection-summary {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}
.selection-summary:empty {
  display: none;
}
@media (max-width: 380px) {
  .cabin-picker {
    grid-template-columns: 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.place-flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  flex: 0 0 24px;
  box-shadow: 0 0 0 1px #ffffff22;
}
.place-globe {
  width: 24px;
  height: 24px;
  color: var(--blue);
}
.place-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.place-selected:empty {
  display: none;
}
.place-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 8px;
  border: 1px solid var(--blue);
  border-radius: 100px;
  background: var(--sky-deep);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}
.place-choice > span:not(.place-remove) {
  min-width: 0;
  overflow-wrap: anywhere;
}
.place-remove {
  font-size: 18px;
  line-height: 1;
  color: var(--blue);
}
.place-count:empty {
  display: none;
}
.place-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.place-suggestion {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--control-line);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  padding: 7px 10px;
}
.place-suggestion:hover,
.place-choice:hover {
  background: var(--surface-raised);
}
.place-browse-label {
  margin-top: 16px;
}
.place-result {
  display: flex;
  align-items: center;
  gap: 12px;
}
.place-result > span {
  min-width: 0;
}
.place-result strong,
.place-result small {
  display: block;
}
.place-result strong {
  font-size: 14px;
}
.place-result small {
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.autocomplete__dropdown-arrow-down {
  position: absolute;
  right: 12px;
  top: 13px;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.autocomplete__dropdown-arrow-down polygon {
  fill: var(--blue);
}
input.autocomplete__input--show-all-values {
  padding-right: 44px;
}

/* Email-led onboarding: brand shapes, quiet fields, and one clear next step. */
.setup-steps { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0 0 28px; font-size: 14px; color: var(--muted); }
.setup-steps li { display: flex; align-items: center; gap: 8px; }
.setup-steps span { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--control-line); border-radius: 50%; font-weight: 800; }
.setup-steps [aria-current] { color: var(--ink); font-weight: 800; }
.setup-steps [aria-current] span { background: var(--action); border-color: var(--action); }
.setup-steps .complete { color: var(--green); }
.setup-steps .complete span { border-color: var(--green); }
.verification-code { max-width: 300px; font-size: 28px; font-weight: 800; letter-spacing: .3em; font-variant-numeric: tabular-nums; }
.code-actions { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 12px 0 20px; }
.code-actions .ghost { padding: 8px 12px; font-size: 14px; }
[data-code-address] { overflow-wrap: anywhere; }
.account-identity { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; color: var(--muted); font-size: 14px; }
.account-identity > span:first-of-type { overflow-wrap: anywhere; min-width: 0; }
.account-identity .icon { color: var(--green); }
.notification-heading { display: flex; align-items: center; gap: 12px; }
.notification-heading h2 { margin: 0; }
.notification-heading .icon { color: var(--blue); width: 26px; height: 26px; flex: 0 0 auto; }
.notifications > .field-help { margin: 10px 0 24px; }
.notification-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.notification-row > div { min-width: 0; }
.notification-row p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 4px 0 0; overflow-wrap: anywhere; }
.notification-row .ghost { padding: 8px 12px; font-size: 14px; flex-shrink: 0; }
.notification-row input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--action); flex: 0 0 auto; }
.channel-badge { display: inline-block; padding: 3px 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: 11px; font-weight: 700; white-space: nowrap; vertical-align: middle; }
#verified-badge { color: var(--green); border-color: #376759; background: var(--mint); }
.notification-row label .channel-badge { margin-left: 6px; }
.channel-instructions { border-left: 2px solid var(--blue); padding: 4px 0 4px 18px; margin: 0 0 20px; }
.channel-instructions .btn { font-size: 14px; margin: 0 10px 8px 0; }
.channel-instructions input { max-width: 100%; }
.channel-instructions p { font-size: 14px; }
.upcoming-channel strong { color: var(--muted); }
.notifications > .btn { margin-top: 16px; }
.checkout-notice { border-color: var(--blue); }
@media (max-width: 520px) {
  .notification-row { gap: 10px; }
  .notification-row .ghost { padding: 8px; }
  .notification-heading h2 { font-size: 22px; }
  .notifications { padding: 22px 18px; }
  .setup-steps { gap: 18px; }
}
.hero-mascot {
  cursor: pointer;
}
.watch-price-note {
  color: var(--muted);
  font-size: 14px;
  margin: -8px 0 22px;
}
.sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: #10223df0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    visibility: hidden;
    transition:
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }
  .sticky-cta[data-show] {
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }
  .sticky-cta span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
    min-width: 0;
  }
  .sticky-cta strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
  }
  .sticky-cta .btn {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 10px 20px;
    font-size: 15px;
  }
  .watch-route {
    display: none;
  }
  .watch-section {
    gap: 22px;
    padding-block: 40px 56px;
  }
  .watch-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .watch-price {
    margin: 18px 0 14px;
    font-size: 46px;
  }
  .watch-price-note {
    margin: 0 0 16px;
  }
  .watch-perks {
    font-size: 14px;
    gap: 9px;
  }
  .slip {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .slip h3 {
    font-size: 24px;
  }
  .form-intro {
    margin-bottom: 20px;
  }
  .setup-steps {
    gap: 14px;
    margin-bottom: 20px;
    font-size: 13px;
  }
  .cabin-picker {
    grid-template-columns: 1fr;
  }
  .cabin-picker .cabin {
    min-height: 60px;
    padding: 12px 14px;
  }
  .verification-code {
    max-width: none;
  }
  .code-actions .ghost {
    flex: 1 1 auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: none;
  }
}
