:root {
  --ink-950: #101828;
  --ink-800: #24324a;
  --ink-600: #536078;
  --cloud-50: #f8fafc;
  --cloud-100: #eef2f6;
  --cloud-200: #dce3ec;
  --blue-500: #2d6cdf;
  --blue-700: #17469d;
  --orange-500: #f36b37;
  --orange-100: #fff0e9;
  --mint-300: #84dfc2;
  --white: #ffffff;
  --headline: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --text: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --canvas: 1200px;
  --copy: 740px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-950);
  background: var(--cloud-50);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

body::selection {
  color: var(--white);
  background: var(--blue-700);
}

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

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

a:hover {
  color: var(--orange-500);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.frame {
  width: min(calc(100% - 40px), var(--canvas));
  margin-inline: auto;
}

.ad-disclosure {
  padding: 7px 20px;
  color: #dbe7ff;
  background: var(--ink-950);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ad-disclosure a {
  color: var(--mint-300);
}

.flight-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.12);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(14px);
}

.flight-header__bar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-950);
  text-decoration: none;
}

.wordmark__symbol {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50% 50% 50% 12%;
  color: var(--white);
  background: var(--blue-700);
  font-family: var(--headline);
  font-size: 19px;
  font-weight: 900;
  transform: rotate(-8deg);
}

.wordmark__text {
  display: grid;
  line-height: 1;
}

.wordmark__name {
  font-family: var(--headline);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.wordmark__tag {
  margin-top: 6px;
  color: var(--ink-600);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.flight-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flight-nav a {
  color: var(--ink-950);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.flight-nav a:hover {
  color: var(--blue-500);
}

.flight-nav__primary,
.lift-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  color: var(--white) !important;
  background: var(--blue-500);
  box-shadow: 0 8px 20px rgba(45, 108, 223, 0.2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.flight-nav__primary:hover,
.lift-button:hover {
  color: var(--white);
  background: var(--blue-700);
  transform: translateY(-2px);
}

.nav-trigger {
  display: none;
  width: 44px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  color: var(--white);
  background: var(--blue-700);
  cursor: pointer;
}

.nav-trigger i {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.runway {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(132, 223, 194, 0.22), transparent 23rem),
    linear-gradient(125deg, var(--ink-950), #172d55 64%, #1d4f95);
}

.runway::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -160px;
  width: 600px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.runway__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 52px;
  min-height: 610px;
  padding-block: 76px;
}

.runway__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--mint-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.runway__label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange-500);
}

.runway h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(46px, 5.4vw, 72px);
  font-stretch: condensed;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.runway h1 em {
  color: var(--orange-500);
  font-style: normal;
}

.runway__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #d7e2f5;
  font-family: var(--text);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

.runway__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 29px;
  color: #9fb0ca;
  font-size: 12px;
  font-weight: 650;
}

.runway-photo {
  position: relative;
  width: 100%;
  max-width: 450px;
  justify-self: end;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 34px 34px 34px 9px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  transform: rotate(1.2deg);
}

.runway-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 28px -18px -18px 34px;
  border-radius: 34px 34px 34px 9px;
  background: var(--orange-500);
  opacity: 0.9;
}

.runway-photo img {
  width: 100%;
  min-height: 400px;
  max-height: 600px;
  border-radius: 25px 25px 25px 5px;
  object-fit: cover;
  object-position: 72% center;
}

.runway-photo figcaption {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  border-radius: 15px 15px 15px 4px;
  padding: 14px 16px;
  color: #e4ecf9;
  background: rgba(16, 24, 40, 0.9);
  font-size: 11px;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

.runway-photo__stamp {
  position: absolute;
  z-index: 2;
  top: -22px;
  right: -19px;
  display: grid;
  width: 92px;
  height: 92px;
  place-content: center;
  border: 2px solid var(--ink-950);
  border-radius: 50%;
  color: var(--ink-950);
  background: var(--mint-300);
  font-family: var(--headline);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.03;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.route-map {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 50px 58px 65px;
  border: 2px dashed rgba(132, 223, 194, 0.45);
  border-radius: 48% 52% 43% 57%;
  transform: rotate(-14deg);
}

.route-map__title {
  margin: 0;
  color: #9fb0ca;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-map__point {
  position: absolute;
  display: grid;
  width: 116px;
  min-height: 78px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 12px;
  color: var(--white);
  background: #1c3868;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.route-map__point b {
  font-family: var(--headline);
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.route-map__point small {
  margin-top: 5px;
  color: #aebed5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.route-map__point--one {
  top: 82px;
  left: 36px;
}

.route-map__point--two {
  top: 174px;
  right: 28px;
  background: var(--orange-500);
}

.route-map__point--two small {
  color: #fff5f0;
}

.route-map__point--three {
  right: 122px;
  bottom: 30px;
}

.route-map__mark {
  position: absolute;
  top: 71px;
  right: 40px;
  width: 68px;
  height: 68px;
  border: 2px solid var(--mint-300);
  border-radius: 52% 48% 50% 18%;
  color: var(--mint-300);
  font-family: var(--headline);
  font-size: 27px;
  font-weight: 900;
  line-height: 64px;
  text-align: center;
  transform: rotate(12deg);
}

.quick-signals {
  border-bottom: 1px solid var(--cloud-200);
  background: var(--white);
}

.quick-signals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-signal {
  padding: 27px 34px;
  border-right: 1px solid var(--cloud-200);
}

.quick-signal:last-child {
  border-right: 0;
}

.quick-signal strong {
  display: block;
  color: var(--blue-700);
  font-family: var(--headline);
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-signal span {
  display: block;
  margin-top: 4px;
  color: var(--ink-600);
  font-size: 12px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 265px minmax(0, var(--copy));
  justify-content: center;
  gap: 78px;
  padding-block: 78px 105px;
}

.flight-plan {
  align-self: start;
  position: sticky;
  top: 108px;
  border-radius: 22px;
  padding: 25px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(27, 45, 76, 0.08);
}

.flight-plan__heading {
  margin: 0 0 13px;
  color: var(--orange-500);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flight-plan ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: plan;
}

.flight-plan li {
  counter-increment: plan;
}

.flight-plan a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  padding: 8px 0;
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.flight-plan a::before {
  content: counter(plan, decimal-leading-zero);
  color: var(--blue-500);
  font-size: 9px;
  font-weight: 900;
}

.flight-plan a:hover {
  color: var(--orange-500);
}

.field-notes > p {
  margin: 0 0 21px;
}

.field-notes > p:first-child {
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.58;
}

.official-note {
  margin: 28px 0;
  border-radius: 18px;
  padding: 20px 22px;
  color: var(--ink-600);
  background: var(--cloud-100);
  font-size: 13px;
}

.checkpoint {
  scroll-margin-top: 105px;
  margin-top: 67px;
}

.checkpoint::before {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-bottom: 20px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-500) 65%, var(--orange-500) 65%);
}

.checkpoint__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.checkpoint h2,
.decision-zone h2,
.recommendation h2 {
  margin: 0 0 19px;
  font-family: var(--headline);
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-transform: uppercase;
}

.action-log {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: action;
}

.action-log li {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 17px;
  padding: 15px 0;
  border-top: 1px solid var(--cloud-200);
  counter-increment: action;
}

.action-log li::before {
  content: counter(action);
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px 14px 14px 4px;
  color: var(--white);
  background: var(--blue-500);
  font-size: 13px;
  font-weight: 900;
}

.mission-card,
.resource-dock,
.detour-alert,
.brand-brief {
  margin: 27px 0;
  border-radius: 22px;
  padding: 25px 27px;
}

.mission-card {
  border: 1px solid #bfcdf0;
  background: #edf3ff;
  box-shadow: inset 6px 0 0 var(--blue-500);
}

.mission-card h3,
.resource-dock h3,
.detour-alert h3 {
  margin: 0 0 11px;
  font-size: 15px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.mission-card ul,
.mission-card ol,
.detour-alert ul {
  margin: 0;
  padding-left: 20px;
}

.mission-card li + li,
.resource-dock li + li,
.detour-alert li + li {
  margin-top: 8px;
}

.resource-dock {
  border: 1px solid #b9ded3;
  background: #effaf6;
}

.resource-dock h3 {
  color: #246e5b;
}

.resource-dock ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-tag {
  display: inline-block;
  margin-right: 7px;
  border-radius: 999px;
  padding: 2px 8px;
  color: #175443;
  background: var(--mint-300);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.resource-tag--partner {
  color: #8a3517;
  background: #ffd4c2;
}

.dispatch {
  margin: 33px 0;
  border-left: 6px solid var(--orange-500);
  padding: 8px 0 8px 24px;
  color: var(--ink-800);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.48;
}

.course-ribbon {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  margin: 35px 0;
  border-radius: 24px;
  padding: 28px 30px;
  color: var(--white);
  background: var(--ink-950);
}

.course-ribbon p {
  margin: 0;
}

.lift-button--light {
  color: var(--ink-950) !important;
  background: var(--mint-300);
  box-shadow: none;
}

.lift-button--light:hover {
  color: var(--white) !important;
}

.skill-board {
  margin: 32px 0;
  border: 1px solid var(--cloud-200);
  border-radius: 25px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(27, 45, 76, 0.09);
}

.skill-board__top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 7px;
}

.skill-board__top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cloud-200);
}

.skill-board__top i:first-child {
  background: var(--orange-500);
}

.skill-board__sheet {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  min-height: 180px;
  border-radius: 15px;
  padding: 17px;
  background:
    linear-gradient(var(--cloud-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--cloud-200) 1px, transparent 1px),
    var(--cloud-50);
  background-size: 36px 36px;
}

.skill-board__bar {
  align-self: end;
  border-radius: 8px 8px 2px 2px;
  background: var(--blue-500);
}

.skill-board__bar:nth-child(1) { height: 35%; }
.skill-board__bar:nth-child(2) { height: 58%; }
.skill-board__bar:nth-child(3) { height: 48%; }
.skill-board__bar:nth-child(4) { height: 78%; background: var(--orange-500); }
.skill-board__bar:nth-child(5) { height: 92%; background: var(--mint-300); }

.skill-board figcaption {
  padding: 10px 7px 2px;
  color: var(--ink-600);
  font-size: 11px;
}

.practice-photo {
  position: relative;
  margin: 38px 0;
  border-radius: 28px 28px 28px 7px;
  padding: 9px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(27, 45, 76, 0.13);
}

.practice-photo::after {
  content: "PRAXIS";
  position: absolute;
  top: 25px;
  left: -10px;
  border-radius: 0 99px 99px 0;
  padding: 7px 14px;
  color: var(--white);
  background: var(--orange-500);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.practice-photo img {
  width: 100%;
  max-height: 470px;
  border-radius: 20px 20px 20px 4px;
  object-fit: cover;
}

.practice-photo figcaption {
  padding: 11px 9px 4px;
  color: var(--ink-600);
  font-size: 11px;
}

.detour-alert {
  border: 1px solid #f3baa4;
  background: var(--orange-100);
}

.detour-alert h3 {
  color: #a53d17;
}

.decision-zone {
  scroll-margin-top: 105px;
  margin-top: 70px;
  border-top: 1px solid var(--cloud-200);
  padding-top: 48px;
}

.route-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 27px 0;
}

.route-choice {
  min-height: 210px;
  border: 1px solid var(--cloud-200);
  border-radius: 19px;
  padding: 20px;
  background: var(--white);
}

.route-choice--selected {
  color: var(--white);
  border-color: var(--blue-700);
  background: var(--blue-700);
  transform: translateY(-8px);
}

.route-choice small {
  color: var(--orange-500);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-choice--selected small {
  color: var(--mint-300);
}

.route-choice h3 {
  margin: 12px 0 9px;
  font-family: var(--headline);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.route-choice p {
  margin: 0;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.55;
}

.route-choice--selected p {
  color: #d7e2f5;
}

.small-note {
  color: var(--ink-600);
  font-size: 12px;
}

.recommendation {
  scroll-margin-top: 105px;
  margin-top: 38px;
  border-radius: 30px 30px 30px 8px;
  padding: 43px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(132, 223, 194, 0.28), transparent 12rem),
    var(--blue-500);
}

.recommendation p {
  max-width: 620px;
}

.recommendation .small-note {
  color: #dbe7ff;
}

.brand-brief {
  color: var(--ink-600);
  background: var(--cloud-100);
  font-size: 13px;
}

.legal-hero {
  padding: 72px 0 46px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(16, 24, 40, 0.94), rgba(23, 70, 157, 0.91)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px);
}

.legal-hero__inner,
.legal-document {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.crumb-trail {
  margin-bottom: 20px;
  color: #aebed5;
  font-size: 12px;
}

.crumb-trail a {
  color: var(--mint-300);
}

.legal-hero h1 {
  margin: 0 0 11px;
  font-family: var(--headline);
  font-size: clamp(45px, 7vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.legal-hero p {
  margin: 0;
  color: #d7e2f5;
  font-family: var(--serif);
  font-size: 20px;
}

.legal-document {
  padding-block: 55px 90px;
}

.legal-document h2 {
  margin: 43px 0 13px;
  padding-top: 22px;
  border-top: 1px solid var(--cloud-200);
  font-family: var(--headline);
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--ink-600);
}

.legal-document code {
  border-radius: 5px;
  padding: 2px 6px;
  background: var(--cloud-100);
}

.contact-manifest {
  display: grid;
  grid-template-columns: 170px 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cloud-200);
  border-radius: 22px;
  background: var(--white);
}

.contact-manifest dt,
.contact-manifest dd {
  margin: 0;
  padding: 15px 18px;
  border-bottom: 1px solid var(--cloud-200);
}

.contact-manifest dt {
  color: var(--blue-700);
  background: var(--cloud-100);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-hangar {
  padding: 54px 0 23px;
  color: #afbdd2;
  background: var(--ink-950);
}

.site-hangar__columns {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 60px;
}

.site-hangar__brand {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--headline);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-hangar p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.65;
}

.site-hangar h2 {
  margin: 0 0 13px;
  color: var(--mint-300);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-hangar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-hangar li {
  margin: 7px 0;
}

.site-hangar a {
  color: var(--white);
  font-size: 12px;
  text-decoration: none;
}

.site-hangar a:hover {
  color: var(--mint-300);
}

.site-hangar__base {
  margin-top: 40px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #75849b;
  font-size: 11px;
}

.site-hangar--compact {
  padding-top: 36px;
}

.site-hangar--compact .site-hangar__base {
  margin-top: 20px;
}

.consent-panel {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  width: min(calc(100% - 40px), 470px);
  border: 1px solid #c7d2e2;
  border-radius: 23px 23px 23px 7px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.24);
}

.consent-panel[hidden] {
  display: none;
}

.consent-panel p {
  margin: 0 0 14px;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.5;
}

.consent-panel__actions {
  display: flex;
  gap: 10px;
}

.consent-panel button {
  min-height: 38px;
  border: 1px solid var(--cloud-200);
  border-radius: 99px;
  padding: 7px 14px;
  color: var(--ink-950);
  background: var(--cloud-100);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.consent-panel button:last-child {
  color: var(--white);
  border-color: var(--blue-500);
  background: var(--blue-500);
}

@media (max-width: 990px) {
  .runway__layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .runway-photo {
    max-width: 95%;
    justify-self: center;
  }

  .route-map {
    min-height: 350px;
  }

  .guide-grid {
    grid-template-columns: minmax(0, var(--copy));
    gap: 36px;
  }

  .flight-plan {
    position: static;
  }

  .flight-plan ol {
    columns: 2;
    column-gap: 26px;
  }

  .site-hangar__columns {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .frame {
    width: min(calc(100% - 28px), var(--canvas));
  }

  .flight-header__bar {
    min-height: 67px;
  }

  .wordmark__tag {
    display: none;
  }

  .nav-trigger {
    display: block;
  }

  .flight-nav {
    display: none;
    position: absolute;
    top: 67px;
    right: 14px;
    left: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--cloud-200);
    border-radius: 19px;
    padding: 9px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.18);
  }

  .flight-nav.is-visible {
    display: flex;
  }

  .flight-nav a {
    display: block;
    padding: 10px 12px;
  }

  .runway__layout {
    min-height: auto;
    padding-block: 52px;
  }

  .runway h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .runway-photo {
    margin-inline: 4px 10px;
  }

  .runway-photo img {
    min-height: 360px;
  }

  .runway-photo__stamp {
    right: -9px;
  }

  .route-map {
    min-height: 330px;
    padding: 25px;
  }

  .route-map__point {
    width: 105px;
  }

  .route-map__point--one {
    left: 18px;
  }

  .route-map__point--two {
    right: 15px;
  }

  .route-map__point--three {
    right: 80px;
  }

  .quick-signals__grid {
    grid-template-columns: 1fr;
  }

  .quick-signal {
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--cloud-200);
  }

  .guide-grid {
    padding-block: 45px 72px;
  }

  .flight-plan ol {
    columns: 1;
  }

  .checkpoint {
    margin-top: 53px;
  }

  .course-ribbon {
    grid-template-columns: 1fr;
  }

  .route-choices {
    grid-template-columns: 1fr;
  }

  .route-choice {
    min-height: auto;
  }

  .route-choice--selected {
    transform: none;
  }

  .recommendation {
    padding: 31px 22px;
  }

  .site-hangar__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .contact-manifest dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .contact-manifest dd {
    padding-top: 5px;
  }
}

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

  .flight-nav__primary,
  .lift-button {
    transition: none;
  }
}
