/* getpostern.com — Convergence 04 ("the field guide"), implemented from the
   Paper artboard of that name. Every value here was read with get_jsx /
   get_computed_styles, never off a screenshot. soul.md is law: paper ground,
   flat printer's inks, no gradients, no glow, no noise.

   Geometry: the artboard is 1440 wide. Sections inset 110px (the nav insets
   64px — the artboard's own exception). Plates are 1220 mats; the two fixed
   drawings inside them (the 812×640 gate plate, the 999px Console window)
   scroll inside their own containers below that width rather than reflowing.
   Exact px hold at >=1440; three breakpoints step it down from there. */

/* ---------- fonts (self-hosted; zero external requests) ---------- */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-var.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Courier Prime";
  src: url("../fonts/courier-prime-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Courier Prime";
  src: url("../fonts/courier-prime-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* The marks the page uses that the existing subsets did not carry: № and the
   arrows ← ↑ →. Declared AFTER the main faces and scoped by unicode-range so
   they win for exactly those four codepoints and touch nothing else — the
   original subsets stay byte-identical, so no metric drifts.
   Cut from the upstream OFL sources with:
     pyftsubset <src>.ttf --unicodes="U+2116,U+2190-2192" --flavor=woff2 \
       --layout-features='' --output-file=<name>-marks.woff2
   ✓ (U+2713) and ✗ (U+2717) exist in NONE of the three families, upstream or
   subset — those two fall through to a platform symbol font. Local, so still
   zero network; see DEPLOY.md. */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-marks.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+2116, U+2190-2192;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-italic-marks.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
  unicode-range: U+2116, U+2190-2192;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-marks.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+2116, U+2190-2192;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-italic-marks.woff2") format("woff2");
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
  unicode-range: U+2116, U+2190-2192;
}

/* ---------- tokens (the artboard's own token set) ---------- */

:root {
  --paper: #F5EDDA;
  --paper-deep: #EFE5CC;   /* the demo band + owner's room ground */
  --card: #FDF8EC;
  --ink: #2A2118;
  --ink-25: #2A211840;
  --ink-22: #2A211838;
  --ink-40: #2A211866;
  --ink-shadow: #2A211829;
  --faded: #6E6048;
  --faded-2: #8A7A64;      /* binomials + footer */
  --fern: #3C7247;
  --poppy: #B83E15;
  --vermilion: #DE4E1C;    /* the nav + footer "Read the source" plate */
  --marigold: #E7A42A;
  --coral: #E9795E;
  --cornflower: #5877C0;
  --plum: #7B559E;
  --rose: #D26A8B;
  --night: #151F19;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "EB Garamond", Georgia, serif;
  /* Courier New carries № and the arrows that Courier Prime's subset lacks;
     the ui-monospace/Menlo/Consolas tail carries ✓ ✗, which no OFL face in
     this stack has. Every one of them is a LOCAL font — nothing is fetched. */
  --mono: "Courier Prime", "Courier New", ui-monospace, Menlo, Consolas, "DejaVu Sans Mono", monospace;
  --inset: 110px;
  --nav-inset: 64px;
  --band-top: 36px;
  --band-bottom: 44px;
}

/* ---------- ground ---------- */

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

html { margin: 0; padding: 0; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.page { width: 100%; max-width: 1440px; margin: 0 auto; }

h1, h2, h3, h4, p, ul, ol, figure, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
p, dd, li { overflow-wrap: break-word; }
button { font: inherit; cursor: pointer; }
input, select { font: inherit; }
img, svg, video { display: block; max-width: 100%; }

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

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

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 14px;
}
.skip-link:focus { left: 0; }

/* the section rhythm every band shares */
.band {
  width: 100%;
  padding: var(--band-top) var(--inset) var(--band-bottom);
}
.band--center { display: flex; flex-direction: column; align-items: center; }
/* one uniform band rhythm — every section sits var(--band-bottom) +
   var(--band-top) from its neighbour, eyebrow or not (founder, 2026-08-01:
   "cut it down, keep it uniform"). The headline still sits 6px under its
   eyebrow — the eyebrow is a label on the section, not a paragraph of it. */
.band--fig { padding-top: var(--band-top); }
.band--fig .section-head { padding-top: 6px; }
.band--night { background: var(--night); }

.fig {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--faded);
}

/* a plate: card ground, hairline, the printer's 4px offset */
.mat {
  width: 1220px;
  max-width: 100%;
  background: var(--card);
  border: 1px solid var(--ink-25);
  box-shadow: 4px 4px 0 var(--ink-shadow);
}
.mat-caption {
  padding: 12px 6px 2px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 18px;
  color: var(--faded);
}
/* fixed-width drawings scroll inside their own frame; the page never does.
   `safe center` keeps the drawing centred when it fits and flush-left when it
   does not — plain centring would push its left edge out of reach. */
.scroller { overflow-x: auto; overflow-y: hidden; }
.plate-scroll {
  display: flex;
  justify-content: safe center;
  width: 100%;
}
.plate-scroll > * { flex-shrink: 0; }

/* ---------- nav ---------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--nav-inset) 16px;
  border-bottom: 1px solid var(--ink-25);
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand svg { flex-shrink: 0; }
.brand .wordmark {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 34px;
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn-cta) { font-size: 16px; line-height: 20px; }
.nav-links a:not(.btn-cta):hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-cta {
  display: inline-block;
  padding: 11px 22px;
  background: var(--vermilion);
  border: none;
  border-radius: 3px;
  color: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;                /* the flanks + butterfly pin to it */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px var(--inset) 40px;   /* >=1440 drops pb to 14 — the demo peeks in */
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--faded);
}
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 92px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 96px;
  text-align: center;
  color: var(--ink);
}
.hero-sub-serif {
  padding-top: 10px;
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  line-height: 48px;
  text-align: center;
  color: var(--faded);
}
.hero-support {
  width: 720px;
  max-width: 100%;
  padding-top: 16px;
  font-size: 21px;
  line-height: 32px;
  text-align: center;
  color: var(--ink);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: var(--poppy);
  border: none;
  border-radius: 3px;
  box-shadow: 3px 3px 0 var(--ink-22);
  color: var(--card);
  font-family: var(--body);
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: none;
  border: 1px solid var(--ink-40);
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 19px;
  line-height: 24px;
}
.hero-repo {
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 16px;
  color: var(--faded);
}

/* the claims strip: micro-stamps in the hero (founder-locked look,
   2026-08-01), sized up from the 10.5px mock — that was too small to read */
.chips-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.chip {
  padding: 5px 10px;
  background: var(--card);
  border: 1px solid var(--ink-25);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 16px;
  color: var(--ink);
}
.collected-line {
  padding: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 18px;
  color: var(--faded);
}

/* THE SPECIMENS + THE POLLINATOR.
   >=1440: the flanking columns (Conv-05's absolute composition — the right
   column runs to x~1339, so it exists only where the canvas width does).
   <1440: the meadow row — all six specimens in a static centered wrapped
   row after the repo line, the butterfly in-flow above them. The width
   sweep found the untested 1201-1439 crack; this closes it. Nothing is
   hidden at any width. */
.flanks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 26px;
  width: 100%;
  padding-top: 30px;
}
.flanks figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* pressed flowers, not competitors: the specimens sit back (founder,
   2026-08-01 quiet pass — scale ~0.85, opacity ~0.65) */
.flanks figure svg { flex-shrink: 0; opacity: 0.65; }
.flanks figcaption { display: contents; }
.flanks .s-name {
  font-size: 17px;
  font-style: italic;
  line-height: 22px;
  color: var(--ink);
  width: max-content;
}
/* the Latin binomials stay in the markup but rest in the hero — the sector
   cards below introduce each specimen properly (founder, 2026-08-01) */
.flanks .s-binomial { display: none; }
.flanks .g-finance  svg { width: 70.5px; height: 92.5px; }
.flanks .g-finance  .s-name { rotate: -9deg; }
.flanks .g-health   svg { width: 69px;   height: 87.5px; }
.flanks .g-health   .s-name { rotate: -7deg; }
.flanks .g-calendar svg { width: 81px;   height: 83px; }
.flanks .g-calendar .s-name { rotate: -10deg; }
.flanks .g-mail     svg { width: 69px;   height: 97px; }
.flanks .g-mail     .s-name { rotate: 8deg; }
.flanks .g-contacts svg { width: 79px;   height: 94.5px; }
.flanks .g-contacts .s-name { rotate: 7deg; }
.flanks .g-home     svg { width: 69px;   height: 99.5px; }
.flanks .g-home     .s-name { rotate: 9deg; }

.hero-butterfly { width: 132px; height: 98px; margin-top: 26px; pointer-events: none; }
.hero-butterfly svg { width: 132px; height: 98px; }
/* the pollinator flies uncaptioned — the label stays in the markup for the
   record but never prints (founder, 2026-08-01 quiet pass) */
.butterfly-caption { display: none; }

@media (min-width: 1440px) {
  .hero { padding-bottom: 14px; }
  .flanks { display: contents; }
  .flanks figure { position: absolute; }
  .flanks .g-finance  { left: 102px;  top: 12px; }
  .flanks .g-health   { left: 98px;   top: 191px; }
  .flanks .g-calendar { left: 94px;   top: 364px; }
  .flanks .g-mail     { left: 1244px; top: 10px; }
  .flanks .g-contacts { left: 1236px; top: 190px; }
  .flanks .g-home     { left: 1244px; top: 367px; }
  /* the stamps sit at the specimen columns' feet, the last line of the
     hero's colophon before the demo peeks in */
  .chips-row { margin-top: 122px; }
  .hero-butterfly {
    position: absolute;
    top: 160px;
    left: 1103px;
    width: 115px;
    height: 86px;
    margin-top: 0;
  }
  .hero-butterfly svg { width: 115px; height: 86px; }
}

/* ---------- FIG. I · the demo band ---------- */

/* the seam: the demo is the hero's peek, so it sits almost flush under the
   stamps — ~203px of chat window shows above a 1440×900 fold */
#demo { padding-top: 16px; }

.demo-head {
  padding-top: 10px;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 62px;
  text-align: center;
  color: var(--ink);
}
.demo-sub {
  width: 780px;
  max-width: 100%;
  padding-top: 8px;
  font-size: 19px;
  line-height: 30px;
  text-align: center;
  color: var(--faded);
}
.demo-mat { margin-top: 12px; padding: 14px; }
/* the headline is the plate's caption now — it follows the demo */
.demo-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.demo-caption .demo-head { padding-top: 22px; }
/* the film row sits at band level, centered under the caption */
.film-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 1220px;
  max-width: 100%;
  padding-top: 30px;
}
.film-row .mat-caption { padding: 0; }
.film-cta {
  padding: 11px 22px;
  background: var(--poppy);
  border: none;
  border-radius: 3px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 20px;
  color: var(--card);
}
/* the film, click-to-play only — no autoplay, metadata preload at most */
.film {
  width: 1220px;
  max-width: 100%;
  margin-top: 26px;
  border: 1px solid var(--ink-25);
  box-shadow: 4px 4px 0 var(--ink-shadow);
  background: var(--ink);
}
.film[hidden] { display: none; }
.film video { width: 100%; height: auto; display: block; }

/* ---------- FIG. II · the shape of it ---------- */

.section-head {
  padding-top: 14px;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 62px;
  color: var(--ink);
}
.section-sub {
  width: 760px;
  max-width: 100%;
  padding-top: 12px;
  font-size: 19px;
  line-height: 30px;
  color: var(--faded);
}

.gate-mat {
  align-self: center;
  margin-top: 40px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.gate-plate {
  position: relative;
  width: 1190px;
  height: 540px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  overflow: hidden;
}
.gate-plate .abs { position: absolute; left: 0; top: 0; width: 1190px; height: 540px; }
.gate-plate .lbl {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 12px;
  text-transform: uppercase;
  color: var(--faded);
}
.gate-plate .plate-title {
  position: absolute;
  left: 0; top: 40px;
  width: 1190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.gate-plate .plate-title b {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 26px;
  color: var(--ink);
}
.gate-plate .plate-title span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 12px;
  color: var(--faded);
}
.gate-plate .door {
  position: absolute;
  left: 489px; top: 150px;
  width: 212px; height: 262px;
}
.gate-plate .door-cap {
  position: absolute;
  left: 0; top: 216px;
  width: 212px;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  line-height: 16px;
  text-align: center;
  color: var(--ink);
}
.gate-plate .src {
  position: absolute;
  left: 40px;
  width: 244px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gate-plate .src .mark {
  flex-shrink: 0;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.gate-plate .src .mark svg { width: 22px; height: 22px; }
.gate-plate .src .txt { display: flex; flex-direction: column; gap: 2px; }
.gate-plate .src .nm { display: flex; align-items: center; gap: 6px; }
.gate-plate .src .nm span {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 20px;
  color: var(--ink);
}
.gate-plate .src .prov {
  padding-left: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.02em;
  line-height: 12px;
  color: var(--faded);
}
.dot-ink {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-block;
}
.dot-ink--sm { width: 7px; height: 7px; }
.gate-plate .agent {
  position: absolute;
  left: 884px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.gate-plate .agent .row { display: flex; align-items: center; gap: 9px; }
.gate-plate .agent .row svg { flex-shrink: 0; }
.gate-plate .agent .nm { display: flex; align-items: baseline; gap: 5px; }
.gate-plate .agent .nm b {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  color: var(--ink);
  width: max-content;
}
.gate-plate .agent .nm i {
  font-family: var(--serif);
  font-size: 15.5px;
  font-style: italic;
  line-height: 20px;
  color: var(--faded);
  width: max-content;
}
.gate-plate .agent .any {
  font-family: var(--serif);
  font-size: 16.5px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
  color: var(--faded);
  width: max-content;
}
.gate-plate .agent .grants { padding-left: 33px; }
.grant-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border: 1px solid #B7A98A;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.02em;
  line-height: 12px;
  color: var(--ink);
}
.grant-tag--open { border: 1px dashed #B0A184; color: var(--faded); }
.grant-tag .gap { margin-left: 3px; }

.gate-ledger {
  position: absolute;
  left: 327px; top: 440px;
  width: 536px;
  display: flex;
  flex-direction: column;
}
.gate-ledger .lhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 7px;
}
.gate-ledger .lhead .l { display: flex; align-items: baseline; gap: 7px; }
.gate-ledger .lhead b {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 14px;
  color: var(--ink);
  font-weight: 400;
}
.gate-ledger .lhead span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.02em;
  line-height: 12px;
  color: var(--faded);
}
.gate-ledger .rule { border-top: 1px solid var(--ink); }
.gate-ledger .rows { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.gate-ledger .row {
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 12px;
}
.gate-ledger .row .t   { flex-shrink: 0; width: 52px;  color: var(--faded); }
.gate-ledger .row .who { flex-shrink: 0; width: 100px; color: var(--ink); }
.gate-ledger .row .vb  { flex-shrink: 0; width: 44px;  color: var(--faded); }
.gate-ledger .row .sec { flex-shrink: 0; width: 118px; display: inline-flex; align-items: center; gap: 6px; color: var(--ink); }
.gate-ledger .row .ok  { color: var(--fern); }
.gate-ledger .row .no  { color: var(--poppy); }

/* the canonical marks inside ledger rows and grant chips (Conv-05) */
.gate-ledger .row-mark { width: 11px; height: 11px; flex-shrink: 0; }
.grant-tag .tag-mark { width: 11px; height: 11px; flex-shrink: 0; }
.grant-tag .tag-mark--gap { margin-left: 6px; }

/* the procession, dissolved onto the plate: patent-style callouts.
   Every leader segment was traced on canvas to cross zero ink. */
.callout {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.callout .co-head {
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.callout .co-head i {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 16px;
  color: var(--faded);
}
.callout .co-head span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 12px;
  color: var(--faded);
}
.callout .co-body {
  font-size: 13px;
  line-height: 18px;
  color: var(--ink);
}
.callout--i   { left: 480px;  top: 96px;  width: 230px; align-items: center; text-align: center; }
.callout--ii  { left: 40px;   top: 452px; width: 250px; }
.callout--iii { left: 950px;  top: 52px;  width: 210px; }
.callout--iv  { left: 890px;  top: 462px; width: 280px; }

/* ---------- FIG. III · the moat ---------- */

.moat-cards { display: flex; gap: 28px; padding-top: 22px; }
.moat-card {
  flex-shrink: 0;
  width: 596px;
  max-width: 100%;
  padding: 22px 32px 20px;
  background: var(--card);
  border: 1px solid var(--ink-25);
  box-shadow: 4px 4px 0 var(--ink-shadow);
  display: flex;
  flex-direction: column;
}
.moat-card h3 {
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
}
.old-way {
  position: relative;
  margin-top: 22px;
  padding: 16px 18px;
  background: #EFE9DA;
}
.old-way p {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 19px;
  color: var(--faded);
}
.old-way .strike {
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 3px;
  background: var(--poppy);
}
.old-way .stamp {
  position: absolute;
  right: 10px; top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 14px;
  color: var(--poppy);
}
.moat-body { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; }
.moat-body > p { font-size: 16.5px; line-height: 26px; color: var(--ink); }
/* one row, four tags: they shrink and wrap INSIDE their boxes, as on the
   artboard — so no flex-wrap here until the mobile breakpoint */
.tag-row { display: flex; gap: 8px; }
.tag {
  padding: 4px 10px;
  border: 1px solid var(--ink-25);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 14px;
  color: var(--faded);
}
.tag--on { border-color: var(--fern); color: var(--fern); }
.moat-foot { padding-top: 20px; font-size: 17px; line-height: 27px; color: var(--faded); }
.swap {
  flex-shrink: 0;
  height: 170px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}
.swap .m { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.swap .wings { display: flex; align-items: center; gap: 2px; }
.swap .wings i, .swap .wings b { display: block; flex-shrink: 0; }
.swap .wings .lw { width: 34px; height: 26px; border-radius: 60% 40% 55% 45%; }
.swap .wings .rw { width: 34px; height: 26px; border-radius: 40% 60% 45% 55%; }
.swap .wings .body { width: 3px; height: 30px; }
.swap .gone .lw, .swap .gone .rw { border: 2px dashed var(--ink-40); }
.swap .gone .body { background: var(--ink-40); }
.swap .next .lw { background: var(--cornflower); }
.swap .next .rw { background: var(--coral); }
.swap .next .body { background: var(--ink); }
.swap .cap { font-family: var(--mono); font-size: 11px; line-height: 14px; color: var(--faded); }
.swap .next .cap { color: var(--ink); }
.swap .arrow { font-family: var(--serif); font-size: 40px; line-height: 48px; color: var(--ink-40); }
.moat-note { padding-top: 14px; font-family: var(--mono); font-size: 12px; line-height: 16px; color: var(--faded); }

/* ---------- the economics band ---------- */

.economics h2 {
  width: 980px;
  max-width: 100%;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  line-height: 70px;
  text-align: center;
  color: var(--paper);
}
.economics p {
  width: 700px;
  max-width: 100%;
  padding-top: 14px;
  font-size: 20px;
  line-height: 31px;
  text-align: center;
  color: #F5EDDA99;
}
.economics ul {
  display: flex;
  gap: 40px;
  padding-top: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.economics li {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 16px;
  color: var(--marigold);
}

/* ---------- FIG. IV · the owner's room ---------- */

.console-intro {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 10px;
}
.console-intro .lede {
  flex-shrink: 0;
  width: 620px;
  max-width: 100%;
  padding-top: 8px;
  font-size: 19px;
  line-height: 30px;
  color: var(--faded);
}
.console-intro ul { display: flex; flex-direction: column; gap: 8px; padding-top: 12px; }
.console-intro li { font-family: var(--mono); font-size: 13px; line-height: 16px; color: var(--ink); }

.mint-mat {
  align-self: center;
  margin-top: 24px;
  padding: 22px 26px 16px;
}
.mint-mat > .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  line-height: 16px;
  color: var(--faded);
}
.mint-row { display: flex; align-items: center; gap: 16px; padding-top: 18px; }
.mint-arrow { font-family: var(--serif); font-size: 30px; line-height: 36px; color: var(--ink-40); }
.mint-card {
  flex-shrink: 0;
  padding: 18px 20px;
  border: 1px solid var(--ink-22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mint-card--a { width: 350px; }
.mint-card--b, .mint-card--c { width: 306px; }
.mint-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 26px;
  color: var(--ink);
}
.mint-name { display: flex; align-items: center; gap: 10px; }
.mint-name span { font-family: var(--mono); font-size: 12px; line-height: 16px; color: var(--faded); }
.mint-name .field {
  padding: 5px 10px;
  background: var(--paper);
  border: 1px solid var(--ink-25);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 16px;
  color: var(--ink);
}
.grant-list { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.grant-line { display: flex; align-items: center; gap: 8px; }
.grant-line svg { flex-shrink: 0; width: 13px; height: 13px; }
.grant-line .sec { flex-shrink: 0; width: 76px; font-family: var(--mono); font-size: 12.5px; line-height: 16px; color: var(--ink); }
.grant-line .state { font-family: var(--mono); font-size: 11px; line-height: 14px; color: var(--fern); }
.grant-line--off { opacity: 0.45; }
.toggle {
  flex-shrink: 0;
  width: 26px; height: 14px;
  padding: 2px;
  border-radius: 7px;
  display: flex;
  justify-content: flex-end;
  background: var(--fern);
}
.toggle i { width: 10px; height: 10px; border-radius: 50%; background: var(--card); display: block; }
.toggle--off {
  background: none;
  border: 1px dashed var(--ink-40);
  justify-content: flex-start;
}
.toggle--off i { background: none; border: 1px dashed var(--ink-40); }
.grant-note { padding-top: 4px; font-family: var(--mono); font-size: 11px; line-height: 14px; color: var(--faded); }
.key-plate {
  padding: 9px 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 18px;
  color: var(--ink);
}
.mint-card .once { font-family: var(--mono); font-size: 11.5px; line-height: 14px; color: var(--faded); }
.mint-card .gloss { font-size: 14.5px; line-height: 21px; color: var(--faded); }
.mint-entry { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 12.5px; line-height: 16px; color: var(--ink); }
.mint-entry svg { flex-shrink: 0; width: 12px; height: 12px; }
.mint-allowed { font-family: var(--mono); font-size: 12.5px; line-height: 16px; color: var(--fern); }

/* ---------- FIG. V · the roadmap ---------- */

.sketch-grid { display: flex; flex-direction: column; gap: 20px; padding-top: 28px; }
.sketch-row { display: flex; gap: 20px; }

/* the compact four-across row (Conv-05): 4×290 + 3×20 = 1220. Type and
   glyphs scale ~0.72; dashed borders and body copy stay verbatim. */
.sketch-row--four .sketch {
  width: 290px;
  padding: 16px;
  gap: 10px;
}
.sketch-row--four .sketch h3 { font-size: 19px; line-height: 24px; }
.sketch-row--four .sketch p  { font-size: 13.5px; line-height: 20px; }
.sketch-row--four .glyph { height: 60px; gap: 8px; }
.sketch-row--four .sk-arch { width: 26px; height: 40px; border-radius: 13px 13px 0 0; }
.sketch-row--four .sk-visit .ln i { width: 70px; }
.sketch-row--four .sk-book { width: 42px; height: 47px; padding: 7px 6px 7px 11px; }
.sketch-row--four .sk-book .lines { gap: 5px; }
.sketch-row--four .sk-book .spine { left: 7px; height: 43px; }
.sketch-row--four .sk-book .mark { width: 5px; height: 13px; }
.sketch-row--four .sk-arrows { gap: 6px; padding-bottom: 10px; }
.sketch-row--four .sk-arrows .a--1 i { width: 19px; }
.sketch-row--four .sk-arrows .a--2 i { width: 25px; }
.sketch-row--four .sk-arrows .a--3 i { width: 16px; }
.sketch-row--four .sk-spec { width: 42px; height: 48px; padding: 7px 6px; gap: 6px; }
.sketch-row--four .sk-moth .lw, .sketch-row--four .sk-moth .rw { width: 24px; height: 19px; }
.sketch-row--four .sk-moth .body { height: 21px; }
.sketch-row--four .sk-moth { padding-bottom: 10px; }
.sketch-row--four .sk-fee .lead { width: 12px; }
.sketch-row--four .sk-fee { padding-bottom: 12px; }
.sketch-row--four .cap { max-width: 156px; }
.sketch {
  flex-shrink: 0;
  width: 597px;
  max-width: 100%;
  padding: 26px 28px;
  background: var(--paper);
  border: 1px dashed var(--ink-40);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sketch h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 34px;
  color: var(--ink);
}
.sketch p { font-size: 16.5px; line-height: 26px; color: var(--faded); }
.sketch .glyph { flex-shrink: 0; height: 84px; display: flex; align-items: flex-end; }
.sketch .cap { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; line-height: 12px; color: var(--faded); }
.sk-arch {
  flex-shrink: 0;
  width: 36px; height: 56px;
  border: 2px dashed var(--faded);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
}
.sk-visit { display: flex; flex-direction: column; align-items: center; gap: 5px; padding-bottom: 20px; }
.sk-visit .pt { width: 9px; height: 9px; border: 1.5px dashed var(--faded); border-radius: 50%; }
.sk-visit .ln { display: flex; align-items: center; }
.sk-visit .ln i { width: 96px; border-top: 2px dashed var(--faded); display: block; }
.sk-arrowhead {
  width: 0; height: 0;
  border-left: 7px solid var(--faded);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  display: block;
  flex-shrink: 0;
}
.sk-book {
  position: relative;
  flex-shrink: 0;
  width: 58px; height: 64px;
  padding: 10px 8px 10px 16px;
  border: 2px dashed var(--faded);
  border-radius: 3px;
  display: flex;
}
.sk-book .lines { flex: 1 1 0; display: flex; flex-direction: column; gap: 7px; }
.sk-book .lines i { border-top: 1.5px dashed var(--faded); display: block; }
.sk-book .spine { position: absolute; left: 9px; top: 0; height: 60px; border-left: 2px dashed var(--faded); }
.sk-book .mark { position: absolute; right: 8px; top: -2px; width: 7px; height: 18px; background: var(--plum); }
.sk-arrows { display: flex; flex-direction: column; gap: 8px; justify-content: flex-end; padding-bottom: 16px; }
.sk-arrows .a { display: flex; align-items: center; }
.sk-arrows .a i { border-top: 2px dashed var(--faded); display: block; }
.sk-arrows .a b {
  width: 0; height: 0;
  border-left: 6px solid var(--faded);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  display: block; flex-shrink: 0;
}
.sk-spec {
  flex-shrink: 0;
  width: 56px; height: 66px;
  padding: 10px 8px;
  border: 2px dashed var(--faded);
  display: flex; flex-direction: column; gap: 8px;
}
.sk-spec i { border-top: 1.5px dashed var(--faded); display: block; }
.sk-fee { display: flex; align-items: center; gap: 6px; padding-bottom: 24px; }
.sk-fee .lead { width: 16px; border-top: 1.5px dashed var(--faded); display: block; flex-shrink: 0; }
.sk-fee .coin {
  display: flex; align-items: center; gap: 5px;
  padding: 3px 8px;
  border: 2px dashed var(--faded);
  font-family: var(--mono); font-size: 10.5px; line-height: 14px; color: var(--faded);
}
.sk-fee .coin i { width: 5px; height: 5px; border: 1.5px solid var(--faded); border-radius: 50%; display: block; flex-shrink: 0; }
.sk-moth { display: flex; align-items: center; gap: 2px; padding-bottom: 18px; }
.sk-moth .lw, .sk-moth .rw { width: 32px; height: 25px; border: 2px dashed var(--marigold); flex-shrink: 0; }
.sk-moth .lw { border-radius: 60% 40% 55% 45%; }
.sk-moth .rw { border-radius: 40% 60% 45% 55%; }
.sk-moth .body { width: 3px; height: 28px; background: var(--faded); flex-shrink: 0; }
.unbuilt-close { display: flex; flex-direction: column; gap: 8px; padding-top: 28px; }
.unbuilt-close h3 { font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 42px; color: var(--ink); }
.unbuilt-close p { font-family: var(--mono); font-size: 13px; line-height: 16px; color: var(--faded); }

/* ---------- FIG. VI · FAQ ---------- */

.faq { gap: 6px; }
.faq > .fig, .faq > h2 { width: 1220px; max-width: 100%; }
.faq h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  color: var(--ink);
}
.faq-cols {
  display: flex;
  gap: 56px;
  padding-top: 30px;
  width: 1220px;
  max-width: 100%;
}
.faq-col { flex: 1 1 0; display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.faq-item { display: flex; flex-direction: column; gap: 8px; }
.faq-item dt {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: var(--ink);
}
.faq-item dd { font-size: 15px; line-height: 22px; color: var(--faded); }

/* ---------- the admission ---------- */

.admission-inner {
  width: 1220px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admission .kicker {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.24em;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--faded);
}
.admission h2 {
  padding-top: 20px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 60px;
  color: var(--ink);
}
.admission-lede {
  width: 700px;
  max-width: 100%;
  padding-top: 22px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--faded);
}
.asks {
  display: flex;
  gap: 96px;
  padding-top: 40px;
  width: 1044px;
  max-width: 100%;
}
.asks-col { flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.asks-col--a { width: 560px; max-width: 100%; }
.asks-col--b { width: 388px; max-width: 100%; }
.asks-col h3 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--faded);
}
.asks-col .rule { height: 1px; width: 100%; background: var(--ink-25); }
.asks-col li { display: flex; gap: 14px; }
.asks-col li:first-of-type { padding-top: 4px; }
.asks-col .n {
  flex-shrink: 0;
  width: 20px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 18px;
  color: var(--faded);
}
.asks-col .txt { font-size: 16px; line-height: 27px; color: var(--ink); }
.asks-col .txt--mono { font-family: var(--mono); font-size: 15px; line-height: 27px; color: var(--ink); }
.asks-col ul { display: flex; flex-direction: column; gap: 16px; }

/* the canonical quickstart — same three commands as /for-agents.md, set as a
   terminal slab: night ground, paper ink, the press's 4px offset, and a copy
   button on its own header row so it never overlaps the wrapped commands. */
.quickstart {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: 18px;
  padding: 10px 16px 14px;
  background: var(--night);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink-shadow);
}
.quickstart-copy {
  padding: 3px 10px;
  background: none;
  border: 1px solid #F5EDDA59;      /* paper at 35% on the night ground */
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 16px;
  color: var(--paper);
  cursor: pointer;
}
.quickstart-copy:hover { border-color: var(--paper); }
.quickstart-copy.is-copied { border-color: var(--fern); color: #9CC6A4; }
.quickstart-cmds {
  align-self: stretch;
  margin: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 20px;
  color: var(--paper);
  /* the clone line outruns the 388px column: wrap it visually — a <pre>'s
     clipboard text stays the exact unbroken commands either way */
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* the repo line's URL is live — quiet underline, the guides-index affordance */
.repo-link {
  text-decoration: underline 1px;
  text-underline-position: from-font;
}

.admission-tail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  width: 1044px;
  max-width: 100%;
}
.admission-tail > p {
  width: 820px;
  max-width: 100%;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: var(--faded);
}
.guides-card {
  width: 1044px;
  max-width: 100%;
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--ink-22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guides-card .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  line-height: 14px;
  color: var(--faded);
}
.guides-index {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 18px;
  row-gap: 8px;
}
.guides-index a {
  font-size: 15px;
  line-height: 20px;
  color: var(--ink);
  text-decoration: underline 1px;
  text-underline-position: from-font;
}
.admission-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
}
.btn-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background: var(--poppy);
  color: var(--card);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 26px;
}
.btn-guides {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid var(--ink-25);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: var(--ink);
}
.admission-repo {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 16px;
  color: var(--faded);
}

/* the release-notes form */
.notify {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 36px;
  width: 620px;
  max-width: 100%;
}
.notify .rule { width: 100%; height: 1px; background: var(--ink-22); flex-shrink: 0; }
.notify-lede { padding-top: 10px; font-size: 16px; line-height: 27px; text-align: center; color: var(--faded); }
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.waitlist-form input[type="email"] {
  width: 300px;
  max-width: 100%;
  padding: 11px 16px;
  background: var(--card);
  border: 1px solid var(--ink-25);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 18px;
  color: var(--ink);
}
.waitlist-form input[type="email"]::placeholder { color: var(--ink-40); opacity: 1; }
.waitlist-form button {
  padding: 11px 22px;
  background: none;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 16px;
  color: var(--ink);
}
.waitlist-form button[disabled] { opacity: 0.45; cursor: not-allowed; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note {
  width: 560px;
  max-width: 100%;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 21px;
  text-align: center;
  color: var(--faded);
}
.waitlist-error { font-family: var(--mono); font-size: 12.5px; line-height: 18px; color: var(--poppy); text-align: center; }
.waitlist-error:empty { display: none; }
.waitlist-done { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.waitlist-done-head { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 32px; color: var(--ink); }
.waitlist-q-intro { font-size: 15px; line-height: 24px; color: var(--faded); max-width: 460px; }
.waitlist-answers { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 460px; text-align: left; }
.wl-field { display: flex; flex-direction: column; gap: 5px; }
.wl-field label { font-family: var(--mono); font-size: 12px; line-height: 16px; color: var(--faded); }
.wl-field input, .wl-field select {
  padding: 9px 12px;
  background: var(--card);
  border: 1px solid var(--ink-25);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
}
.wl-actions { display: flex; gap: 10px; }
.wl-send, .wl-skip {
  padding: 9px 18px;
  border: 1px solid var(--ink);
  background: none;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
}
.wl-skip { border-color: var(--ink-25); color: var(--faded); }

/* ---------- footer ---------- */

.footer {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px var(--inset) 56px;
}
.footer-rule { height: 1px; width: 100%; background: var(--ink-25); flex-shrink: 0; }
.footer-row { display: flex; align-items: center; justify-content: space-between; }
.footer .brand .wordmark { font-size: 24px; line-height: 30px; }
.footer .brand { gap: 8px; }
.footer-links { display: flex; align-items: center; gap: 34px; }
.footer-links a:not(.btn-cta) { font-size: 16px; line-height: 20px; }
.footer-links a:not(.btn-cta):hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-links .btn-cta { padding: 10px 20px; }
.footer-copyright { font-family: var(--mono); font-size: 12.5px; line-height: 16px; color: var(--faded-2); }
.footer-colophon { font-size: 13.5px; font-style: italic; line-height: 18px; color: var(--faded-2); }

/* ---------- the standing pages (privacy · terms · contact) ---------- */

.stub { padding: 120px var(--inset) 40px; max-width: 820px; }
.stub h1 { font-family: var(--serif); font-size: 54px; font-weight: 500; line-height: 62px; }
.stub p { padding-top: 20px; font-size: 18px; line-height: 30px; color: var(--faded); }
.stub p a { text-decoration: underline 1px; text-underline-position: from-font; }
.stub-record { padding-top: 32px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--faded); }

/* ============================================================
   responsive — the design holds exactly at >=1440; below that it
   steps down. Wide plates scroll inside .scroller, never the page.
   ============================================================ */

@media (max-width: 1439.98px) {
  :root { --inset: 48px; --nav-inset: 40px; --band-top: 32px; --band-bottom: 40px; }
  .hero h1 { font-size: 76px; line-height: 82px; }
  .hero-sub-serif { font-size: 34px; line-height: 44px; }
  .demo-head, .section-head { font-size: 44px; line-height: 52px; }
  .economics h2 { font-size: 48px; line-height: 58px; }
  .admission h2 { font-size: 44px; line-height: 52px; }
  .faq h2 { font-size: 38px; line-height: 46px; }

  .moat-cards, .sketch-row { flex-wrap: wrap; }
  .moat-card { width: 100%; }
  .sketch-row--four { justify-content: center; }
  .sketch-row--four .sketch { width: calc(50% - 10px); max-width: 340px; }
  .asks { gap: 48px; flex-wrap: wrap; }
  /* the mint sequence is a wide plate: below its natural width it scrolls
     inside its own row rather than widening the page, the same treatment
     the gate plate gets. */
  .mint-row {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: safe center;
  }
  .mint-row > * { flex-shrink: 0; }
}

@media (max-width: 900px) {
  .nav-links { gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a:not(.btn-cta) { font-size: 15px; }
  .console-intro { flex-wrap: wrap; gap: 20px; }
  .faq-cols { flex-direction: column; gap: 24px; }
  .swap { gap: 24px; }
  .film-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 720px) {
  :root { --inset: 22px; --nav-inset: 20px; --band-top: 28px; --band-bottom: 36px; }
  .nav { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links { justify-content: flex-start; }
  .hero { padding-top: 24px; }
  .hero h1 { font-size: 46px; line-height: 50px; letter-spacing: -0.01em; }
  .hero-sub-serif { font-size: 25px; line-height: 32px; padding-top: 8px; }
  .hero-support { font-size: 18px; line-height: 28px; }
  .hero-repo { font-size: 11px; letter-spacing: 0.02em; word-break: break-word; }
  .btn-primary, .btn-secondary { font-size: 17px; padding: 13px 22px; }
  .flanks { gap: 16px; }
  .flanks figure svg { transform: scale(0.75); }
  .demo-head, .section-head { font-size: 32px; line-height: 38px; }
  .demo-sub, .section-sub { font-size: 17px; line-height: 27px; }
  .economics h2 { font-size: 32px; line-height: 40px; }
  .economics p { font-size: 17px; line-height: 27px; }
  .economics ul { gap: 18px; }
  .admission h2 { font-size: 32px; line-height: 40px; }
  .faq h2 { font-size: 30px; line-height: 38px; }
  .moat-card h3 { font-size: 26px; line-height: 32px; }
  .moat-card { padding: 22px 20px; }
  .tag-row { flex-wrap: wrap; }
  .sketch-row--four .sketch { width: 100%; max-width: 390px; }
  .unbuilt-close h3 { font-size: 26px; line-height: 34px; }
  .asks { gap: 32px; padding-top: 34px; }
  .asks-col--a, .asks-col--b { width: 100%; }
  /* stacked here, so it is no longer a scroller */
  .mint-row { flex-direction: column; align-items: stretch; overflow: visible; }
  .mint-card--a, .mint-card--b, .mint-card--c { width: 100%; }
  .mint-arrow { align-self: center; rotate: 90deg; }
  .stub { padding-top: 64px; }
  .stub h1 { font-size: 36px; line-height: 44px; }
  .footer { padding-top: 28px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 14px 18px; }
  .footer-colophon { font-size: 12.5px; }
}


/* ============================================================
   plate coordinates and inks, as classes rather than style="" —
   so the shipped CSP can keep style-src 'self' with no
   'unsafe-inline'. Every value is the artboard's own.
   ============================================================ */

.lbl--in  { left: 34px;  top: 30px; }
.lbl--out { left: 1004px; top: 30px; }

.src--1 { top: 92px; }
.src--2 { top: 150px; }
.src--3 { top: 208px; }
.src--4 { top: 266px; }
.src--5 { top: 324px; }
.src--6 { top: 382px; }

.agent--1 { top: 132px; width: 224px; }
.agent--2 { top: 210px; width: 230px; }
.agent--3 { top: 288px; width: 230px; }
.agent--4 { top: 366px; width: 230px; }

.dot--marigold   { background: var(--marigold); }
.dot--coral      { background: var(--coral); }
.dot--plum       { background: var(--plum); }
.dot--cornflower { background: var(--cornflower); }
.dot--fern       { background: var(--fern); }
.dot--rose       { background: var(--rose); }

.icon-white { color: #FFFFFF; }

.section-sub--wide { width: 860px; }
.moat-foot--tight  { padding-top: 0; }
.mat-caption--mint { padding-top: 14px; }

/* the roadmap sketches' drawn glyphs */
.glyph--g16 { gap: 16px; }
.glyph--g18 { gap: 18px; }
.sk-visit--inset { margin-inline: 14px; }
.cap--drop  { padding-bottom: 26px; }
.sk-book .lines i:nth-child(1),
.sk-book .lines i:nth-child(3) { width: 100%; }
.sk-book .lines i:nth-child(2) { width: 80%; }
.sk-spec i:nth-child(1),
.sk-spec i:nth-child(3) { width: 100%; }
.sk-spec i:nth-child(2) { width: 78%; }
.sk-spec i:nth-child(4) { width: 58%; }
.sk-arrows .a--1 i { width: 26px; }
.sk-arrows .a--2 i { width: 34px; }
.sk-arrows .a--3 i { width: 22px; }
