:root {
  color-scheme: light;
  --fst-navy: #071b3a;
  --fst-navy-2: #0b2f5b;
  --fst-blue: #155eef;
  --fst-blue-dark: #0b4fd4;
  --fst-red: #d91f3d;
  --fst-green: #079455;
  --fst-amber: #c96a05;
  --fst-ink: #071b3a;
  --fst-muted: #4d607a;
  --fst-soft: #f4f7fb;
  --fst-line: #d7dfea;
  --fst-line-strong: #bdc9d8;
  --fst-white: #ffffff;
  --fst-shadow: 0 20px 46px rgba(7, 27, 58, 0.12);
  --fst-shadow-soft: 0 10px 28px rgba(7, 27, 58, 0.08);
  --fst-radius: 14px;
  --fst-shell: 1280px;
  --fst-font: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --fst-condensed: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--fst-ink);
  background: var(--fst-white);
  font-family: var(--fst-font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: var(--fst-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--fst-blue-dark);
}

:focus-visible {
  outline: 3px solid rgba(21, 94, 239, 0.32);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--fst-white);
  background: var(--fst-navy);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 48px), var(--fst-shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--fst-line);
  background: rgba(255, 255, 255, 0.98);
}

.site-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  color: var(--fst-navy);
  text-decoration: none;
}

.brand-lockup:hover {
  color: var(--fst-navy);
}

.brand-lockup img {
  width: 72px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup strong {
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: var(--fst-navy);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--fst-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 9px;
  border: 0;
  color: var(--fst-navy);
  background: transparent;
  cursor: pointer;
}

.site-menu-toggle span,
.site-menu-toggle::before,
.site-menu-toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.site-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(8px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-title,
.section-title,
.page-banner h1,
.legal-document h2,
.support-panel h2,
.guide-section h2 {
  margin: 0;
  color: var(--fst-navy);
  font-family: var(--fst-condensed);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-title {
  max-width: 680px;
  font-size: clamp(3.35rem, 6vw, 5.9rem);
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 34px;
  color: var(--fst-muted);
  font-size: clamp(1.2rem, 2.1vw, 1.62rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
}

.section-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--fst-muted);
  font-size: 1.15rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--fst-white);
  background: linear-gradient(135deg, var(--fst-blue), #0871f9);
  box-shadow: 0 12px 24px rgba(21, 94, 239, 0.2);
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  color: var(--fst-white);
  background: linear-gradient(135deg, var(--fst-blue-dark), var(--fst-blue));
  box-shadow: 0 15px 28px rgba(21, 94, 239, 0.25);
  transform: translateY(-2px);
}

.button::after {
  content: "\2192";
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1;
}

.button.secondary {
  color: var(--fst-blue);
  background: var(--fst-white);
  border-color: var(--fst-line-strong);
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--fst-blue-dark);
  border-color: var(--fst-blue);
  box-shadow: var(--fst-shadow-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fst-blue);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "\203A";
  font-size: 1.5em;
  line-height: 1;
}

.landing-hero,
.onboarding-hero {
  position: relative;
  overflow: hidden;
  background: var(--fst-white);
}

.landing-hero::after,
.onboarding-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(21, 94, 239, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.landing-hero-grid,
.onboarding-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: 82px 96px;
}

.hero-copy {
  min-width: 0;
}

.product-frame {
  min-width: 0;
}

.flight-card {
  position: relative;
  container-type: inline-size;
  width: 100%;
  max-width: 610px;
  margin-inline: auto;
  padding: 26px 28px 22px;
  border: 1px solid var(--fst-line-strong);
  border-radius: var(--fst-radius);
  background: var(--fst-white);
  box-shadow: var(--fst-shadow);
  font-variant-numeric: tabular-nums;
}

.flight-card-compact {
  max-width: 500px;
  padding: 22px;
}

.flight-card-header,
.flight-summary-row,
.flight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.flight-card-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--fst-line);
}

.flight-card-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  line-height: 1.15;
}

.flight-card-brand img {
  width: 50px;
  height: 34px;
  object-fit: contain;
}

.flight-card-actions {
  display: flex;
  gap: 12px;
  color: var(--fst-muted);
}

.icon-button-visual {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
}

.icon-button-visual svg {
  width: 23px;
  height: 23px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flight-search-row,
.guide-search-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(108px, 0.72fr) 50px;
  gap: 10px;
  align-items: center;
}

.flight-search-row {
  padding-block: 18px;
  border-bottom: 1px solid var(--fst-line);
}

.flight-search-field,
.flight-search-submit {
  min-height: 48px;
  border-radius: 8px;
}

.flight-search-field {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--fst-line-strong);
  color: var(--fst-navy);
  background: var(--fst-white);
  font-weight: 750;
  white-space: nowrap;
}

.flight-search-field svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--fst-muted);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flight-search-submit {
  display: grid;
  place-items: center;
  color: var(--fst-white);
  background: var(--fst-blue);
  box-shadow: 0 8px 18px rgba(21, 94, 239, 0.2);
}

.flight-search-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.flight-summary-row {
  margin-top: 20px;
  font-size: 1rem;
}

.flight-summary-row strong {
  font-weight: 800;
}

.flight-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.flight-status::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--fst-green);
  box-shadow: 0 0 0 3px rgba(7, 148, 85, 0.09);
}

.airport-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 1.15fr) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 18px 0 24px;
}

.airport {
  min-width: 0;
}

.airport:last-child {
  justify-self: end;
  text-align: right;
}

.airport-code {
  display: block;
  color: var(--fst-navy);
  font-family: var(--fst-condensed);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-size: clamp(2.35rem, 10.5cqi, 4rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.airport-name {
  display: block;
  margin-top: 9px;
  color: var(--fst-muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.route-visual {
  min-width: 0;
  padding-top: clamp(12px, 3.3cqi, 20px);
}

.route-track {
  position: relative;
  height: 22px;
  margin-inline: 4px;
}

.route-track::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--fst-blue) 0 70%, var(--fst-line-strong) 70% 100%);
}

.route-track::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -1px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--fst-line-strong);
  border-radius: 50%;
  background: var(--fst-white);
}

.route-origin {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fst-blue);
}

.route-plane {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 64%;
  width: 30px;
  height: 24px;
  color: var(--fst-blue);
  transform: translateX(-50%);
}

.route-plane path {
  fill: currentColor;
}

.route-progress-label {
  margin-top: 5px;
  color: var(--fst-muted);
  font-size: clamp(0.68rem, 2.15cqi, 0.86rem);
  text-align: center;
  white-space: nowrap;
}

.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
  padding-block: 22px;
  border-top: 1px solid var(--fst-line);
  border-bottom: 1px solid var(--fst-line);
}

.time-block {
  min-width: 0;
}

.time-block + .time-block {
  padding-left: 26px;
  border-left: 1px solid var(--fst-line);
}

.time-label,
.metric-label {
  display: block;
  color: var(--fst-muted);
  font-family: var(--fst-condensed);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.time-main {
  display: block;
  margin: 5px 0 2px;
  color: var(--fst-navy);
  font-family: var(--fst-condensed);
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  font-size: clamp(1.6rem, 6.8cqi, 2.65rem);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.time-sub,
.time-location {
  display: block;
  margin-top: 6px;
  color: var(--fst-muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.local-time-note {
  margin: 10px 0 0;
  color: var(--fst-muted);
  font-size: 0.72rem;
  text-align: center;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 0;
  border-bottom: 1px solid var(--fst-line);
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid var(--fst-line);
}

.metric-value {
  display: block;
  color: var(--fst-navy);
  font-family: var(--fst-condensed);
  font-size: clamp(0.95rem, 3.4cqi, 1.25rem);
  font-weight: 850;
  line-height: 1.1;
}

.metric-label {
  margin-top: 5px;
  font-size: 0.66rem;
}

.flight-card-footer {
  padding-top: 16px;
  color: var(--fst-muted);
  font-size: 0.82rem;
}

.flight-card-footer a {
  font-weight: 700;
  text-decoration: none;
}

.info-band {
  position: relative;
  overflow: hidden;
  color: var(--fst-white);
  background: var(--fst-navy);
}

.info-band-inner {
  padding-block: 86px 92px;
}

.info-band .section-title {
  max-width: 610px;
  color: var(--fst-white);
}

.band-route {
  position: relative;
  width: min(540px, 52%);
  height: 26px;
  margin: 28px 0 8px auto;
  border-top: 2px solid rgba(80, 151, 255, 0.62);
}

.band-route::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -170px;
  width: 120px;
  border-top: 4px solid var(--fst-red);
}

.band-route::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 15%;
  width: 32px;
  height: 25px;
  color: var(--fst-white);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 25'%3E%3Cpath d='M31 11.4 20.2 7.1V2.6C20.2.9 19.4 0 18.3 0s-1.9.9-1.9 2.6v4.5L4.8 11.4 0 9.8v2.7l4.8 2 11.6-1.7v5.5l-4.4 3v2.3l6.3-2 6.3 2v-2.3l-4.4-3v-5.5l10.8 1.7v-3.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 25'%3E%3Cpath d='M31 11.4 20.2 7.1V2.6C20.2.9 19.4 0 18.3 0s-1.9.9-1.9 2.6v4.5L4.8 11.4 0 9.8v2.7l4.8 2 11.6-1.7v5.5l-4.4 3v2.3l6.3-2 6.3 2v-2.3l-4.4-3v-5.5l10.8 1.7v-3.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

.info-item {
  min-width: 0;
  padding: 0 42px;
}

.info-item:first-child {
  padding-left: 0;
}

.info-item:last-child {
  padding-right: 0;
}

.info-item + .info-item {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #62a2ff;
}

.info-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item h3 {
  margin: 0 0 12px;
  color: var(--fst-white);
  font-family: var(--fst-condensed);
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1rem;
  line-height: 1.7;
}

.workflow-section,
.guide-section {
  background: var(--fst-white);
}

.workflow-inner,
.guide-inner {
  padding-block: 98px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(58px, 8vw, 120px);
  align-items: center;
  margin-top: 54px;
}

.step-rail {
  position: relative;
  display: grid;
  gap: 34px;
}

.step-rail::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 22px;
  border-left: 1px solid var(--fst-line-strong);
}

.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fst-white);
  background: var(--fst-blue);
  font-family: var(--fst-condensed);
  font-size: 1.12rem;
  font-weight: 850;
  box-shadow: 0 0 0 8px var(--fst-white);
}

.step-copy h3 {
  margin: 1px 0 7px;
  color: var(--fst-navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.step-copy p {
  margin: 0;
  color: var(--fst-muted);
}

.availability-note {
  position: relative;
  padding: 54px 24px 48px;
  border-top: 1px solid var(--fst-line);
  color: var(--fst-muted);
  background: var(--fst-white);
  text-align: center;
}

.availability-route {
  position: relative;
  width: min(880px, 90%);
  height: 30px;
  margin: 0 auto 28px;
}

.availability-route span {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--fst-red) 0 74%, var(--fst-line-strong) 74% 100%);
}

.availability-route svg {
  position: absolute;
  top: 0;
  left: 74%;
  width: 38px;
  height: 30px;
  color: var(--fst-red);
  transform: translateX(-50%);
}

.availability-route svg path {
  fill: currentColor;
}

.availability-note p {
  margin: 0;
}

.onboarding-hero-grid {
  min-height: 690px;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.72fr);
}

.onboarding-hero .hero-title {
  font-size: clamp(3.2rem, 5.5vw, 5rem);
}

.route-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin: 58px 0 0;
  padding-top: 70px;
  padding-inline-start: 0;
  list-style: none;
}

.route-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 2%;
  left: 2%;
  height: 2px;
  background: linear-gradient(to right, var(--fst-blue) 0 88%, var(--fst-line-strong) 88% 100%);
}

.route-steps::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 7%;
  width: 32px;
  height: 25px;
  color: var(--fst-blue);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 25'%3E%3Cpath d='M31 11.4 20.2 7.1V2.6C20.2.9 19.4 0 18.3 0s-1.9.9-1.9 2.6v4.5L4.8 11.4 0 9.8v2.7l4.8 2 11.6-1.7v5.5l-4.4 3v2.3l6.3-2 6.3 2v-2.3l-4.4-3v-5.5l10.8 1.7v-3.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 25'%3E%3Cpath d='M31 11.4 20.2 7.1V2.6C20.2.9 19.4 0 18.3 0s-1.9.9-1.9 2.6v4.5L4.8 11.4 0 9.8v2.7l4.8 2 11.6-1.7v5.5l-4.4 3v2.3l6.3-2 6.3 2v-2.3l-4.4-3v-5.5l10.8 1.7v-3.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.route-step {
  position: relative;
  min-width: 0;
}

.route-step-number {
  position: absolute;
  top: -71px;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fst-white);
  background: var(--fst-blue);
  font-weight: 850;
  transform: translateX(-50%);
}

.route-step-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--fst-navy);
  background: #eaf1fe;
}

.route-step-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-step-widget-icon {
  padding: 8px;
  border: 1px solid var(--fst-line-strong);
  border-radius: 18px;
  background: var(--fst-white);
  box-shadow: var(--fst-shadow-soft);
}

.route-step-widget-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.route-step h3 {
  margin: 0 0 10px;
  color: var(--fst-navy);
  font-size: 1.05rem;
  text-align: center;
}

.route-step p {
  margin: 0;
  color: var(--fst-muted);
  text-align: center;
}

.page-banner {
  position: relative;
  overflow: hidden;
  color: var(--fst-white);
  background: var(--fst-navy);
}

.page-banner-inner {
  min-height: 248px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 72px;
  padding-block: 50px;
}

.page-banner h1 {
  color: var(--fst-white);
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.page-banner .banner-summary {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.page-banner .banner-meta {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.banner-route {
  position: relative;
  height: 34px;
  border-top: 2px solid var(--fst-red);
}

.banner-route::after {
  content: "";
  position: absolute;
  top: -15px;
  right: 0;
  width: 38px;
  height: 30px;
  color: #ff4962;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 25'%3E%3Cpath d='M31 11.4 20.2 7.1V2.6C20.2.9 19.4 0 18.3 0s-1.9.9-1.9 2.6v4.5L4.8 11.4 0 9.8v2.7l4.8 2 11.6-1.7v5.5l-4.4 3v2.3l6.3-2 6.3 2v-2.3l-4.4-3v-5.5l10.8 1.7v-3.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 25'%3E%3Cpath d='M31 11.4 20.2 7.1V2.6C20.2.9 19.4 0 18.3 0s-1.9.9-1.9 2.6v4.5L4.8 11.4 0 9.8v2.7l4.8 2 11.6-1.7v5.5l-4.4 3v2.3l6.3-2 6.3 2v-2.3l-4.4-3v-5.5l10.8 1.7v-3.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.legal-main,
.support-main {
  background: var(--fst-white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(56px, 7vw, 110px);
  padding-block: 54px 88px;
}

.legal-toc {
  position: sticky;
  top: 28px;
  align-self: start;
  padding-right: 34px;
  border-right: 1px solid var(--fst-line);
}

.legal-toc h2 {
  margin: 0 0 16px;
  color: var(--fst-muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc li + li {
  margin-top: 5px;
}

.legal-toc a {
  display: block;
  padding: 9px 12px 9px 17px;
  border-left: 3px solid transparent;
  color: var(--fst-muted);
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--fst-blue);
  border-left-color: var(--fst-red);
}

.legal-document {
  min-width: 0;
  max-width: 860px;
}

.legal-document section {
  scroll-margin-top: 100px;
}

.legal-document section + section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--fst-line);
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.legal-document h3 {
  margin: 28px 0 8px;
  color: var(--fst-navy);
  font-size: 1.18rem;
}

.legal-document p,
.legal-document li {
  color: #2f4260;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul,
.legal-document ol {
  padding-left: 1.35rem;
}

.legal-document li + li {
  margin-top: 9px;
}

.support-inner {
  padding-block: 76px 96px;
}

.support-panel {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--fst-line);
  border-left: 5px solid var(--fst-red);
  border-radius: 0 var(--fst-radius) var(--fst-radius) 0;
  background: var(--fst-white);
  box-shadow: var(--fst-shadow-soft);
}

.support-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.support-panel p {
  max-width: 720px;
  color: var(--fst-muted);
}

.contact-address {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--fst-line-strong);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.removal-list {
  counter-reset: removal;
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.removal-list li {
  counter-increment: removal;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: #2f4260;
}

.removal-list li::before {
  content: counter(removal);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fst-white);
  background: var(--fst-blue);
  font-weight: 850;
}

.removal-list strong {
  display: inline;
  margin: 0;
  color: var(--fst-navy);
}

.removal-list li > span {
  min-width: 0;
  line-height: 1.5;
}

.status-message {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--fst-line);
  border-radius: 8px;
  color: var(--fst-muted);
  background: var(--fst-soft);
  font-size: 0.92rem;
}

.status-message.success {
  border-color: rgba(7, 148, 85, 0.28);
  color: #05643a;
  background: #effbf5;
}

.guide-stack {
  display: grid;
  gap: 40px;
  margin-top: 54px;
}

.guide-step {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--fst-line);
}

.guide-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guide-step-number {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 2px solid var(--fst-blue);
  border-radius: 50%;
  color: var(--fst-blue);
  font-family: var(--fst-condensed);
  font-size: 1.8rem;
  font-weight: 850;
}

.guide-step h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.guide-step p {
  max-width: 720px;
  margin: 0;
  color: var(--fst-muted);
}

.guide-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--fst-red);
  color: #2f4260;
  background: var(--fst-soft);
}

.guide-step .guide-note {
  margin-top: 22px;
  color: #2f4260;
}

.route-section-title {
  max-width: none;
  text-align: center;
}

.guide-step-content {
  min-width: 0;
}

.guide-demo {
  max-width: 720px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--fst-line);
  border-radius: 10px;
  background: var(--fst-soft);
  box-shadow: var(--fst-shadow-soft);
}

.guide-widget-demo {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--fst-white);
}

.guide-widget-page {
  display: grid;
  gap: 12px;
  width: 68%;
  padding: 12px;
}

.guide-widget-page span {
  height: 10px;
  border-radius: 999px;
  background: #e8eef7;
}

.guide-widget-page span:nth-child(2) {
  width: 84%;
}

.guide-widget-page span:nth-child(3) {
  width: 62%;
}

.guide-widget-prompt {
  position: absolute;
  right: 104px;
  bottom: 31px;
  display: grid;
  text-align: right;
}

.guide-widget-prompt strong {
  color: var(--fst-navy);
}

.guide-widget-prompt small {
  color: var(--fst-muted);
}

.guide-widget-launcher {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--fst-line-strong);
  border-radius: 16px;
  background: var(--fst-white);
  box-shadow: 0 7px 22px rgba(7, 27, 58, 0.2);
}

.guide-widget-launcher img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.guide-search-demo {
  background: var(--fst-white);
}

.guide-result-demo {
  color: var(--fst-navy);
  background: var(--fst-white);
  font-variant-numeric: tabular-nums;
}

.guide-result-heading,
.guide-result-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.guide-result-heading {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--fst-line);
  font-size: 0.92rem;
}

.guide-result-route {
  display: grid;
  grid-template-columns: minmax(72px, 0.7fr) minmax(120px, 1.2fr) minmax(72px, 0.7fr);
  align-items: center;
  gap: 16px;
  padding-block: 22px;
}

.guide-result-route > span:last-child {
  text-align: right;
}

.guide-result-route strong,
.guide-result-route small {
  display: block;
}

.guide-result-route strong {
  font-family: var(--fst-condensed);
  font-size: 2.15rem;
  line-height: 1;
}

.guide-result-route small {
  margin-top: 6px;
  color: var(--fst-muted);
  font-size: 0.76rem;
}

.guide-result-track {
  position: relative;
  height: 30px;
}

.guide-result-track i {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--fst-blue) 0 68%, var(--fst-line-strong) 68% 100%);
}

.guide-result-plane {
  position: absolute;
  top: 3px;
  left: 62%;
  width: 30px;
  height: 24px;
  color: var(--fst-blue);
  transform: translateX(-50%);
}

.guide-result-plane path {
  fill: currentColor;
}

.guide-result-details {
  padding-top: 14px;
  border-top: 1px solid var(--fst-line);
  color: var(--fst-muted);
  font-size: 0.78rem;
}

.site-footer {
  border-top: 1px solid var(--fst-line);
  color: var(--fst-muted);
  background: var(--fst-white);
}

.site-footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 24px;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links a {
  color: var(--fst-blue);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .landing-hero-grid,
  .onboarding-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 74px 88px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-frame {
    width: min(100%, 680px);
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid .product-frame {
    width: min(100%, 600px);
  }

  .page-banner-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .banner-route {
    width: min(620px, 86%);
  }
}

@media (max-width: 800px) {
  .site-header-inner {
    min-height: 68px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup img {
    width: 58px;
    height: 39px;
  }

  .brand-lockup strong {
    font-size: 1rem;
  }

  .site-menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 24px 36px;
    background: var(--fst-white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 19px 4px;
    border-bottom: 1px solid var(--fst-line);
    font-size: 1.05rem;
  }

  .site-nav a::after {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-item,
  .info-item:first-child,
  .info-item:last-child {
    padding: 30px 0;
  }

  .info-item + .info-item {
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .band-route {
    width: 70%;
  }

  .route-steps {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 0 0 68px;
  }

  .route-steps::before {
    top: 0;
    bottom: 0;
    left: 21px;
    width: 2px;
    height: auto;
    background: var(--fst-blue);
  }

  .route-steps::after {
    display: none;
  }

  .route-step {
    min-height: 70px;
  }

  .route-step-number {
    top: 5px;
    left: -68px;
    transform: none;
  }

  .route-step-icon {
    width: 58px;
    height: 58px;
    margin: 0 0 12px;
  }

  .route-step-widget-icon img {
    width: 42px;
    height: 42px;
  }

  .route-step h3,
  .route-step p {
    text-align: left;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-toc {
    position: static;
    padding: 18px;
    border: 1px solid var(--fst-line);
    border-left: 4px solid var(--fst-red);
    border-radius: 0 8px 8px 0;
    background: var(--fst-soft);
  }

  .legal-toc ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
  }

  .legal-toc li + li {
    margin: 0;
  }

  .legal-toc a {
    border-left: 0;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--fst-shell));
  }

  .brand-lockup strong {
    max-width: 190px;
    white-space: normal;
  }

  .hero-title {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .hero-lede {
    margin: 22px 0 28px;
    font-size: 1.12rem;
  }

  .landing-hero-grid,
  .onboarding-hero-grid {
    gap: 44px;
    padding-block: 54px 66px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button-row .text-link {
    width: auto;
  }

  .flight-card,
  .flight-card-compact {
    padding: 18px 16px 16px;
    border-radius: 10px;
  }

  .flight-search-row,
  .guide-search-demo {
    grid-template-columns: minmax(74px, 1fr) minmax(88px, 0.75fr) 44px;
    gap: 7px;
  }

  .flight-search-field {
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .flight-search-submit {
    min-height: 44px;
  }

  .flight-card-brand {
    font-size: 0.9rem;
  }

  .flight-card-brand img {
    width: 42px;
  }

  .flight-summary-row {
    align-items: flex-start;
    font-size: 0.84rem;
  }

  .airport-route {
    grid-template-columns: minmax(0, 1fr) minmax(82px, 1.05fr) minmax(0, 1fr);
    gap: 8px;
  }

  .airport-code {
    font-size: clamp(2.05rem, 11cqi, 2.75rem);
  }

  .airport-name {
    font-size: 0.72rem;
  }

  .route-plane {
    width: 26px;
  }

  .route-progress-label {
    font-size: 0.68rem;
  }

  .time-grid {
    padding-block: 16px;
  }

  .time-block + .time-block {
    padding-left: 14px;
  }

  .time-main {
    font-size: clamp(1.45rem, 6.8cqi, 2rem);
  }

  .time-sub,
  .time-location {
    font-size: 0.7rem;
  }

  .metric-value {
    font-size: 1rem;
  }

  .metric-label {
    font-size: 0.55rem;
  }

  .flight-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .info-band-inner,
  .workflow-inner,
  .guide-inner {
    padding-block: 68px;
  }

  .band-route {
    width: 74%;
    margin-top: 46px;
  }

  .band-route::before {
    left: -88px;
    width: 60px;
  }

  .workflow-grid {
    margin-top: 38px;
  }

  .page-banner-inner {
    min-height: 228px;
    padding-block: 38px;
  }

  .page-banner h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .legal-layout {
    padding-block: 36px 68px;
  }

  .legal-toc ul {
    grid-template-columns: 1fr;
  }

  .legal-document section + section {
    margin-top: 32px;
    padding-top: 32px;
  }

  .support-inner {
    padding-block: 54px 72px;
  }

  .guide-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .guide-step-number {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
  }

  .guide-demo {
    padding: 14px;
  }

  .guide-widget-prompt {
    right: 94px;
    bottom: 27px;
  }

  .guide-widget-launcher {
    right: 14px;
    bottom: 18px;
  }

  .guide-result-heading,
  .guide-result-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .guide-result-route {
    grid-template-columns: minmax(55px, 0.7fr) minmax(72px, 1fr) minmax(55px, 0.7fr);
    gap: 10px;
  }

  .guide-result-route strong {
    font-size: 1.8rem;
  }

  .availability-route {
    width: min(100%, 520px);
  }

  .availability-route svg {
    width: 32px;
    height: 25px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-menu-toggle,
  .site-nav,
  .site-footer,
  .banner-route,
  .button-row {
    display: none !important;
  }

  .site-header {
    border-bottom: 1px solid #999;
  }

  .page-banner {
    color: #000;
    background: #fff;
    border-bottom: 1px solid #999;
  }

  .page-banner h1,
  .page-banner .banner-summary,
  .page-banner .banner-meta {
    color: #000;
  }

  .legal-layout {
    display: block;
  }

  .legal-toc {
    display: none;
  }
}
