/* Ground Orbit Networks — shared stylesheet
   ------------------------------------------------------------------
   2026 redesign. The system: a graphite orbital segment, a paper ground
   segment, and a steel-blue path between them. Serif headlines carry the
   institutional voice; the mono face prints anything the network itself
   would print — waypoints, telemetry, dates, step numbers.

   All three faces are self-hosted from assets/fonts/. The site makes no
   third-party requests, and that is deliberate — see CLAUDE.md.

   Source Serif 4 and IBM Plex Sans are variable fonts: one file each,
   carrying the whole weight axis. The per-weight @font-face blocks below
   therefore point at the same file and pin a single weight, which is what
   Google Fonts itself served and is what the browser instances. Adding a
   weight the design needs later means another block, not another file.
   ------------------------------------------------------------------ */

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-variable.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-variable.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-variable.woff2") format("woff2");
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-variable.woff2") format("woff2");
  font-weight: 500;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-variable.woff2") format("woff2");
  font-weight: 600;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --graphite: #12171C;
  --graphite-2: #1A2128;
  --paper: #F4F6F7;
  --white: #FFFFFF;

  --ink: #161B20;
  --ink-2: #3E4A53;
  --muted: #5A666F;
  --dim-ink: #6E7C86;
  --faint-ink: #5A666F;

  --steel: #2F5F86;
  --cyan: #9AD5E2;

  --on-dark: #A3B2BD;
  --on-dark-dim: #8C9BA6;
  --on-dark-faint: #6C7C88;

  --hair: #DCE1E4;
  --hair-strong: #C7CFD4;
  --hair-dark: rgba(255, 255, 255, 0.10);

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 2px;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--steel); text-decoration: none; }
a:hover { color: var(--graphite); }

::selection { background: var(--cyan); color: var(--graphite); }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Type -------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--serif);
  letter-spacing: -0.018em;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
}

h3 { font-weight: 600; letter-spacing: -0.01em; }

/* The utility face. Anything the network would print. */
.eyebrow,
.mono,
.step-num,
.news-date,
label,
.telemetry .label,
.site-footer h4,
.footer-bottom {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  color: var(--steel);
  margin: 0 0 18px;
}

/* On dark bands the eyebrow gains the rule that marks a waypoint. */
.band--dark .eyebrow,
.hero .eyebrow {
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 12px;
}

.band--dark .eyebrow::before,
.hero .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
  flex: none;
}

.section-title {
  font-size: clamp(30px, 3.2vw, 42px);
  max-width: 22ch;
  text-wrap: pretty;
}

.section-title.sub { font-size: 34px; max-width: none; }

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
  text-wrap: pretty;
}

.body-copy {
  font-size: 17px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 64ch;
}

/* ---- Bands ------------------------------------------------------- */

.band { padding: 92px 0; background: var(--white); }

.band--paper {
  background: var(--paper);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.band--dark { background: var(--graphite); color: var(--white); }
.band--dark .section-title { color: var(--white); }
.band--dark .section-sub,
.band--dark .body-copy { color: var(--on-dark); }

/* Section head: title left, standfirst right, both sitting on the same
   baseline. Collapses to a stack without a media query. */
.band-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 28px 64px;
  align-items: end;
  margin-bottom: 56px;
}

.band-head .section-sub { max-width: 60ch; }

.center { text-align: center; }
.center .section-title,
.center .section-sub { margin-left: auto; margin-right: auto; }
.center .btn-row { justify-content: center; }

/* ---- Header / Nav ------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--graphite);
  border-bottom: 1px solid var(--hair-dark);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 32px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand:hover { color: inherit; }
.brand svg { display: block; flex: none; }

.brand-name { display: block; line-height: 1; }

.brand-name b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}

.brand-name span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: var(--cyan);
  margin-top: 3px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark-dim);
}

.site-nav a:hover { color: var(--white); }
.site-nav a[aria-current="page"]:not(.nav-cta) { color: var(--white); }

.nav-cta {
  background: var(--cyan);
  color: var(--graphite) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.nav-cta:hover { background: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

/* ---- Hero -------------------------------------------------------- */

.hero {
  background: var(--graphite);
  color: var(--white);
  padding: 84px 0 76px;
}

.hero h1 {
  font-size: clamp(36px, 3.9vw, 54px);
  line-height: 1.05;
  color: var(--white);
  text-wrap: pretty;
}

.hero .lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-dark);
  max-width: 58ch;
  margin: 0;
  text-wrap: pretty;
}

/* Inner pages: headline left, standfirst right. */
.hero-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 32px 64px;
  align-items: end;
}

/* Home: copy left, photograph right, telemetry beneath. */
.hero-home { padding: 0; }

.hero-home > .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px 64px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 88px;
}

.hero-home h1 { font-size: clamp(40px, 4.4vw, 62px); line-height: 1.04; margin-bottom: 26px; }
.hero-home .lede { font-size: 18px; max-width: 56ch; margin-bottom: 36px; }

.hero-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stage .photo {
  position: absolute;
  inset: 0;
  background: url("../img/hero-earth.jpg") center 42% / cover no-repeat;
}

/* Two overlays: a vignette so the readout stays legible, and a survey grid
   that ties the photograph to the diagrams elsewhere on the site. */
.hero-stage .vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 23, 28, 0.72) 0%, rgba(18, 23, 28, 0) 46%);
}

.hero-stage .reticle {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 25% 25%;
}

.hero-stage .readout {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.hero-stage .readout .standby { color: rgba(255, 255, 255, 0.55); }

/* ---- Telemetry strip --------------------------------------------- */

.telemetry {
  border-top: 1px solid var(--hair-dark);
  background: rgba(255, 255, 255, 0.02);
}

.telemetry .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.telemetry .cell {
  padding: 30px 26px 32px;
  border-left: 1px solid var(--hair-dark);
}

.telemetry .cell:first-child { border-left: none; padding-left: 0; }

.telemetry .value {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.telemetry .label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #7E8F9B;
  margin-top: 9px;
}

/* ---- Buttons ----------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary { background: var(--graphite); color: var(--white); }
.btn-primary:hover { background: var(--steel); color: var(--white); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--hair-strong); }
.btn-secondary:hover { background: var(--paper); border-color: var(--ink); color: var(--ink); }

/* On graphite the primary button inverts to the signal colour: it has to be
   the brightest thing in the band. */
.hero .btn-primary,
.band--dark .btn-primary { background: var(--cyan); color: var(--graphite); }
.hero .btn-primary:hover,
.band--dark .btn-primary:hover { background: var(--white); color: var(--graphite); }

.hero .btn-secondary,
.band--dark .btn-secondary { color: var(--white); border-color: rgba(255, 255, 255, 0.32); }
.hero .btn-secondary:hover,
.band--dark .btn-secondary:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--white); color: var(--white); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Card grids -------------------------------------------------- */

/* Hairline grid: the gap IS the rule, so cards share edges instead of
   floating as separate boxes. */
.grid-rule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}

.grid-rule--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }

.band--dark .grid-rule { background: var(--hair-dark); border-color: var(--hair-dark); }

.grid-rule .card { background: var(--white); padding: 34px 30px 38px; }
.grid-rule .card:hover { background: var(--paper); }

.band--dark .grid-rule .card { background: var(--graphite-2); }
.band--dark .grid-rule .card:hover { background: var(--graphite-2); }

.card h3 { font-size: 21px; line-height: 1.22; margin: 0 0 12px; }
.card p { font-size: 15.5px; line-height: 1.62; color: var(--muted); margin: 0; }

.band--dark .card h3 { color: var(--white); }
.band--dark .card p { color: var(--on-dark); }

.card-index {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--faint-ink);
  margin-bottom: 20px;
}

.band--dark .card-index { color: var(--on-dark-faint); }
.card-index.key { color: var(--cyan); }

/* Detached cards, used where each one carries an image. */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 24px;
}

.grid-cards .card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}

.grid-cards .card-body { padding: 26px 26px 30px; }
.grid-cards .card h3 { font-size: 20px; }

/* Image slot: striped placeholder with a mono note saying what belongs in
   it. Replace the whole element with an <img> when the photography lands. */
.img-slot {
  background-color: #E7EBEE;
  background-image: repeating-linear-gradient(135deg, rgba(47, 95, 134, 0.10) 0 1px, transparent 1px 9px);
  border-bottom: 1px solid var(--hair);
  height: 168px;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.img-slot span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim-ink);
}

/* ---- Service ledger ---------------------------------------------- */

/* Services read as a ledger rather than as cards: an index, a name, and what
   it covers, on one rule per line. */
.ledger { border-top: 1px solid var(--hair); }

.ledger-row {
  display: grid;
  grid-template-columns: 48px minmax(min(100%, 220px), 0.9fr) minmax(min(100%, 300px), 1.5fr);
  gap: 16px 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hair);
}

.ledger-row:hover { background: var(--paper); }

.ledger-row .step-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--faint-ink);
  padding-top: 6px;
}

.ledger-row h3 { font-size: 22px; line-height: 1.2; }
.ledger-row p { font-size: 16px; line-height: 1.62; color: var(--muted); margin: 0; }

/* ---- Process steps ----------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 28px;
}

.steps .step { border-top: 1px solid var(--ink); padding-top: 18px; }
.steps .step-num { display: block; color: var(--steel); margin-bottom: 14px; letter-spacing: 0.2em; }
.steps h3 { font-size: 20px; margin: 0 0 10px; }
.steps p { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---- Diagram ----------------------------------------------------- */

.diagram {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  margin-bottom: 48px;
}

.linkmap { width: 100%; max-width: 760px; margin: 0 auto; display: block; }
.linkmap .ground { stroke: rgba(22, 27, 32, 0.28); stroke-width: 1; }
.linkmap .tick { stroke: rgba(22, 27, 32, 0.18); stroke-width: 1; }
.linkmap .node { fill: var(--white); stroke: var(--steel); stroke-width: 1.5; }
.linkmap .mast { stroke: var(--steel); stroke-width: 1.5; fill: none; }
.linkmap .path-primary { fill: none; stroke: var(--steel); stroke-width: 2; }
.linkmap .path-backup { fill: none; stroke: #7FA6C4; stroke-width: 1.5; stroke-dasharray: 5 5; }
.linkmap .label { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.3px; fill: var(--muted); }
.linkmap .label-key { fill: var(--ink); }

/* ---- Spec list --------------------------------------------------- */

/* Two intrinsic columns of hairline rows. Not CSS columns: those reflow
   items between columns and break the reading order. */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 0 56px;
}

.spec-list li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--hair);
}

.spec-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--hair); }

/* ---- Forms ------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 48px 80px;
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
}

label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--dim-ink);
  margin-bottom: 10px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--hair-strong);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(47, 95, 134, 0.12);
}

textarea { resize: vertical; min-height: 150px; line-height: 1.6; }

/* Honeypot: kept in the layout so bots find and fill it, moved off-screen
   rather than display:none, which some bots skip over. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius);
  display: none;
}

.form-status.show { display: block; }
.form-status.success { background: #EEF6F8; border: 1px solid #BCDCE4; color: #1F5A6B; }
.form-status.error { background: #FDF0EE; border: 1px solid #E7C6C0; color: #9C3B2A; }

.contact-aside { border-top: 1px solid var(--ink); padding-top: 20px; }

.contact-aside h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}

.contact-aside p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 34px; }
.contact-aside p:last-child { margin-bottom: 0; }

/* ---- News -------------------------------------------------------- */

.news-list { max-width: 880px; }

.news-item {
  display: grid;
  grid-template-columns: minmax(64px, auto) minmax(min(100%, 260px), 1fr);
  gap: 10px 32px;
  padding: 34px 0;
  border-top: 1px solid var(--hair);
}

.news-item:last-child { border-bottom: 1px solid var(--hair); }
.news-date { font-size: 11px; letter-spacing: 0.18em; color: var(--faint-ink); padding-top: 8px; }
.news-item h3 { font-size: 26px; line-height: 1.2; letter-spacing: -0.012em; margin: 0 0 12px; }
.news-item h3 a { color: var(--ink); }
.news-item h3 a:hover { color: var(--steel); }
.news-item p { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin: 0 0 14px; }

.read-more {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.read-more:hover { color: var(--graphite); }

.post { max-width: 70ch; }
.post h1 { font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; margin: 12px 0 28px; text-wrap: pretty; }
.post p { font-size: 17.5px; line-height: 1.72; color: var(--ink-2); margin: 0 0 22px; }
.post p:last-child { margin-bottom: 0; }
.post a { border-bottom: 1px solid #C3D3DF; }

.post blockquote { margin: 34px 0; padding: 0 0 0 26px; border-left: 2px solid var(--cyan); }

.post blockquote p {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

/* ---- Footer ------------------------------------------------------ */

.site-footer {
  background: var(--graphite);
  color: var(--on-dark);
  padding: 72px 0 30px;
  border-top: 1px solid var(--hair-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 40px 32px;
  margin-bottom: 52px;
}

.site-footer .brand { margin-bottom: 18px; }
.footer-tag { font-size: 14.5px; line-height: 1.62; color: var(--on-dark-dim); max-width: 42ch; margin: 0; }

.site-footer h4 {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--white);
  font-weight: 500;
  margin: 0 0 18px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer a { font-size: 14.5px; color: var(--on-dark); }
.site-footer a:hover { color: var(--white); }

.footer-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 2;
  color: var(--on-dark-dim);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--hair-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--on-dark-faint);
}

/* ---- 404 --------------------------------------------------------- */

.error-page { text-align: center; padding: 150px 0 160px; }
.error-page .code { font-family: var(--mono); font-size: 12px; letter-spacing: 0.34em; color: var(--steel); margin: 0 0 20px; }
.error-page h1 { font-size: clamp(34px, 3.8vw, 48px); line-height: 1.08; margin: 0 0 16px; }
.error-page p { font-size: 17.5px; line-height: 1.65; color: var(--muted); margin: 0 auto 32px; max-width: 46ch; }

/* ---- Responsive -------------------------------------------------- */

/* The grids above are intrinsic and need no breakpoints. These two rules
   handle what intrinsic sizing cannot: vertical rhythm, and swapping the
   nav for a disclosure menu. */

@media (max-width: 760px) {
  body { font-size: 16px; }
  .band, .hero { padding: 60px 0; }
  .hero-home > .container { padding-top: 60px; padding-bottom: 56px; }
  .band-head { margin-bottom: 40px; }
  .telemetry .cell { border-left: none; padding: 22px 0; border-top: 1px solid var(--hair-dark); }
  .telemetry .cell:first-child { border-top: none; }
  .nav-wrap { position: relative; }
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--graphite);
    border-bottom: 1px solid var(--hair-dark);
    display: none;
  }

  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 4px var(--gutter) 20px; }
  .site-nav ul li { border-bottom: 1px solid var(--hair-dark); }
  .site-nav ul li:last-child { border-bottom: none; }
  .site-nav ul li a { display: block; padding: 15px 0; }

  /* Matches the specificity of the block rule above so the CTA stays a
     button in the open menu rather than a full-width cyan bar. */
  .site-nav ul li a.nav-cta { display: inline-block; padding: 12px 22px; margin: 16px 0 4px; }
}

@media print {
  .site-header, .site-footer, .btn, .nav-toggle { display: none; }
  body { color: #000; font-size: 11pt; }
  .band, .hero { padding: 24pt 0; background: #fff; color: #000; }
  .band--dark, .hero { color: #000; }
  .band--dark .section-title, .band--dark .card h3 { color: #000; }
  .band--dark .section-sub, .band--dark .card p, .band--dark .body-copy { color: #333; }
}
