@font-face {
  font-family: "Onest";
  src: url("./assets/fonts/Onest-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/IBMPlexMono-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --navy: #102c43;
  --navy-deep: #0a2032;
  --text: #1b2f3d;
  --muted: #6c7d88;
  --line: #dce4e8;
  --page-bg: #f7f9fb;
  --white: #ffffff;
  --sky: #eaf3f7;
  --sky-strong: #dcecf3;
  --blue: #6abed6;
  --amber: #e5a844;
  --coral: #dd756b;
  --page: min(1180px, calc(100vw - 64px));
  --header-height: 72px;
  --radius-small: 12px;
  --radius: 18px;
  --radius-large: 26px;
  --font: "Onest", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgb(27 47 61 / 8%);
  background: rgb(247 249 251 / 92%);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.48);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #536775;
  font-size: 13px;
  font-weight: 500;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #82919a;
  font-family: var(--mono);
  font-size: 9px;
}

.language-switch button {
  padding: 4px;
  border: 0;
  background: none;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--text);
  font-weight: 500;
}

.header-cta {
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 550;
}

.overline {
  margin: 0 0 18px;
  color: #527184;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overline--light {
  color: #9ed6e4;
}

.hero {
  padding: calc(var(--header-height) + 92px) 0 80px;
}

.hero-copy {
  max-width: 840px;
  text-align: center;
}

.hero h1,
.section-intro h2,
.essentials-heading h2,
.available-copy h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero h1 {
  font-size: clamp(58px, 6.4vw, 84px);
  line-height: 0.98;
}

.hero h1 span {
  color: #587483;
  font-weight: 500;
}

.hero-lead {
  max-width: 690px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.store-badge {
  min-width: 172px;
  min-height: 56px;
  padding: 9px 14px;
  border: 1px solid #bac7ce;
  border-radius: var(--radius-small);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: white;
  color: var(--text);
}

.store-badge small,
.store-badge strong {
  display: block;
}

.store-badge small {
  margin-bottom: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.04em;
}

.store-badge strong {
  font-size: 13px;
  font-weight: 600;
}

.app-store-icon {
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 15px;
}

.play-icon {
  width: 27px;
  height: 27px;
}

.hero-visual {
  position: relative;
  height: 660px;
  margin-top: 76px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--sky);
}

.hero-visual::before {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--sky-strong);
  content: "";
  transform: translateX(-50%);
}

.hero-route {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 100%;
}

.hero-route path:first-child {
  fill: none;
  stroke: #87b8c8;
  stroke-width: 2;
}

.hero-route circle {
  fill: var(--amber);
}

.hero-route .route-plane {
  fill: var(--navy);
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid var(--navy-deep);
  border-radius: 34px;
  background: #f4f7f8;
  box-shadow: 0 28px 62px rgb(16 44 67 / 18%);
}

.hero-phone {
  position: absolute;
  z-index: 2;
  top: 54px;
  left: 50%;
  width: 328px;
  height: 650px;
  transform: translateX(-50%);
}

.phone-notch {
  position: absolute;
  z-index: 5;
  top: -1px;
  left: 50%;
  width: 86px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: var(--navy-deep);
  transform: translateX(-50%);
}

.phone-status {
  position: relative;
  z-index: 3;
  height: 45px;
  padding: 14px 18px 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 6px;
}

.home-screen {
  padding: 18px 20px;
}

.home-heading,
.screen-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.home-heading small,
.home-heading strong,
.screen-heading small,
.screen-heading strong {
  display: block;
}

.home-heading small,
.screen-heading small {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.06em;
}

.home-heading strong {
  font-size: 20px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--sky-strong);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
}

.home-total {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}

.home-total > span {
  color: #b6cad3;
  font-family: var(--mono);
  font-size: 6px;
}

.home-total > strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 40px;
  letter-spacing: -0.055em;
}

.home-total svg {
  width: 100%;
  height: 56px;
}

.home-total svg path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.home-total > div {
  padding-top: 9px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  display: flex;
  justify-content: space-between;
  color: #b6cad3;
  font-family: var(--mono);
  font-size: 6px;
}

.next-flight {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: white;
}

.next-flight > small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
}

.next-flight > div {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.next-flight strong {
  font-size: 19px;
}

.next-flight strong i {
  color: var(--amber);
  font-style: normal;
}

.next-flight > div span,
.next-flight p {
  font-family: var(--mono);
  font-size: 7px;
}

.next-flight p {
  margin: 8px 0 0;
  color: var(--muted);
}

.home-actions {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.home-actions > span {
  min-height: 78px;
  padding: 12px 8px;
  border-radius: 10px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  background: white;
}

.home-actions b {
  color: #43758a;
  font-size: 18px;
  font-weight: 500;
}

.home-actions small {
  font-size: 7px;
  text-align: center;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 17px 18px;
  border: 1px solid #c8d5da;
  border-radius: var(--radius-small);
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 18px 38px rgb(16 44 67 / 12%);
  backdrop-filter: blur(8px);
}

.floating-card small,
.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card small {
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
}

.floating-card strong {
  font-size: 19px;
}

.floating-card span {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
}

.floating-card--weather {
  top: 220px;
  left: 14%;
}

.floating-card--route {
  right: 13%;
  bottom: 126px;
}

.trust-row {
  padding: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.trust-row > div {
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 7px;
  font-size: 14px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.feature-section {
  padding: 130px 0 90px;
  background: white;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 70px;
  padding-bottom: 74px;
}

.section-intro .overline {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-intro h2,
.essentials-heading h2 {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
}

.section-intro > p:last-child {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-tour {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: clamp(80px, 10vw, 150px);
}

.tour-phone-wrap {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  height: calc(100vh - var(--header-height) - 68px);
  display: grid;
  place-items: center;
}

.tour-phone {
  width: 360px;
  height: min(680px, calc(100vh - 150px));
  min-height: 620px;
  box-shadow: 0 28px 72px rgb(16 44 67 / 16%);
}

.screen-stack {
  position: absolute;
  inset: 45px 0 30px;
  overflow: hidden;
}

.feature-screen {
  position: absolute;
  inset: 0;
  padding: 22px 20px 18px;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition:
    opacity 320ms ease,
    transform 360ms ease,
    visibility 0s linear 360ms;
}

.feature-screen.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.screen-heading strong {
  font-size: 19px;
}

.screen-chip {
  padding: 6px 8px;
  border-radius: 8px;
  background: #f7dba9;
  font-family: var(--mono);
  font-size: 6px;
}

.screen-chip--blue {
  background: #d7eef4;
  color: #326a7d;
}

.simple-log {
  margin-top: 24px;
}

.simple-log > div {
  min-height: 66px;
  padding: 0 11px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr 42px;
  align-items: center;
  gap: 8px;
}

.simple-log time,
.simple-log span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
}

.simple-log strong {
  font-size: 14px;
}

.simple-log strong i {
  color: var(--amber);
  font-style: normal;
}

.simple-log .is-highlighted {
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: white;
}

.simple-log .is-highlighted time,
.simple-log .is-highlighted span {
  color: #b9cad2;
}

.screen-button {
  width: 100%;
  min-height: 70px;
  margin-top: 20px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--text);
  text-align: left;
}

.screen-button small,
.screen-button strong {
  display: block;
}

.screen-button small {
  margin-bottom: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
}

.screen-button strong {
  font-size: 10px;
}

.screen-footer {
  position: absolute;
  right: 20px;
  bottom: 14px;
  left: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
}

.route-map {
  position: relative;
  height: 315px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--sky);
}

.route-map svg {
  width: 100%;
  height: 100%;
}

.map-line {
  fill: none;
  stroke: #4b93a9;
  stroke-width: 2;
  stroke-dasharray: 5 5;
}

.weather-area {
  fill: rgb(221 117 107 / 20%);
  stroke: var(--coral);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.route-map circle {
  fill: var(--amber);
}

.airport,
.sigmet {
  position: absolute;
  font-family: var(--mono);
  font-size: 6px;
}

.airport--one {
  left: 25px;
  bottom: 36px;
}

.airport--two {
  top: 31px;
  right: 25px;
}

.aircraft {
  position: absolute;
  top: 48%;
  left: 56%;
  color: var(--navy);
  font-size: 16px;
  transform: rotate(24deg);
}

.sigmet {
  top: 83px;
  left: 73px;
  padding: 5px 6px;
  border-radius: 5px;
  background: var(--coral);
  color: white;
}

.weather-row {
  min-height: 72px;
  margin-top: 12px;
  padding: 0 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7dfb5;
}

.weather-row small,
.weather-row strong {
  display: block;
}

.weather-row small {
  margin-bottom: 4px;
  font-family: var(--mono);
  font-size: 6px;
}

.weather-row strong {
  font-size: 19px;
}

.weather-row > span:last-child {
  font-family: var(--mono);
  font-size: 7px;
}

.duty-summary {
  margin-top: 23px;
  padding: 21px 18px;
  border-radius: var(--radius-small);
  background: var(--navy);
  color: white;
}

.duty-summary small,
.duty-summary strong,
.duty-summary span {
  display: block;
}

.duty-summary small {
  color: #b8cad2;
  font-family: var(--mono);
  font-size: 6px;
}

.duty-summary strong {
  margin: 9px 0 3px;
  font-size: 40px;
  letter-spacing: -0.05em;
}

.duty-summary span {
  color: #9ed6e4;
  font-family: var(--mono);
  font-size: 6px;
}

.duty-line {
  margin-top: 24px;
}

.duty-times,
.duty-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 5px;
}

.duty-times {
  margin-bottom: 5px;
}

.duty-bars {
  height: 50px;
  display: grid;
  grid-template-columns: 0.45fr 1.4fr 0.5fr 1.4fr 0.45fr;
  align-items: end;
}

.duty-bars i {
  height: 36px;
  background: #dfe7ea;
}

.duty-bars i:nth-child(2),
.duty-bars i:nth-child(4) {
  height: 50px;
  background: var(--navy);
}

.duty-bars i:nth-child(3) {
  height: 42px;
  background: var(--amber);
}

.duty-labels {
  grid-template-columns: 0.65fr 1.25fr 0.75fr 1.25fr;
  margin-top: 6px;
}

.duty-values {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.duty-values > div {
  border-right: 1px solid var(--line);
  text-align: center;
}

.duty-values > div:last-child {
  border: 0;
}

.duty-values small,
.duty-values strong {
  display: block;
}

.duty-values small {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 5px;
}

.duty-values strong {
  font-size: 18px;
}

.screen-note {
  margin: 22px 0 0;
  padding-left: 10px;
  border-left: 2px solid var(--amber);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
  line-height: 1.5;
}

.stats-total {
  margin-top: 34px;
}

.stats-total small,
.stats-total strong,
.stats-total span {
  display: block;
}

.stats-total small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
}

.stats-total strong {
  margin: 8px 0 2px;
  font-size: 54px;
  letter-spacing: -0.06em;
}

.stats-total span {
  color: #3d8499;
  font-family: var(--mono);
  font-size: 6px;
}

.stats-graph {
  width: 100%;
  height: 205px;
  margin-top: 10px;
}

.stats-graph line {
  stroke: var(--line);
}

.stats-graph path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.stats-grid > div {
  padding: 12px 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 6px;
}

.stats-grid > div:nth-child(2n) {
  border-right: 0;
}

.screen-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #f4f7f8;
}

.screen-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b7c2c7;
  transition: width 200ms ease, background 200ms ease;
}

.screen-dots span.is-active {
  width: 17px;
  border-radius: 4px;
  background: var(--navy);
}

.feature-steps {
  padding-top: 80px;
}

.feature-step {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #9aa6ad;
  opacity: 0.45;
  transition: color 280ms ease, opacity 280ms ease;
}

.feature-step.is-active {
  color: var(--text);
  opacity: 1;
}

.step-label {
  margin-bottom: 17px;
  color: #4c8497;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.feature-step h3 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.feature-step > p {
  max-width: 560px;
  margin: 23px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.feature-meta {
  max-width: 560px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #627985;
  font-family: var(--mono);
  font-size: 8px;
}

.legal-note {
  max-width: 560px;
  margin-top: 20px;
  padding-left: 11px;
  border-left: 2px solid var(--amber);
  color: #819099;
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1.6;
}

.essentials-section {
  padding: 110px 0;
}

.essentials-panel {
  padding: 70px;
  border-radius: var(--radius-large);
  background: var(--sky);
}

.essentials-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 60px;
}

.essentials-heading .overline {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.essentials-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.essentials-grid article {
  min-height: 260px;
  padding: 27px;
  border: 1px solid #d1e0e6;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 72%);
}

.simple-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: white;
  color: #4f7e90;
  font-size: 17px;
}

.essentials-grid h3 {
  margin: 45px 0 12px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.essentials-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-section {
  padding: 20px 0 100px;
  scroll-margin-top: var(--header-height);
}

.contact-panel {
  padding: clamp(56px, 7vw, 92px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(64px, 8vw, 118px);
  background: white;
}

.contact-copy {
  align-self: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-copy > p:not(.overline) {
  max-width: 410px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-mail {
  display: inline-block;
  margin-top: 42px;
  border-bottom: 1px solid #a9c7d2;
  color: #3e7082;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.9;
}

.contact-mail:hover {
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label:not(.form-consent, .honeypot) {
  display: grid;
  gap: 9px;
}

.contact-form label > span:first-child {
  color: #4f606b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdbe0;
  border-radius: var(--radius-small);
  background: #fbfcfd;
  color: var(--text);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-form input:not([type="checkbox"]) {
  height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 156px;
  padding: 15px 16px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #70aabc;
  background: white;
  box-shadow: 0 0 0 3px rgb(106 190 214 / 18%);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.form-consent a {
  color: #3e7082;
  text-decoration: underline;
  text-decoration-color: #a9c7d2;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.form-action {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.submit-button {
  min-width: 190px;
  height: 54px;
  padding: 0 19px;
  border: 0;
  border-radius: var(--radius-small);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--navy);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.submit-button:hover {
  background: #183a53;
  transform: translateY(-1px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-status[data-state="success"] {
  color: #28705c;
}

.form-status[data-state="error"] {
  color: #aa4f47;
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-fallback {
  color: var(--muted);
  font-size: 12px;
}

.available-section {
  padding: 20px 0 100px;
}

.available-panel {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius-large);
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
}

.available-route {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
}

.available-route path:first-child {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.available-route path:last-child {
  fill: var(--amber);
}

.available-copy {
  position: relative;
  z-index: 1;
  padding: 70px 20px;
  text-align: center;
}

.available-copy h2 {
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1;
}

.available-copy > p:not(.overline) {
  margin: 20px 0 0;
  color: #b9cbd3;
  font-size: 17px;
}

.store-badge--dark {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(7 24 37 / 65%);
  color: white;
}

.store-badge--dark small {
  color: #aabdc5;
}

.site-footer {
  padding: 34px 0;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-shell > p {
  margin: 0;
  color: #87959d;
  font-family: var(--mono);
  font-size: 7px;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 20px;
  color: #87959d;
  font-family: var(--mono);
  font-size: 7px;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 44px, 900px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .floating-card--weather {
    left: 5%;
  }

  .floating-card--route {
    right: 4%;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro .overline {
    margin-bottom: 0;
  }

  .feature-tour {
    display: block;
  }

  .tour-phone-wrap {
    z-index: 4;
    top: var(--header-height);
    height: 510px;
    background: white;
    pointer-events: none;
  }

  .tour-phone {
    position: absolute;
    top: 8px;
    left: 50%;
    height: 680px;
    min-height: 680px;
    transform: translateX(-50%) scale(0.7);
    transform-origin: top center;
  }

  .feature-steps {
    position: relative;
    z-index: 3;
    padding-top: 0;
  }

  .feature-step {
    min-height: 86vh;
    justify-content: flex-end;
    padding: 0 20px 54px;
  }

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

  .essentials-heading .overline {
    margin-bottom: 18px;
  }

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

  .essentials-grid article {
    min-height: auto;
  }

  .essentials-grid h3 {
    margin-top: 28px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  :root {
    --page: calc(100% - 32px);
    --header-height: 64px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .nav-actions {
    gap: 7px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: calc(var(--header-height) + 62px) 0 66px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .store-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-badge {
    width: 100%;
  }

  .hero-visual {
    height: 610px;
    margin-top: 52px;
    border-radius: 20px;
  }

  .hero-visual::before {
    top: 92px;
    width: 350px;
    height: 350px;
  }

  .hero-phone {
    top: 48px;
    width: 282px;
    height: 570px;
    transform: translateX(-50%) scale(0.88);
    transform-origin: top center;
  }

  .floating-card {
    display: none;
  }

  .floating-card strong {
    font-size: 15px;
  }

  .floating-card--weather {
    top: 318px;
    left: -10px;
  }

  .floating-card--route {
    right: -8px;
    bottom: 46px;
  }

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

  .trust-row > div {
    min-height: 78px;
  }

  .feature-section {
    padding: 88px 0 54px;
  }

  .section-intro {
    padding-bottom: 46px;
  }

  .section-intro h2,
  .essentials-heading h2 {
    font-size: 43px;
  }

  .section-intro > p:last-child {
    font-size: 15px;
  }

  .tour-phone-wrap {
    height: 420px;
  }

  .tour-phone {
    top: 2px;
    transform: translateX(-50%) scale(0.61);
  }

  .feature-step {
    min-height: 95vh;
    padding: 0 0 38px;
  }

  .feature-step h3 {
    font-size: 34px;
  }

  .feature-step > p {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.65;
  }

  .feature-meta {
    font-size: 7px;
  }

  .legal-note {
    font-size: 6px;
  }

  .essentials-section {
    padding: 76px 0;
  }

  .essentials-panel {
    padding: 42px 20px 20px;
    border-radius: 20px;
  }

  .essentials-grid {
    margin-top: 42px;
  }

  .contact-section {
    padding: 10px 0 64px;
  }

  .contact-panel {
    padding: 58px 20px 24px;
    border-radius: 20px;
    gap: 46px;
  }

  .contact-copy h2 {
    font-size: 43px;
  }

  .contact-copy > p:not(.overline) {
    font-size: 15px;
  }

  .contact-mail {
    margin-top: 28px;
    font-size: 9px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-action {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .available-section {
    padding-bottom: 64px;
  }

  .available-panel {
    min-height: 560px;
    border-radius: 20px;
  }

  .available-copy {
    width: 100%;
    padding-inline: 20px;
  }

  .available-copy h2 {
    font-size: 45px;
  }

  .available-route {
    width: 150%;
    max-width: none;
    transform: translateX(-20%);
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-shell > p {
    display: none;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 8px;
  }

  .footer-links a {
    display: inline-flex;
  }
}

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

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

.capture-mode {
  scroll-behavior: auto;
}

.capture-mode .site-header {
  position: absolute;
}
