:root {
  --font: 'Instrument Sans', Inter, Arial, 'Helvetica Neue', sans-serif;
  --ivory: #f5f2ed;
  --paper: #ffffff;
  --ink: #17191a;
  --muted: #62615e;
  --rule: #cecbc5;
  --blue-wash: #ebeef4;
  --cobalt: #0037a6;
  --cobalt-hover: #002c86;
  --orange: #c83a13;
  --orange-bright: #ff8a00;
  --green: #176b4d;
  --content-max: 1280px;
  --gutter: 64px;
  --control-h: 52px;
  --focus: 3px solid var(--cobalt);
  --focus-on-dark: 3px solid var(--orange-bright);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
fieldset {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.048em;
}

h2 {
  font-size: clamp(2.65rem, 3.35vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

::selection {
  background: var(--cobalt);
  color: var(--paper);
}

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

.section-blue :focus-visible,
.mechanism-section :focus-visible,
.trust-section :focus-visible,
.final-cta :focus-visible,
.site-footer :focus-visible {
  outline: var(--focus-on-dark);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 18px;
  border: 2px solid var(--ink);
  font-weight: 700;
  text-decoration: none;
}

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

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-max));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cobalt);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  flex: 0 0 auto;
}

.eyebrow-light {
  color: var(--paper);
}

.eyebrow-light > span {
  background: var(--orange-bright);
}

.button {
  min-height: var(--control-h);
  border: 1px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.button-primary {
  background: var(--cobalt);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--cobalt-hover);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--cobalt);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: var(--orange-bright);
}

.button-line {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-line:hover {
  background: var(--ink);
  color: var(--paper);
}

.button-link {
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 2px;
  background: transparent;
  color: var(--cobalt);
}

.button-link:hover {
  color: var(--cobalt-hover);
}

.text-button {
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.text-button:hover {
  border-bottom-color: currentColor;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 0;
  display: inline-grid;
  place-items: center;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--ivory) 94%, transparent);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 27px;
  height: 24px;
  display: inline-block;
}

.brand-mark i {
  position: absolute;
  left: 0;
  width: 27px;
  height: 8px;
  background: var(--cobalt);
  transform: skewX(-27deg);
}

.brand-mark i:first-child {
  top: 2px;
}

.brand-mark i:last-child {
  bottom: 2px;
  width: 19px;
  background: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  display: none;
  place-items: center;
  gap: 6px;
  padding: 13px 11px;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--ink) 45%, transparent);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  min-height: 100%;
  padding: 28px 24px 32px;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  animation: slide-in 220ms ease both;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.menu-label {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  min-height: 67px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 672px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero-grid {
  min-height: 672px;
  display: grid;
  grid-template-columns: minmax(0, 46.7fr) minmax(0, 53.3fr);
  grid-template-areas: 'copy media';
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
  padding: 88px clamp(40px, 4vw, 64px) 72px max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  max-width: 620px;
}

.hero-lede {
  max-width: 585px;
  margin: 30px 0 0;
  color: #454644;
  font-size: 1.18rem;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 30px;
  margin-top: 34px;
}

.commercial-line {
  margin: 22px 0 0;
  color: #494a47;
  font-size: 0.79rem;
  font-weight: 700;
}

.boundary-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.boundary-line span {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 750;
}

.hero-media {
  position: relative;
  grid-area: media;
  min-width: 0;
  min-height: 672px;
  overflow: hidden;
  background: #b9b8b4;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 46% 50%;
}

.hero-status {
  position: absolute;
  top: 11%;
  left: 54%;
  width: min(33%, 260px);
  min-width: 230px;
  min-height: 465px;
  border: 6px solid var(--ink);
  border-radius: 34px;
  padding: 28px 18px 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 60px rgba(14, 18, 25, 0.25);
  transform: rotate(2deg);
  transform-origin: center;
}

.hero-status::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 64px;
  height: 18px;
  border-radius: 12px;
  background: var(--ink);
  transform: translateX(-50%);
}

.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--rule);
}

.status-kicker,
.status-count {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status-count {
  color: var(--cobalt);
}

.hero-status > p {
  margin: 19px 0 14px;
  font-size: 1.3rem;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-status ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-status li {
  min-height: 46px;
  border-top: 1px solid #e1ded8;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.73rem;
  font-weight: 650;
}

.hero-status li span {
  width: 18px;
  height: 18px;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.65rem;
}

.hero-status li.is-done span {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--paper);
}

.hero-status small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.35;
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 22px;
  width: 42px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll i {
  width: 1px;
  height: 26px;
  background: currentColor;
}

/* Situation routes */
.section-blue {
  background: var(--cobalt);
  color: var(--paper);
}

.route-selector {
  min-height: 344px;
  padding: 68px 0 64px;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 96px;
}

.route-intro h2 {
  max-width: 470px;
}

.route-intro > p:last-child {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.route-list {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.route-row {
  width: 100%;
  min-height: 90px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  grid-template-columns: 42px 1fr 48px;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  transition:
    padding 170ms ease,
    background-color 170ms ease;
}

.route-row:hover,
.route-row:focus-visible {
  padding-inline: 16px 10px;
  background: rgba(255, 255, 255, 0.09);
}

.route-number {
  color: var(--orange-bright);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.route-text {
  display: grid;
  gap: 1px;
}

.route-text strong {
  font-size: 1.13rem;
  line-height: 1.3;
}

.route-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  line-height: 1.45;
}

.route-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  justify-self: end;
  font-size: 1.2rem;
}

/* Airport evidence */
.airport-section {
  min-height: 560px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.airport-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 59%) minmax(400px, 41%);
}

.airport-media {
  position: relative;
  overflow: hidden;
  background: #252628;
}

.airport-media picture,
.airport-media img {
  width: 100%;
  height: 100%;
}

.airport-media img {
  object-fit: cover;
  object-position: 56% 50%;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 12px 18px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.photo-caption span {
  color: var(--orange);
}

.airport-copy {
  padding: 68px max(var(--gutter), calc((100vw - var(--content-max)) / 2)) 64px clamp(42px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.airport-copy > p:not(.eyebrow) {
  max-width: 565px;
  margin: 24px 0 0;
  color: var(--muted);
}

.evidence-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  min-height: 44px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

.evidence-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.evidence-list li span {
  color: var(--cobalt);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 30px;
}

.source-link {
  color: var(--cobalt);
  font-size: 0.76rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

/* Output branching */
.outputs-section {
  min-height: 660px;
  padding: 104px 0 96px;
  background: var(--ivory);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  max-width: 750px;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
}

.output-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 150px minmax(430px, 1.2fr);
  align-items: center;
  margin-top: 62px;
}

.record-card {
  min-height: 278px;
  border: 1px solid var(--ink);
  padding: 26px 28px;
  background: var(--paper);
}

.map-label {
  display: block;
  color: var(--cobalt);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
}

.record-icon {
  width: 60px;
  height: 48px;
  margin: 25px 0 18px;
  position: relative;
}

.record-icon span {
  position: absolute;
  width: 43px;
  height: 31px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.record-icon span:nth-child(1) {
  left: 0;
  top: 0;
}
.record-icon span:nth-child(2) {
  left: 8px;
  top: 8px;
}
.record-icon span:nth-child(3) {
  left: 16px;
  top: 16px;
  border-color: var(--cobalt);
}

.record-card h3 {
  font-size: 1.25rem;
}

.record-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.map-connector {
  position: relative;
  height: 205px;
}

.map-connector i,
.map-connector span {
  position: absolute;
  background: var(--ink);
}

.map-connector i {
  top: 50%;
  left: 0;
  width: 50%;
  height: 1px;
}

.map-connector span:nth-child(2) {
  top: 25%;
  right: 0;
  width: 50%;
  height: 1px;
}

.map-connector span:nth-child(3) {
  right: 0;
  bottom: 25%;
  width: 50%;
  height: 1px;
}

.map-connector::before {
  content: '';
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 50%;
  width: 1px;
  background: var(--ink);
}

.map-connector::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 9px;
  height: 9px;
  background: var(--orange);
}

.destination-stack {
  display: grid;
  gap: 16px;
}

.destination-card {
  min-height: 136px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 48px 1fr 44px;
  align-items: center;
  gap: 22px;
  padding: 18px 4px 18px 0;
}

.destination-code {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--cobalt);
  color: var(--paper);
  font-weight: 800;
}

.destination-card h3 {
  margin-top: 5px;
  font-size: 1.15rem;
}

.destination-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.destination-arrow {
  font-size: 1.4rem;
}

.fixture-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

/* Mechanism */
.mechanism-section {
  min-height: 500px;
  padding: 88px 0 80px;
  background: var(--ink);
  color: var(--paper);
}

.mechanism-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.6fr);
  gap: 60px;
}

.mechanism-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.mechanism-head p:last-child {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.pipeline {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr;
  align-items: center;
  margin-top: 66px;
}

.pipeline article {
  min-height: 190px;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
  padding-top: 18px;
}

.pipeline-number {
  color: var(--orange-bright);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pipeline-icon {
  position: relative;
  width: 54px;
  height: 44px;
  margin: 18px 0 15px;
}

.files-icon i {
  position: absolute;
  width: 36px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.files-icon i:nth-child(2) {
  left: 7px;
  top: 7px;
}
.files-icon i:nth-child(3) {
  left: 14px;
  top: 14px;
  border-color: var(--orange-bright);
}

.timeline-icon::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 0;
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}

.timeline-icon i {
  position: absolute;
  top: 17px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--paper);
  background: var(--ink);
}

.timeline-icon i:nth-child(1) {
  left: 0;
}
.timeline-icon i:nth-child(2) {
  left: 22px;
  background: var(--orange-bright);
  border-color: var(--orange-bright);
}
.timeline-icon i:nth-child(3) {
  right: 0;
}

.ledger-icon,
.index-icon {
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.ledger-icon i,
.index-icon i {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.6);
}

.index-icon::after {
  content: '01\A 02\A 03';
  white-space: pre;
  position: absolute;
  inset: 4px 7px;
  color: var(--orange-bright);
  font-size: 0.47rem;
  font-style: normal;
  line-height: 1.5;
}

.pipeline h3 {
  font-size: 1.08rem;
}

.pipeline p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.45;
}

.pipeline-arrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.35rem;
  text-align: center;
}

/* Sample pack */
.sample-section {
  min-height: 1000px;
  padding: 104px 0 96px;
  background: var(--paper);
}

.sample-heading {
  margin-bottom: 45px;
}

.sample-label {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 9px;
  background: var(--orange);
  color: var(--paper);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.3;
}

.sample-controls {
  min-height: 62px;
  border: 1px solid var(--rule);
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--ivory);
}

.pack-tabs {
  display: flex;
  align-items: stretch;
}

.pack-tabs button,
.page-tabs button {
  min-height: 44px;
  border: 0;
  border-right: 1px solid var(--rule);
  padding: 0 20px;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  cursor: pointer;
}

.pack-tabs button:first-child,
.page-tabs button:first-child {
  border-left: 1px solid var(--rule);
}

.pack-tabs button[aria-selected='true'] {
  background: var(--cobalt);
  color: var(--paper);
  border-color: var(--cobalt);
}

.sample-open {
  color: var(--cobalt);
}

.sample-workspace {
  min-height: 640px;
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  background: var(--blue-wash);
}

.sample-main {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.page-tabs {
  min-height: 54px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 5px 12px;
  background: var(--paper);
}

.page-tabs button {
  white-space: nowrap;
}

.page-tabs button[aria-selected='true'] {
  color: var(--cobalt);
  box-shadow: inset 0 -3px 0 var(--cobalt);
}

.document-spread {
  min-height: 500px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding: 30px;
  overflow: hidden;
}

.pack-document {
  width: 100%;
  min-height: 455px;
  padding: 25px 26px 22px;
  background: var(--paper);
  color: #17191a;
  font-size: 0.7rem;
  line-height: 1.35;
  box-shadow: 0 18px 40px rgba(22, 29, 41, 0.1);
  opacity: 0.62;
  transform: scale(0.97);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  font-variant-numeric: tabular-nums;
}

.pack-document.is-active {
  opacity: 1;
  transform: scale(1);
}

.doc-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--cobalt);
}

.doc-brand {
  display: grid;
  gap: 2px;
}

.doc-brand strong {
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.doc-brand span,
.doc-page-number {
  color: #73736f;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-sample-stamp {
  display: inline-block;
  border: 1px solid var(--orange);
  padding: 3px 5px;
  color: var(--orange);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 17px;
}

.doc-title-row h4 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.doc-title-row p {
  margin: 0;
  color: #73736f;
  font-size: 0.54rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.doc-field {
  min-height: 48px;
  border: 1px solid #d8d7d3;
  padding: 7px 8px;
}

.doc-field span,
.doc-section-title {
  display: block;
  margin-bottom: 3px;
  color: #777773;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-field strong {
  display: block;
  font-size: 0.66rem;
}

.doc-money {
  margin-top: 13px;
  border-top: 1px solid #b8b7b2;
}

.doc-money-row {
  min-height: 28px;
  border-bottom: 1px solid #dddcd7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.doc-money-row.total {
  min-height: 38px;
  border-bottom: 3px solid var(--cobalt);
  color: var(--cobalt);
  font-weight: 800;
}

.doc-money-row small {
  color: #6b6b67;
}

.doc-note {
  margin: 12px 0 0;
  padding: 8px;
  background: #f3f1eb;
  color: #5f605e;
  font-size: 0.55rem;
}

.doc-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  table-layout: fixed;
}

.doc-table th,
.doc-table td {
  border-bottom: 1px solid #d8d7d2;
  padding: 7px 5px;
  text-align: left;
  vertical-align: top;
}

.doc-table th {
  color: #696a67;
  font-size: 0.46rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.doc-table td:last-child,
.doc-table th:last-child {
  text-align: right;
}

.doc-timeline {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.doc-timeline li {
  position: relative;
  min-height: 44px;
  border-left: 1px solid var(--cobalt);
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  margin-left: 4px;
  padding: 0 0 12px 15px;
}

.doc-timeline li::before {
  content: '';
  position: absolute;
  top: 2px;
  left: -4px;
  width: 7px;
  height: 7px;
  background: var(--cobalt);
}

.doc-timeline time {
  color: #62635f;
  font-size: 0.54rem;
  font-weight: 700;
}

.doc-file-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.doc-file-list li {
  min-height: 43px;
  border-top: 1px solid #d7d6d1;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
}

.doc-file-list li:last-child {
  border-bottom: 1px solid #d7d6d1;
}

.doc-file-list span:first-child {
  color: var(--cobalt);
  font-size: 0.52rem;
  font-weight: 800;
}

.doc-file-list small {
  color: #72736f;
  font-size: 0.49rem;
}

.doc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 8px;
  border-top: 1px solid #d6d5d0;
  color: #72736f;
  font-size: 0.48rem;
}

.sample-pagination {
  min-height: 78px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px;
  background: var(--paper);
}

.sample-pagination .icon-button {
  width: 42px;
  height: 42px;
  font-size: 1rem;
}

.sample-pagination p {
  min-width: 155px;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 750;
  text-align: center;
}

.pack-summary {
  border-left: 1px solid var(--rule);
  padding: 32px 28px;
  background: var(--paper);
}

.pack-summary h3 {
  margin-top: 18px;
  font-size: 1.6rem;
}

.summary-meta {
  margin: 5px 0 25px;
  color: var(--muted);
  font-size: 0.75rem;
}

.pack-summary dl {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.pack-summary dl div {
  min-height: 49px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pack-summary dt {
  color: var(--muted);
  font-size: 0.69rem;
}

.pack-summary dd {
  margin: 0;
  color: var(--cobalt);
  font-size: 1.1rem;
  font-weight: 800;
}

.review-flag {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  margin-top: 24px;
  padding: 13px;
  background: #fff1e9;
}

.review-flag > span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
}

.review-flag p {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
}

.review-flag strong {
  display: block;
  color: var(--ink);
  font-size: 0.7rem;
}

.included-list {
  margin-top: 23px;
}

.included-list p {
  margin-bottom: 8px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.included-list ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.68rem;
}

.sample-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  margin-top: 26px;
}

.sample-bottom > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.sample-bottom > div {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}

/* Three steps */
.steps-section {
  min-height: 440px;
  padding: 86px 0 80px;
  background: var(--ivory);
}

.steps-head {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: end;
  gap: 60px;
}

.steps-head .eyebrow {
  margin: 0 0 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--ink);
}

.steps-grid article {
  min-height: 180px;
  padding: 22px 32px 18px 0;
  border-right: 1px solid var(--rule);
}

.steps-grid article + article {
  padding-left: 32px;
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid article > span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps-grid h3 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.steps-grid p {
  max-width: 315px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Trust */
.trust-section {
  min-height: 400px;
  padding: 82px 0;
  background: var(--cobalt);
  color: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(500px, 1.18fr);
  gap: 100px;
  align-items: center;
}

.trust-copy > p:not(.eyebrow):not(.prelaunch-note) {
  max-width: 510px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.prelaunch-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0 0;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.prelaunch-note span {
  color: var(--orange-bright);
}

.trust-ledger {
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.ledger-head,
.ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
}

.ledger-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange-bright);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ledger-row {
  min-height: 67px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.ledger-row div {
  display: grid;
}

.ledger-row strong {
  font-size: 0.8rem;
}

.ledger-row small,
.ledger-row > span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.65rem;
}

.trust-ledger > a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 750;
  text-decoration: none;
}

.trust-ledger > a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Pricing */
.pricing-section {
  min-height: 680px;
  padding: 102px 0 80px;
  background: var(--paper);
}

.pricing-head {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.pricing-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.pricing-head > p:last-child {
  margin: 0 0 3px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pricing-grid-launch {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.price-card {
  min-height: 380px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  padding: 26px 28px 28px;
}

.price-card:last-child {
  border-right: 0;
}

.price-card.featured {
  background: var(--blue-wash);
}

.price-tag {
  color: var(--cobalt);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price-card h3 {
  margin-top: 10px;
  font-size: 1.45rem;
}

.price-card > div > p {
  min-height: 56px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0 14px;
}

.price strong {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.price small {
  color: var(--muted);
  font-size: 0.68rem;
}

.price-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  min-height: 33px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  font-size: 0.72rem;
}

.price-card li::before {
  content: '✓';
  margin-right: 9px;
  color: var(--cobalt);
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-boundary {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

/* FAQ */
.faq-section {
  min-height: 680px;
  padding: 100px 0;
  background: var(--ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.73fr) minmax(500px, 1.27fr);
  gap: 110px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.faq-intro > p:last-child {
  max-width: 450px;
  margin: 25px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 2px;
  background: transparent;
  font-size: 1rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.faq-item button[aria-expanded='true'] span {
  background: var(--cobalt);
  color: var(--paper);
  transform: rotate(45deg);
}

.faq-item [role='region'] p {
  max-width: 620px;
  margin: -2px 0 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Final and footer */
.final-cta {
  min-height: 310px;
  padding: 68px 0;
  background: var(--ink);
  color: var(--paper);
}

.final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(400px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.final-action > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
}

.final-action small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
}

.site-footer {
  padding: 66px 0 28px;
  background: #0f1011;
  color: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.7fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 48px;
}

.brand-footer .brand-mark i:first-child {
  background: var(--paper);
}

.footer-top > div:first-child > p {
  max-width: 270px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
}

.footer-top nav a {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-top nav a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-action p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 30px;
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.61rem;
}

.sticky-mobile-cta {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 50;
  min-height: 56px;
  border: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--cobalt);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(10, 19, 37, 0.24);
}

.sticky-mobile-cta.is-visible {
  display: flex;
  animation: sticky-in 180ms ease both;
}

@keyframes sticky-in {
  from {
    transform: translateY(120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Dialogs */
dialog {
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(8, 10, 13, 0.68);
  backdrop-filter: blur(4px);
}

.checklist-dialog {
  width: min(760px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  background: var(--paper);
  overflow: auto;
}

.dialog-shell {
  min-height: min(760px, calc(100dvh - 40px));
  display: flex;
  flex-direction: column;
}

.dialog-header {
  min-height: 84px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 14px 24px;
}

.dialog-header > .icon-button {
  justify-self: end;
}

.dialog-progress {
  min-width: 180px;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  text-align: center;
}

.dialog-progress i {
  width: 100%;
  height: 3px;
  display: block;
  background: var(--rule);
}

.dialog-progress b {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--cobalt);
  transition: width 180ms ease;
}

.checklist-step {
  width: min(100% - 80px, 610px);
  margin: 0 auto;
  padding: 54px 0 35px;
}

.checklist-step h2 {
  max-width: 570px;
  font-size: 2.45rem;
}

.dialog-lede {
  margin: 17px 0 0;
  color: var(--muted);
}

.option-list,
.check-list {
  border: 0;
  margin: 34px 0 0;
  padding: 0;
}

.option-list label,
.check-list label {
  position: relative;
  min-height: 74px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 18px;
  padding: 12px 4px;
  cursor: pointer;
}

.option-list label:last-child,
.check-list label:last-child {
  border-bottom: 1px solid var(--rule);
}

.option-list input,
.check-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-list label > span,
.check-list label > span {
  display: grid;
  gap: 2px;
}

.option-list strong,
.check-list strong {
  font-size: 0.95rem;
}

.option-list small,
.check-list small {
  color: var(--muted);
  font-size: 0.72rem;
}

.option-list label > i,
.check-list label > i {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  justify-self: end;
  font-size: 0.72rem;
  font-style: normal;
}

.check-list label > i {
  color: transparent;
}

.option-list label > i {
  border-radius: 50%;
}

.option-list input:checked ~ i {
  border: 7px solid var(--cobalt);
}

.check-list input:checked ~ i {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--paper);
}

.option-list label:has(input:focus-visible),
.check-list label:has(input:focus-visible) {
  outline: var(--focus);
  outline-offset: 2px;
}

.option-list label:hover,
.check-list label:hover {
  background: var(--blue-wash);
}

.option-list.is-invalid {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.field-error {
  margin: 13px 0 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 750;
}

.checklist-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
}

.checklist-result section {
  border: 1px solid var(--rule);
  padding: 18px;
}

.result-label {
  color: var(--green);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.result-missing {
  color: var(--orange);
}

.checklist-result ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-result li {
  border-top: 1px solid var(--rule);
  padding: 8px 0;
  font-size: 0.72rem;
  line-height: 1.4;
}

.checklist-result li::before {
  content: '-';
  margin-right: 7px;
  color: var(--cobalt);
}

.result-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  background: var(--blue-wash);
}

.result-note > span {
  width: 26px;
  height: 26px;
  border: 1px solid var(--cobalt);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 800;
}

.result-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.result-note strong {
  display: block;
  color: var(--ink);
}

.dialog-footer {
  min-height: 82px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding: 14px 24px;
  background: var(--ivory);
}

.dialog-footer [data-checklist-back] {
  justify-self: start;
}

.dialog-footer [data-checklist-next] {
  justify-self: end;
}

.dialog-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  text-align: center;
}

.sample-dialog {
  width: calc(100% - 40px);
  height: calc(100dvh - 40px);
  background: var(--blue-wash);
}

.sample-dialog-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.sample-dialog-header {
  background: var(--paper);
  grid-template-columns: 1fr auto;
}

.sample-dialog-header > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sample-dialog-header h2 {
  font-size: 1.4rem;
}

.sample-dialog-controls {
  min-height: 66px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 22px;
  background: var(--ivory);
}

.sample-dialog-controls .sample-pagination {
  min-height: auto;
  border: 0;
  padding: 0;
  background: transparent;
}

.dialog-document-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px;
  overflow: auto;
}

.dialog-document-stage .pack-document {
  min-height: 640px;
  padding: 35px;
  font-size: 0.85rem;
}

.sample-dialog-disclaimer {
  margin: 0;
  padding: 9px 18px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.61rem;
  text-align: center;
}

.prelaunch-dialog {
  width: min(520px, calc(100% - 40px));
  background: var(--paper);
}

.prelaunch-shell {
  position: relative;
  padding: 55px 48px 48px;
}

.prelaunch-shell > .icon-button {
  position: absolute;
  top: 14px;
  right: 14px;
}

.prelaunch-shell h2 {
  font-size: 2.3rem;
}

.prelaunch-shell > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--muted);
}

/* Reveal motion */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Medium desktop */
@media (max-width: 1279px) {
  :root {
    --gutter: 32px;
  }

  .desktop-nav {
    gap: 18px;
  }
  .header-actions {
    gap: 14px;
  }
  .hero-copy {
    padding-right: 40px;
  }
  .hero-status {
    left: 52%;
  }
  .airport-copy {
    padding-right: var(--gutter);
    padding-left: 45px;
  }
  .output-map {
    grid-template-columns: minmax(250px, 0.8fr) 110px minmax(390px, 1.2fr);
  }
  .sample-workspace {
    grid-template-columns: minmax(0, 1fr) 292px;
  }
  .pack-summary {
    padding-inline: 22px;
  }
  .document-spread {
    gap: 16px;
    padding: 22px;
  }
  .trust-grid {
    gap: 60px;
  }
  .faq-layout {
    gap: 70px;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --header-h: 72px;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }
  .menu-button {
    display: grid;
  }

  .hero,
  .hero-grid {
    min-height: 660px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .hero-copy {
    padding-top: 52px;
    padding-bottom: 50px;
  }
  .hero-status {
    top: 13%;
    left: 45%;
    min-width: 210px;
    transform: scale(0.86) rotate(2deg);
    transform-origin: top left;
  }
  .hero-scroll {
    display: none;
  }

  .route-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 52px;
  }

  .airport-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .airport-copy {
    padding: 52px 32px 48px;
  }
  .airport-copy h2 {
    font-size: 2.35rem;
  }
  .section-actions .button {
    width: 100%;
  }

  .output-map {
    grid-template-columns: 1fr 80px 1.45fr;
  }
  .destination-card {
    grid-template-columns: 42px 1fr 28px;
    gap: 14px;
  }
  .destination-code {
    width: 42px;
    height: 42px;
  }

  .mechanism-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mechanism-head .eyebrow {
    margin-bottom: 0;
  }
  .mechanism-head p:last-child {
    max-width: 620px;
  }
  .pipeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .pipeline-arrow {
    display: none;
  }

  .sample-workspace {
    grid-template-columns: 1fr;
  }
  .pack-summary {
    border-top: 1px solid var(--rule);
    border-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 38px;
  }
  .pack-summary > .map-label,
  .pack-summary > h3,
  .pack-summary > .summary-meta {
    grid-column: 1;
  }
  .pack-summary dl {
    grid-column: 1;
  }
  .review-flag,
  .included-list {
    grid-column: 2;
  }
  .review-flag {
    grid-row: 1 / 4;
    align-self: start;
  }

  .steps-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .trust-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .trust-copy .eyebrow {
    grid-column: 1 / -1;
  }
  .trust-copy .prelaunch-note {
    grid-column: 2;
  }

  .faq-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
  }

  .final-inner {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-action {
    grid-column: 2;
  }
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom p:last-child {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --header-h: 60px;
    --control-h: 48px;
  }

  html {
    scroll-padding-top: 74px;
  }
  body {
    font-size: 16px;
    line-height: 1.56;
  }
  h1 {
    font-size: clamp(2.55rem, 11.3vw, 2.75rem);
    line-height: 1.045;
    letter-spacing: -0.04em;
  }
  h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.35rem);
    line-height: 1.055;
  }
  h3 {
    font-size: 1.45rem;
  }

  .site-header {
    background: var(--ivory);
    backdrop-filter: none;
  }
  .header-inner {
    width: calc(100% - 40px);
  }
  .brand {
    font-size: 1rem;
  }
  .brand-mark {
    transform: scale(0.9);
    transform-origin: left center;
    margin-right: -2px;
  }
  .menu-button {
    width: 44px;
    height: 44px;
    border: 0;
    padding-right: 0;
    justify-items: end;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }
  .button-link {
    width: auto;
    min-height: 46px;
  }
  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }
  .hero-grid {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
  }
  .hero-media {
    order: 1;
    min-height: 0;
    height: min(252px, 30svh);
    flex: 0 0 min(252px, 30svh);
  }
  .hero-media img {
    object-position: 45% 50%;
  }
  .hero-status {
    top: auto;
    right: 14px;
    bottom: 13px;
    left: auto;
    width: 110px;
    min-width: 0;
    min-height: 116px;
    border-width: 3px;
    border-radius: 15px;
    padding: 14px 8px 7px;
    box-shadow: 0 10px 26px rgba(11, 14, 20, 0.24);
    transform: rotate(1deg);
  }
  .hero-status::before {
    top: 3px;
    width: 27px;
    height: 7px;
  }
  .status-top {
    padding-bottom: 5px;
  }
  .status-kicker {
    font-size: 0.35rem;
  }
  .status-count {
    font-size: 0.4rem;
  }
  .hero-status > p {
    margin: 6px 0 4px;
    font-size: 0.66rem;
  }
  .hero-status li {
    min-height: 15px;
    border: 0;
    gap: 4px;
    font-size: 0.37rem;
  }
  .hero-status li span {
    width: 8px;
    height: 8px;
    font-size: 0.3rem;
  }
  .hero-status small {
    display: none;
  }

  .hero-copy {
    order: 2;
    min-height: calc(100svh - var(--header-h) - min(252px, 30svh));
    padding: 26px 20px 24px;
    justify-content: flex-start;
  }
  .hero-copy h1 {
    max-width: 560px;
  }
  .hero-lede {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.48;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px 18px;
    margin-top: 18px;
  }
  .hero-actions .button-primary {
    min-height: 56px;
  }
  .hero-actions .button-link {
    font-size: 0.77rem;
  }
  .commercial-line {
    margin-top: 12px;
    font-size: 0.64rem;
  }
  .boundary-line {
    margin-top: 7px;
    font-size: 0.64rem;
  }
  .boundary-line span {
    width: 16px;
    height: 16px;
  }

  .route-selector {
    padding: 58px 0 52px;
  }
  .route-layout {
    display: block;
  }
  .route-intro > p:last-child {
    margin-top: 18px;
  }
  .route-list {
    margin-top: 34px;
  }
  .route-row {
    min-height: 99px;
    grid-template-columns: 31px 1fr 42px;
    gap: 10px;
  }
  .route-text strong {
    font-size: 1rem;
  }
  .route-text small {
    font-size: 0.69rem;
  }

  .airport-grid {
    display: flex;
    flex-direction: column;
  }
  .airport-media {
    min-height: 285px;
  }
  .airport-copy {
    padding: 54px 20px 58px;
  }
  .airport-copy h2 {
    font-size: 2.25rem;
  }
  .airport-copy > p:not(.eyebrow) {
    margin-top: 18px;
  }
  .evidence-list {
    margin-top: 26px;
  }
  .evidence-list li {
    min-height: 52px;
    font-size: 0.78rem;
  }
  .section-actions {
    display: grid;
    margin-top: 26px;
  }

  .outputs-section {
    min-height: 0;
    padding: 70px 0 64px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 22px;
  }
  .output-map {
    display: block;
    margin-top: 42px;
  }
  .record-card {
    min-height: 260px;
  }
  .map-connector {
    width: 80%;
    height: 105px;
    margin-inline: auto;
  }
  .map-connector i {
    top: 0;
    left: 50%;
    width: 1px;
    height: 50%;
  }
  .map-connector span:nth-child(2) {
    top: auto;
    right: 25%;
    bottom: 0;
    width: 25%;
  }
  .map-connector span:nth-child(3) {
    right: 50%;
    bottom: 0;
    width: 25%;
  }
  .map-connector::before {
    top: 50%;
    right: 25%;
    bottom: auto;
    left: 25%;
    width: 50%;
    height: 1px;
  }
  .map-connector::after {
    top: calc(50% - 4px);
  }
  .destination-card {
    min-height: 150px;
    grid-template-columns: 42px 1fr 28px;
    gap: 12px;
  }
  .fixture-note {
    text-align: left;
  }

  .mechanism-section {
    padding: 68px 0 64px;
  }
  .mechanism-head {
    display: block;
  }
  .mechanism-head p:last-child {
    margin-top: 20px;
  }
  .pipeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 45px;
  }
  .pipeline article {
    min-height: 142px;
    display: grid;
    grid-template-columns: 54px 68px 1fr;
    grid-template-rows: auto 1fr;
    gap: 7px 16px;
    padding: 17px 0;
  }
  .pipeline-number {
    grid-row: 1 / 3;
  }
  .pipeline-icon {
    grid-row: 1 / 3;
    margin: 0;
  }
  .pipeline h3 {
    align-self: end;
  }
  .pipeline p {
    margin: 0;
  }

  .sample-section {
    padding: 72px 0 68px;
  }
  .sample-heading {
    margin-bottom: 32px;
  }
  .sample-controls {
    align-items: stretch;
    flex-direction: column;
    padding: 10px;
  }
  .pack-tabs {
    width: 100%;
  }
  .pack-tabs button {
    flex: 1;
  }
  .sample-open {
    align-self: flex-start;
    min-height: 38px;
  }
  .sample-workspace {
    display: block;
    min-height: 0;
  }
  .sample-main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .page-tabs,
  .document-spread,
  .sample-pagination {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .page-tabs {
    padding-inline: 4px;
  }
  .page-tabs button {
    padding-inline: 15px;
  }
  .document-spread {
    min-height: 500px;
    display: block;
    padding: 20px 12px;
  }
  .document-spread .pack-document {
    display: none;
    min-height: 455px;
    padding-inline: 20px;
  }
  .document-spread .pack-document.is-active {
    display: block;
  }
  .pack-summary {
    display: block;
    padding: 28px 22px;
  }
  .pack-summary .review-flag,
  .pack-summary .included-list {
    margin-top: 22px;
  }
  .sample-bottom {
    display: block;
  }
  .sample-bottom > div {
    display: grid;
    margin-top: 22px;
  }
  .sample-bottom .button-link {
    justify-self: start;
  }

  .steps-section {
    padding: 68px 0 60px;
  }
  .steps-head {
    display: block;
  }
  .steps-head h2 {
    margin-top: 20px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .steps-grid article,
  .steps-grid article + article {
    min-height: 165px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 18px 0 24px;
  }
  .steps-grid h3 {
    margin-top: 22px;
  }

  .trust-section {
    padding: 68px 0;
  }
  .trust-grid {
    display: block;
  }
  .trust-copy {
    display: block;
  }
  .trust-copy .prelaunch-note {
    margin-top: 22px;
  }
  .trust-ledger {
    margin-top: 42px;
  }
  .ledger-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 14px;
  }

  .pricing-section {
    padding: 72px 0 64px;
  }
  .pricing-head {
    display: block;
  }
  .pricing-head .eyebrow {
    margin-bottom: 14px;
  }
  .pricing-head > p:last-child {
    margin-top: 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .price-card {
    min-height: 365px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding-inline: 20px;
  }
  .price-card:last-child {
    border-bottom: 0;
  }

  .faq-section {
    padding: 72px 0;
  }
  .faq-layout {
    display: block;
  }
  .faq-intro {
    position: static;
  }
  .faq-list {
    margin-top: 44px;
  }
  .faq-item button {
    min-height: 78px;
    font-size: 0.93rem;
  }

  .final-cta {
    padding: 62px 0;
  }
  .final-inner {
    display: block;
  }
  .final-action {
    margin-top: 30px;
  }

  .site-footer {
    padding-top: 54px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-action {
    grid-column: auto;
  }
  .footer-action .button {
    width: auto;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-bottom p:last-child {
    grid-column: auto;
  }

  .sticky-mobile-cta[hidden] {
    display: none;
  }

  .checklist-dialog,
  .sample-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
  }
  .dialog-shell {
    min-height: 100dvh;
  }
  .dialog-header {
    min-height: 66px;
    grid-template-columns: 1fr auto;
    padding: 8px 14px;
  }
  .dialog-header .brand {
    display: none;
  }
  .dialog-progress {
    min-width: 145px;
    text-align: left;
  }
  .checklist-step {
    width: calc(100% - 40px);
    padding: 38px 0 28px;
  }
  .checklist-step h2 {
    font-size: 2.05rem;
  }
  .dialog-lede {
    font-size: 0.85rem;
  }
  .option-list,
  .check-list {
    margin-top: 27px;
  }
  .option-list label,
  .check-list label {
    min-height: 72px;
  }
  .checklist-result {
    grid-template-columns: 1fr;
  }
  .dialog-footer {
    position: sticky;
    bottom: 0;
    min-height: 76px;
    grid-template-columns: auto 1fr;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }
  .dialog-footer > p {
    display: none;
  }
  .dialog-footer [data-checklist-next] {
    width: auto;
    min-width: 150px;
  }

  .sample-dialog-header {
    grid-template-columns: 1fr auto;
    padding: 9px 12px;
  }
  .sample-dialog-header > div {
    display: grid;
    gap: 4px;
  }
  .sample-dialog-header h2 {
    font-size: 1rem;
  }
  .sample-dialog-header .sample-label {
    font-size: 0.48rem;
    justify-self: start;
  }
  .sample-dialog-controls {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 12px;
  }
  .sample-dialog-controls .sample-pagination {
    justify-content: space-between;
  }
  .dialog-document-stage {
    display: block;
    padding: 16px 12px;
  }
  .dialog-document-stage .pack-document {
    display: none;
    min-height: 600px;
    padding: 24px 20px;
  }
  .dialog-document-stage .pack-document.is-active {
    display: block;
  }

  .prelaunch-dialog {
    width: calc(100% - 24px);
  }
  .prelaunch-shell {
    padding: 58px 24px 30px;
  }
}

@media (max-width: 479px) and (max-height: 780px) {
  .hero-media {
    height: 216px;
    flex-basis: 216px;
  }
  .hero-copy {
    min-height: calc(100svh - var(--header-h) - 216px);
    padding-top: 20px;
  }
  .hero-copy h1 {
    font-size: 2.35rem;
  }
  .hero-lede {
    font-size: 0.86rem;
  }
  .hero-actions {
    margin-top: 14px;
  }
  .commercial-line {
    margin-top: 8px;
  }
}

@media (max-width: 479px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .hero-actions .button-primary,
  .hero-actions .button-link {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .sticky-mobile-cta,
  .hero-scroll,
  dialog,
  button {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .hero,
  .hero-grid {
    min-height: auto;
  }
  .hero-media {
    min-height: 360px;
  }
  section {
    break-inside: avoid;
  }
}
