@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 700;
}

:root {
  color-scheme: light;
  --paper: #fefefe;
  --paper-cool: #f5f8fc;
  --navy: #001839;
  --navy-soft: #0a2449;
  --ink: #06122e;
  --ink-muted: #44536d;
  --blue: #1550ee;
  --blue-dark: #0d3bc0;
  --route: #1547d3;
  --vermilion: #bf2e1b;
  --rule: #d9e3f0;
  --rule-strong: #afbdd1;
  --success: #087452;
  --danger: #a32819;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --focus: #ffca43;
  --page-width: 1500px;
  --header-gutter: clamp(1.25rem, 3vw, 3.5rem);
  --content-gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--route) var(--paper-cool);
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection,
body *::selection {
  background: #b9cbff;
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

main:focus {
  outline: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-200%);
}

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

.site-header {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(235px, 1fr);
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding-block: 0.75rem;
  padding-inline: max(
    var(--header-gutter),
    calc((100vw - var(--page-width)) / 2 + var(--header-gutter))
  );
  background: var(--navy);
  color: #fff;
}

.site-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.72rem;
  color: #fff;
  font-family: var(--body);
  font-size: 1.32rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.site-brand__mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}

.site-brand__mark img {
  width: 28px;
  height: 28px;
}

.site-brand__mark img,
.site-brand--footer img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(98%) saturate(3290%) hue-rotate(223deg) brightness(94%) contrast(101%);
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.3vw, 2.4rem);
}

.desktop-nav a,
.desktop-actions > a:first-child {
  color: #dce7f7;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.desktop-actions > a:first-child:hover {
  color: #fff;
}

.desktop-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--focus);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.5rem;
}

.desktop-actions {
  justify-content: flex-end;
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.72rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--blue);
  color: #fff;
}

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

.button--light {
  background: #fff;
  color: var(--navy);
}

.button--light:hover {
  background: #e8effd;
}

.button--large {
  min-height: 50px;
  padding-inline: 1.3rem;
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  text-underline-offset: 0.35em;
}

.text-link--light {
  color: #fff;
}

.utility-label {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dispatch-hero {
  --reply-source-length: clamp(2.5rem, 3vw, 3rem);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(560px, 2fr) minmax(270px, 1fr);
  max-width: var(--page-width);
  min-height: min(663px, calc(100vh - 72px));
  margin: 0 auto;
  overflow: hidden;
  background: var(--navy);
}

.dispatch-promise {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 3vw, 3.5rem) clamp(1.5rem, 2.5vw, 2.75rem) 2rem;
  color: #fff;
}

.dispatch-promise h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(3.6rem, 4.45vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.18;
  text-transform: uppercase;
  text-wrap: balance;
}

.dispatch-promise h1 span,
.dispatch-promise h1 em {
  display: block;
  width: 100%;
  transform: scaleX(0.77);
  transform-origin: left center;
  white-space: nowrap;
}

.dispatch-promise h1 em {
  color: #fff;
  font-style: normal;
}

.dispatch-promise > p {
  max-width: 25rem;
  margin: 1.7rem 0 0;
  color: #c7d8ee;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
}

.dispatch-promise__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 2rem;
}

.dispatch-promise__actions .button {
  gap: 1.15rem;
}

.dispatch-promise__actions .button i {
  font-size: 0.95rem;
}

.dispatch-promise__identity {
  max-width: 100% !important;
  margin-top: auto !important;
  padding-top: 2rem;
  color: #9db4d4 !important;
  font-size: 0.72rem !important;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.dispatch-docket {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-self: stretch;
  min-width: 0;
  margin-block: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(0, 10, 27, 0.14);
}

.dispatch-docket::before,
.dispatch-docket::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
}

.dispatch-docket::before {
  top: 0;
  bottom: 0;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  background-image: radial-gradient(circle, var(--navy) 0 7px, transparent 7.5px);
  background-repeat: repeat-y;
  background-position: center 31px;
  background-size: 18px 64px;
}

.dispatch-docket::after {
  display: none;
}

.dispatch-docket__header {
  display: block;
  padding: clamp(1.25rem, 1.75vw, 1.625rem);
  border-bottom: 1px solid var(--rule);
}

.dispatch-docket h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.9rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.1vw, 3.55rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.dispatch-docket h2 span {
  font-family: var(--body);
  font-size: clamp(0.86rem, 1.1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dispatch-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dispatch-meta span:last-child {
  color: var(--vermilion);
  font-variant-numeric: tabular-nums;
}

.dispatch-docket__body {
  display: block;
  min-height: 0;
}

.dispatch-route {
  padding: 0 clamp(1.4rem, 2.3vw, 2rem);
}

.dispatch-route ol {
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, auto);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dispatch-route ol::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 2.25rem;
  bottom: 2.25rem;
  left: 1.2rem;
  width: 2px;
  background: var(--route);
  animation: route-draw 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.route-stage {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem 2rem minmax(0, 1fr) auto;
  gap: clamp(0.65rem, 1.2vw, 1.15rem);
  align-items: center;
  min-height: 4.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.route-stage__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 2px solid var(--route);
  border-radius: 50%;
  background: var(--paper);
  color: var(--route);
  font-size: 0.95rem;
  animation: route-node-arrival 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.route-stage--two .route-stage__icon {
  animation-delay: 180ms;
}

.route-stage--three .route-stage__icon {
  background: var(--route);
  color: #fff;
  animation-delay: 360ms;
}

.route-stage__number {
  color: var(--route);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.route-stage__copy {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.route-stage__copy strong {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.route-stage__copy small {
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.route-stage__copy b {
  color: var(--route);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 0;
}

.route-stage time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.attempts-region {
  position: relative;
  min-width: 0;
  overflow-x: auto;
  scrollbar-color: var(--route) var(--paper-cool);
  scrollbar-width: thin;
}

.attempts-table {
  width: 100%;
  min-width: 450px;
  border-collapse: collapse;
  font-size: 0.77rem;
  font-variant-numeric: tabular-nums;
}

.attempts-table caption {
  padding: 1rem clamp(1.4rem, 2.3vw, 2rem) 0.55rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.attempts-table th,
.attempts-table td {
  padding: 0.4rem clamp(0.8rem, 1.5vw, 1.35rem);
  border-bottom: 1px solid var(--rule);
  text-align: left;
  white-space: nowrap;
}

.attempts-table th {
  color: var(--ink-muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attempts-table th:first-child,
.attempts-table td:first-child {
  padding-left: clamp(1.4rem, 2.3vw, 2rem);
}

.attempts-table th:last-child,
.attempts-table td:last-child {
  position: relative;
  padding-right: clamp(1.4rem, 2.3vw, 2rem);
  text-align: right;
}

.attempt-row--reply {
  background: #f6f9ff;
}

.attempt-row--reply td:first-child {
  box-shadow: inset 2px 0 0 var(--vermilion);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status--delivered {
  color: var(--success);
}

.status--reply {
  color: var(--route);
}

.status--failed {
  color: var(--danger);
}

.dispatch-docket__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  padding: 1rem clamp(1.4rem, 2.3vw, 2rem);
  background: var(--paper-cool);
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.dispatch-docket__footer i {
  margin-right: 0.25rem;
  color: var(--route);
}

.reply-margin {
  position: relative;
  display: flex;
  align-self: stretch;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  padding: clamp(3.25rem, 4.4vw, 4.25rem) clamp(1.6rem, 2.6vw, 2.5rem) 2rem;
  background: var(--paper);
  box-shadow: inset 1px 0 0 var(--rule);
}

.reply-meta {
  margin: -1.25rem 0 1.45rem;
  color: #40516f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reply-margin blockquote {
  margin: 0 0 2rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3rem, 4vw, 4.55rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.reply-margin dl {
  margin: 1.3rem 0 0;
}

.reply-thread {
  border-block: 1px solid #c4d2e8;
}

.reply-thread div {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.72rem 0 0.72rem 0.65rem;
  font-size: 0.69rem;
}

.reply-thread div + div {
  border-top: 1px solid #c4d2e8;
}

.reply-thread__response {
  --reply-connector-rise: clamp(1.25rem, 1.75vw, 1.75rem);
  --reply-connector-run: calc(
    var(--reply-source-length) + clamp(1.6rem, 2.6vw, 2.5rem)
  );
  position: relative;
  box-shadow: inset 2px 0 0 var(--vermilion);
}

.reply-thread__response::before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 50%;
  width: var(--reply-connector-run);
  height: var(--reply-connector-rise);
  border-bottom: 2px solid var(--vermilion);
  border-left: 2px solid var(--vermilion);
  animation: reply-link-draw 520ms 620ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.reply-thread__response::after {
  content: "";
  position: absolute;
  right: calc(100% + var(--reply-connector-run) - 5px);
  bottom: calc(50% + var(--reply-connector-rise) - 4px);
  width: 8px;
  height: 8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--vermilion);
  box-shadow: 0 0 0 1px var(--vermilion);
}

.reply-thread i {
  color: var(--route);
}

.reply-thread span {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reply-thread time {
  color: #52627e;
  font-variant-numeric: tabular-nums;
  font-size: 0.6rem;
  font-weight: 750;
  white-space: nowrap;
}

.reply-margin dl div {
  display: grid;
  grid-template-columns: 5.7rem 1fr;
  gap: 0.5rem;
  padding-block: 0.65rem;
  border-top: 1px solid #c4d2e8;
  font-size: 0.74rem;
}

.reply-margin dt {
  color: #52627e;
  font-weight: 700;
}

.reply-margin dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.reply-margin__note {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  margin: auto 0 0;
  padding-top: 1.8rem;
  color: #40516f;
  font-size: 0.78rem;
}

.reply-margin__note i {
  color: var(--route);
  font-size: 1.5rem;
}

.offer-docket {
  max-width: var(--page-width);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.offer-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.offer-ledger > div {
  --offer-icon-size: 3.15rem;
  --offer-copy-gap: clamp(0.7rem, 1.2vw, 1.2rem);
  --offer-pad-inline: clamp(1rem, 2vw, 2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 7.4rem;
  min-width: 0;
  justify-content: center;
  gap: 0.18rem;
  padding-block: 1.2rem;
  padding-inline-end: var(--offer-pad-inline);
  padding-inline-start: calc(var(--offer-pad-inline) + var(--offer-icon-size) + var(--offer-copy-gap));
  border-right: 1px solid var(--rule);
}

.offer-ledger > div:last-child {
  border-right: 0;
}

.offer-ledger dt {
  display: block;
  min-width: 0;
  color: var(--ink);
}

.offer-ledger dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 1.16;
}

.offer-ledger strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.25vw, 2.4rem);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  line-height: 1;
}

.offer-ledger__icon {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: var(--offer-pad-inline);
  display: grid;
  width: var(--offer-icon-size);
  height: var(--offer-icon-size);
  place-items: center;
  border: 2px solid var(--route);
  border-radius: 50%;
  color: var(--route);
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.offer-docket__note {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0;
  padding: 0.62rem clamp(1rem, 2vw, 2rem) 0.75rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.offer-docket__note > span {
  color: var(--vermilion);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1;
}

.handoff-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 4vw, 4rem);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(1.75rem, 2.2vw, 2.25rem) clamp(1.25rem, 4vw, 4rem);
}

.handoff-story h2,
.managed-pilot h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.handoff-story h2 {
  max-width: none;
  font-size: clamp(3rem, 3.7vw, 4rem);
}

.handoff-story__flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.handoff-story__flow article {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 0 clamp(1rem, 1.6vw, 1.5rem) 1.5rem;
  border-left: 1px solid var(--rule-strong);
}

.handoff-story__flow article:nth-child(n + 3) {
  padding-top: 1.5rem;
  padding-bottom: 0;
  border-top: 1px solid var(--rule-strong);
}

.handoff-story__flow article > span {
  color: var(--route);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 650;
}

.handoff-story__flow h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.handoff-story__flow p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.managed-pilot {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(420px, 1.2fr);
  gap: clamp(3rem, 9vw, 10rem);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--blue);
  color: #fff;
}

.managed-pilot > div:first-child > p {
  max-width: 54ch;
  margin: 2rem 0 0;
  color: #dbe5ff;
}

.managed-pilot__steps ol {
  margin: 0 0 2.4rem;
  padding: 0;
  border-top: 1px solid #6f94f7;
  list-style: none;
}

.managed-pilot__steps li {
  display: grid;
  grid-template-columns: minmax(90px, 0.32fr) 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #6f94f7;
}

.managed-pilot__steps span {
  font-weight: 800;
}

.managed-pilot__steps p {
  margin: 0;
  color: #dbe5ff;
}

.flash-stack {
  max-width: 1000px;
  margin: 1.5rem auto 0;
  padding-inline: 1.25rem;
}

.flash {
  padding: 1rem 1.15rem;
  border: 1px solid var(--rule-strong);
  background: var(--paper-cool);
  font-weight: 700;
}

.flash--error {
  border-color: #d5a69f;
  background: #fff0ed;
  color: #7e2015;
}

.flash--success {
  border-color: #94c9b6;
  background: #ecfaf4;
  color: #075d42;
}

.site-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin: 0;
  padding-block: 4rem 2rem;
  padding-inline: max(
    var(--content-gutter),
    calc((100vw - var(--page-width)) / 2 + var(--content-gutter))
  );
  background: var(--navy);
  color: #fff;
}

.site-footer__identity p,
.site-footer__action p {
  margin: 0.85rem 0 0;
  color: #a9bdd8;
  font-size: 0.78rem;
}

.site-brand--footer {
  gap: 0.55rem;
}

.site-footer__links {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.site-footer__links a {
  color: #c7d8ee;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__action {
  align-self: start;
  padding-left: clamp(0rem, 3vw, 3rem);
  border-left: 1px solid #29466d;
}

.site-footer__action .text-link {
  margin-top: 1.25rem;
  font-size: 0.82rem;
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #29466d;
  color: #91a9c9;
  font-size: 0.68rem;
}

.page-hero {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9.5rem) clamp(1.25rem, 6vw, 7rem);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.2vw, 6rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
}

.page-hero > p,
.page-hero__copy > p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.page-hero--split {
  display: grid;
  grid-template-columns: minmax(310px, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 11rem);
}

.page-hero__copy .button,
.page-hero__copy .text-link {
  margin-top: 2rem;
}

.page-hero--pricing,
.page-hero--form {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 10rem);
}

.workflow-line {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem);
  background: var(--navy);
  color: #fff;
}

.workflow-line h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.workflow-line ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}

.workflow-line ol::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: #4a6590;
}

.workflow-line li {
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding: 2.3rem clamp(0.5rem, 1.5vw, 1.5rem) 0;
  text-align: center;
}

.workflow-line li::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--navy);
  border-radius: 50%;
  background: #8cadff;
  box-shadow: 0 0 0 1px #8cadff;
  transform: translateX(-50%);
}

.workflow-line strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-stretch: condensed;
}

.workflow-line span {
  color: #b8cae3;
  font-size: 0.76rem;
  line-height: 1.4;
}

.capability-ledger {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4rem);
}

.capability-ledger article {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 1.05fr) minmax(230px, 0.75fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  padding: clamp(2rem, 3.5vw, 3.5rem) 0;
  border-top: 1px solid var(--rule-strong);
}

.capability-ledger article:last-child {
  border-bottom: 1px solid var(--rule-strong);
}

.capability-ledger article > div {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.capability-ledger i,
.contact-routes i {
  color: var(--route);
  font-size: 1.35rem;
}

.capability-ledger h2,
.contact-routes h2,
.company-record h2,
.security-record h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.capability-ledger p {
  max-width: 60ch;
  margin: 0;
  color: var(--ink-muted);
}

.capability-ledger ul,
.pricing-sheet ul,
.cost-boundary ul,
.policy-document ul {
  margin: 0;
  padding-left: 1.1rem;
}

.capability-ledger li,
.pricing-sheet li,
.cost-boundary li,
.policy-document li {
  margin-block: 0.42rem;
}

.capability-ledger li {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  align-items: end;
  gap: 3rem;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--blue);
  color: #fff;
}

.page-cta h2 {
  max-width: 17ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

.pricing-sheet {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) repeat(2, minmax(260px, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem);
}

.pricing-sheet > * {
  padding: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.pricing-sheet > * + * {
  border-left: 1px solid var(--rule-strong);
}

.pricing-sheet__setup {
  background: var(--paper-cool);
}

.pricing-sheet h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.9rem;
  font-stretch: condensed;
  font-weight: 700;
}

.price {
  margin: 1.4rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  font-stretch: condensed;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.price > span {
  font-size: 0.42em;
  vertical-align: top;
}

.price small {
  color: var(--ink-muted);
  font-family: var(--body);
  font-size: 0.18em;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-sheet > * > p:not(.price) {
  max-width: 38ch;
  color: var(--ink-muted);
}

.pricing-sheet ul {
  margin-top: 2rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.pricing-plan .button {
  margin-top: 2rem;
}

.pricing-plan--annual {
  background: #edf3ff;
}

.usage-rule {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--navy);
  color: #fff;
}

.usage-rule h2,
.cost-boundary > h2,
.security-boundary h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.usage-rule > div > p {
  max-width: 48ch;
  margin: 1.5rem 0 0;
  color: #b8cae3;
}

.usage-rule dl {
  margin: 0;
  border-top: 1px solid #49658e;
}

.usage-rule dl div {
  display: grid;
  grid-template-columns: minmax(130px, 0.65fr) 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #49658e;
}

.usage-rule dt {
  color: #9eb4d2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.usage-rule dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.cost-boundary {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4rem);
}

.cost-boundary > h2 {
  max-width: 17ch;
}

.cost-boundary > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 8rem);
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--ink);
}

.cost-boundary article {
  padding-top: 2rem;
}

.cost-boundary h3 {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-stretch: condensed;
}

.cost-boundary li,
.cost-boundary > p {
  color: var(--ink-muted);
}

.cost-boundary > p {
  max-width: 72ch;
  margin: 3rem 0 0 auto;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--rule);
}

.security-record {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
}

.security-record article {
  padding: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--rule-strong);
}

.security-record article:nth-child(even) {
  border-left: 1px solid var(--rule-strong);
}

.security-record article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--rule-strong);
}

.security-record article > p {
  max-width: 55ch;
  margin: 1.2rem 0 2rem;
  color: var(--ink-muted);
}

.security-record dl {
  margin: 0;
}

.security-record dl div {
  display: grid;
  grid-template-columns: minmax(95px, 0.4fr) 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.76rem;
}

.security-record dt {
  color: var(--ink-muted);
  font-weight: 750;
}

.security-record dd {
  margin: 0;
  font-weight: 750;
}

.security-boundary {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--paper-cool);
}

.security-boundary p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.pilot-intake {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: clamp(3rem, 7vw, 7rem);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem);
}

.pilot-form fieldset {
  margin: 0;
  padding: 0 0 2.8rem;
  border: 0;
}

.pilot-form fieldset + fieldset {
  padding-top: 2.8rem;
  border-top: 1px solid var(--rule-strong);
}

.pilot-form legend {
  width: 100%;
  margin: 0 0 1.6rem;
  padding: 0;
  font-family: var(--display);
  font-size: 1.8rem;
  font-stretch: condensed;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.form-grid + .form-grid,
.form-field--wide + .form-grid {
  margin-top: 1.35rem;
}

.form-field {
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.form-field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field label span {
  color: var(--ink-muted);
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  caret-color: var(--blue);
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field select {
  cursor: pointer;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #687791;
  opacity: 1;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #7e91ac;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid #c6d4ff;
  outline-offset: 1px;
}

.form-field small {
  color: var(--ink-muted);
  font-size: 0.69rem;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.pilot-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
}

.pilot-form__submit p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.74rem;
}

.pilot-form__submit .button {
  flex: 0 0 auto;
}

.pilot-intake__aside {
  align-self: start;
  padding: clamp(1.6rem, 3vw, 2.8rem);
  background: var(--navy);
  color: #fff;
}

.pilot-intake__aside h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: 2.5rem;
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.pilot-intake__aside ol {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid #49658e;
  list-style: none;
}

.pilot-intake__aside li {
  padding: 1rem 0;
  border-bottom: 1px solid #49658e;
}

.pilot-intake__aside li span {
  font-size: 0.8rem;
  font-weight: 800;
}

.pilot-intake__aside li p {
  margin: 0.3rem 0 0;
  color: #b8cae3;
  font-size: 0.72rem;
}

.pilot-intake__aside dl {
  margin: 2.5rem 0 0;
  padding: 1.25rem;
  background: #0a2853;
}

.pilot-intake__aside dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.7rem;
  padding-block: 0.45rem;
  font-size: 0.7rem;
}

.pilot-intake__aside dt {
  color: #9eb4d2;
}

.pilot-intake__aside dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.submission-confirmation {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 10rem) 1.25rem;
}

.submission-confirmation__mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--success);
  color: #fff;
  font-size: 1.5rem;
}

.submission-confirmation h1 {
  max-width: 13ch;
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.submission-confirmation > p {
  max-width: 65ch;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.submission-confirmation__next {
  max-width: 650px;
  margin: 3.5rem 0 2rem;
  padding: 2rem 0;
  border-block: 1px solid var(--rule-strong);
}

.submission-confirmation__next h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-stretch: condensed;
}

.submission-confirmation__next ol {
  margin-bottom: 0;
  padding-left: 1.3rem;
  color: var(--ink-muted);
}

.submission-confirmation__next li {
  margin-block: 0.7rem;
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
}

.contact-routes article {
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  border-block: 1px solid var(--rule-strong);
}

.contact-routes article + article {
  border-left: 1px solid var(--rule-strong);
}

.contact-routes h2 {
  margin-top: 1.5rem;
}

.contact-routes p {
  max-width: 40ch;
  min-height: 7.5rem;
  margin: 1.1rem 0;
  color: var(--ink-muted);
}

.company-record {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(400px, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--paper-cool);
}

.company-record dl {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.company-record dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule-strong);
}

.company-record dt {
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-record dd {
  margin: 0;
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem) clamp(6rem, 10vw, 10rem);
}

.policy-index {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  padding-top: 0.7rem;
  border-top: 2px solid var(--ink);
}

.policy-index > p {
  margin: 0;
  font-weight: 800;
}

.policy-index time {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.policy-index nav {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
}

.policy-index nav a {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.policy-index nav a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.policy-document {
  max-width: 760px;
}

.policy-document header {
  padding-bottom: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--ink);
}

.policy-document header h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.policy-document header p {
  max-width: 62ch;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.policy-document section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule-strong);
  scroll-margin-top: 2rem;
}

.policy-document h2 {
  max-width: 22ch;
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.7vw, 3rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.policy-document h3 {
  margin: 2rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-stretch: condensed;
}

.policy-document p,
.policy-document li {
  max-width: 72ch;
  color: #33425c;
}

.policy-document p + p {
  margin-top: 1.2rem;
}

.policy-document a {
  color: var(--blue-dark);
  font-weight: 700;
}

.policy-prices {
  margin: 0 0 2rem;
  border-top: 1px solid var(--rule-strong);
}

.policy-prices div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-strong);
}

.policy-prices dt {
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.policy-prices dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

@keyframes route-draw {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0);
  }
}

@keyframes route-node-arrival {
  0% {
    opacity: 0.35;
    transform: scale(0.72);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes reply-link-draw {
  0% {
    clip-path: inset(0 0 100% 100%);
  }

  100% {
    clip-path: inset(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.7rem;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.5rem);
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 2.5rem));
    padding: 0.75rem;
    border: 1px solid #29466d;
    background: var(--navy);
    box-shadow: 0 18px 38px rgba(0, 10, 27, 0.32);
  }

  .mobile-menu nav > a:not(.button) {
    padding: 0.72rem;
    color: #dce7f7;
    font-size: 0.85rem;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 0.5rem;
  }

  .dispatch-hero {
    grid-template-columns: minmax(250px, 0.75fr) minmax(470px, 1.35fr);
  }

  .reply-margin {
    grid-column: 1 / -1;
    width: min(760px, calc(100% - 4rem));
    margin: 0 2rem 3rem auto;
  }

  .reply-thread__response::before,
  .reply-thread__response::after {
    display: none;
  }

  .offer-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .offer-ledger > div {
    border-bottom: 1px solid var(--rule);
  }

  .offer-ledger > div:nth-child(2),
  .offer-ledger > div:nth-child(4) {
    border-right: 0;
  }

  .offer-ledger > div:nth-child(3),
  .offer-ledger > div:nth-child(4) {
    border-bottom: 0;
  }
}

@media (min-width: 961px) {
  .dispatch-promise h1 span,
  .dispatch-promise h1 em {
    transform: scaleX(0.66);
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .reply-thread div {
    grid-template-columns: 1rem minmax(0, 1fr);
    row-gap: 0.2rem;
  }

  .reply-thread span {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .reply-thread time {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .dispatch-hero {
    grid-template-columns: 1fr;
  }

  .dispatch-promise {
    min-height: 610px;
  }

  .dispatch-docket {
    width: calc(100% - 3rem);
    margin: 0 auto;
  }

  .dispatch-route li {
    min-height: 4.55rem;
  }

  .reply-margin {
    width: calc(100% - 3rem);
    margin: 0 auto 3rem;
  }

  .handoff-story,
  .managed-pilot {
    grid-template-columns: 1fr;
  }

  .handoff-story h2,
  .managed-pilot h2 {
    max-width: 14ch;
  }

  .handoff-story__flow {
    margin-top: 1rem;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__action {
    padding-left: 0;
    border-left: 0;
  }

  .page-hero--split,
  .page-hero--pricing,
  .page-hero--form,
  .usage-rule,
  .security-boundary,
  .company-record {
    grid-template-columns: 1fr;
  }

  .workflow-line ol {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .workflow-line ol::before {
    top: 1.2rem;
    right: auto;
    bottom: 1.2rem;
    left: 8px;
    width: 2px;
    height: auto;
  }

  .workflow-line li {
    grid-template-columns: 130px 1fr;
    gap: 1.5rem;
    padding: 0 0 1.8rem 2.5rem;
    text-align: left;
  }

  .workflow-line li::before {
    top: 0.12rem;
    left: 8px;
  }

  .capability-ledger article {
    grid-template-columns: minmax(230px, 0.6fr) 1fr;
  }

  .capability-ledger article > ul {
    grid-column: 2;
  }

  .pricing-sheet {
    grid-template-columns: 1fr;
  }

  .pricing-sheet > * + * {
    border-top: 0;
    border-left: 0;
  }

  .cost-boundary > div,
  .security-record,
  .pilot-intake {
    grid-template-columns: 1fr;
  }

  .security-record article:nth-child(even) {
    border-left: 0;
  }

  .security-record article:not(:first-child) {
    border-top: 0;
  }

  .security-record article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .security-record article:last-child {
    border-bottom: 1px solid var(--rule-strong);
  }

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

  .contact-routes article + article {
    border-top: 0;
    border-left: 0;
  }

  .contact-routes p {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 1rem;
  }

  .site-brand__mark {
    width: 32px;
    height: 32px;
  }

  .dispatch-promise {
    min-height: 560px;
    padding: 4.25rem 1.25rem 4rem;
  }

  .dispatch-promise h1 {
    font-size: clamp(3.15rem, 15vw, 4.15rem);
  }

  .dispatch-docket {
    width: calc(100% - 1.5rem);
  }

  .dispatch-docket h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .dispatch-docket h2 span {
    flex-basis: 100%;
    font-size: 0.78rem;
  }

  .dispatch-meta {
    display: grid;
    justify-content: start;
    gap: 0.2rem;
  }

  .attempts-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.7rem;
  }

  .attempts-table th,
  .attempts-table td {
    padding-inline: 0.4rem;
  }

  .attempts-table th:first-child,
  .attempts-table td:first-child {
    width: 28%;
    padding-left: 0.8rem;
  }

  .attempts-table th:nth-child(2) {
    width: 30%;
  }

  .attempts-table th:nth-child(3) {
    width: 18%;
  }

  .attempts-table th:last-child,
  .attempts-table td:last-child {
    width: 24%;
    padding-right: 0.8rem;
  }

  .status {
    gap: 0.25rem;
  }

  .status::before {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
  }

  .dispatch-route {
    padding-inline: 1.1rem;
  }

  .route-stage {
    grid-template-columns: 2.2rem 1.5rem minmax(0, 1fr);
    gap: 0.55rem;
    font-size: 0.66rem;
  }

  .route-stage__icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .route-stage__copy {
    display: grid;
    gap: 0.1rem;
  }

  .route-stage time {
    grid-column: 3;
    padding-bottom: 0.2rem;
  }

  .reply-margin {
    width: calc(100% - 1.5rem);
    margin-bottom: 1.5rem;
  }

  .reply-margin blockquote {
    font-size: clamp(3.2rem, 16vw, 4.3rem);
  }

  .reply-thread div {
    grid-template-columns: 1rem minmax(0, 1fr);
    row-gap: 0.2rem;
  }

  .reply-thread span {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .reply-thread time {
    grid-column: 2;
    justify-self: start;
  }

  .offer-docket {
    padding: 0;
  }

  .offer-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-ledger > div {
    min-height: 8rem;
    padding-block: 1rem;
    border-bottom: 1px solid var(--rule);
  }

  .handoff-story {
    padding-block: 4.5rem;
  }

  .handoff-story__flow {
    grid-template-columns: 1fr;
  }

  .handoff-story__flow article {
    padding: 1.5rem 0;
    border-top: 1px solid var(--rule-strong);
    border-left: 0;
  }

  .managed-pilot {
    padding: 5rem 1.25rem;
  }

  .managed-pilot__steps li {
    grid-template-columns: 75px 1fr;
    gap: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 3.5rem 1.5rem;
  }

  .page-hero,
  .page-hero--split,
  .page-hero--pricing,
  .page-hero--form {
    gap: 2rem;
    padding: 4.5rem 1.25rem;
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.5rem);
  }

  .capability-ledger article {
    grid-template-columns: 1fr;
  }

  .capability-ledger article > ul {
    grid-column: auto;
  }

  .page-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .usage-rule,
  .security-boundary,
  .company-record {
    padding: 4.5rem 1.25rem;
  }

  .cost-boundary > div {
    gap: 0;
  }

  .cost-boundary article + article {
    margin-top: 2.5rem;
    border-top: 1px solid var(--rule-strong);
  }

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

  .pilot-form__submit {
    align-items: start;
    flex-direction: column;
  }

  .pilot-form__submit .button {
    width: 100%;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2.5rem;
  }

  .policy-index {
    position: static;
  }

  .policy-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-document header h1 {
    font-size: clamp(3.3rem, 16vw, 4.5rem);
  }

  .policy-prices div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 360px) {
  .offer-ledger > div {
    --offer-icon-size: 2.6rem;
    --offer-copy-gap: 0.45rem;
    --offer-pad-inline: 0.65rem;
  }

  .offer-ledger strong {
    font-size: clamp(1.45rem, 8vw, 1.65rem);
  }

  .offer-ledger__icon {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1rem;
  }
}

@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;
  }
}
