@charset "utf-8";
/* ============================================================================
   ARC TALENT — design system: "The Shortlist"

   The business sells a file containing three vetted people. So the page is
   built as that file: one continuous sheet, manila blocks where content earns
   emphasis, monospace for anything a records office would actually typeset
   (codes, dates, counts, stamps), and a display serif used big and rarely.

   Hard rules, verified by scripted contrast audit — do not break these:
     · --marker is decorative. It never carries text and never fills a control.
     · --seal on --ink is 1.77:1. Unusable. Ink bands use --seal-on-ink instead.
     · --grey (#4E4E46) is the one caption grey: 7.50:1 on sheet, 4.76:1 on
       manila. It works on both surfaces, so never override it per-surface.
     · Hairlines are decorative dividers, not UI components. Any border that is
       the sole boundary of a control uses --ink (15.86:1).
     · No fade-up-on-scroll. Motion is budgeted: the hero sequence, the seals
       inking in, and the card transitions. Nothing else moves.
   ========================================================================== */

/* ---------------------------------------------------------------- fonts ---- */
/* Self-hosted so first paint costs no third-party DNS + TLS handshake.
   All three are variable; Fraunces carries opsz, wght, SOFT and WONK. */
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-var-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist-var-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geistmono-var-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd, fieldset, legend {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
fieldset { border: 0; }
summary::-webkit-details-marker { display: none; }

/* --------------------------------------------------------------- tokens ---- */
:root {
  /* Surfaces */
  --ink:        #17181B;  /* text, and the one dark band */
  --ink-2:      #22242A;  /* raised surface on ink */
  --sheet:      #F4F2EC;  /* the document. Cool-cast, deliberately not warm cream */
  --sheet-2:    #EAE7DD;  /* recessed on sheet: input fills, table stripes */
  --folder:     #CFC2A4;  /* manila */
  --folder-2:   #C2B393;  /* manila, recessed: unselected tabs */

  /* Brand */
  --seal:       #1E4A3A;  /* archival green. Buttons, stamps, marks, focus */
  --seal-lift:  #2A6349;  /* seal, hover */
  --seal-on-ink:#4E9C7A;  /* the only green legible on --ink (5.38:1) */
  --marker:     #E8C33D;  /* highlighter. Decorative only */

  /* Text */
  --grey:       #4E4E46;  /* captions and mono metadata on sheet AND manila */
  --grey-on-ink:#9A9A92;

  /* Hairlines — decorative */
  --rule:        #C9C4B4;  /* on sheet */
  --rule-folder: #A39678;  /* on manila */
  --rule-ink:    #3B3E47;  /* on ink */

  --danger:     #8F2A1E;
  --danger-on-ink: #E9998C;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --fs-hero:  clamp(2.5rem, 5.4vw, 4.25rem);
  --fs-h2:    clamp(1.875rem, 3.4vw, 2.75rem);
  --fs-h3:    clamp(1.125rem, 1.6vw, 1.375rem);
  --fs-lead:  clamp(1.0625rem, 1.35vw, 1.25rem);
  --fs-body:  1.0625rem;
  --fs-sm:    0.9375rem;
  --fs-mono:  0.78125rem;
  --fs-mono-lg: 0.875rem;

  /* Space */
  --s1: 4px;  --s2: 8px;   --s3: 12px;  --s4: 16px;  --s5: 24px;
  --s6: 32px; --s7: 48px;  --s8: 64px;  --s9: 96px;  --s10: 128px;

  --wrap:  1240px;
  --pad:   clamp(20px, 4vw, 48px);
  --band-y: clamp(72px, 9vw, 132px);
  --rail-w: 172px;

  --r:   2px;   /* records, not marketing: near-square corners throughout */
  --r-0: 0px;

  /* A stamped impression, not a soft glow. Hard offsets only. */
  --press:      4px 4px 0 rgba(23, 24, 27, .16);
  --press-deep: 7px 7px 0 rgba(23, 24, 27, .16);
  --ease: cubic-bezier(.2, .82, .28, 1);
}

/* ----------------------------------------------------------------- base ---- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.62;
  color: var(--ink);
  background: var(--sheet);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--marker); color: var(--ink); }

/* One focus treatment, everywhere, always visible. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--seal);
  outline-offset: 3px;
  border-radius: var(--r);
}
.on-ink :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline-color: var(--marker);
}

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.skip {
  position: absolute; left: var(--s4); top: -100px; z-index: 100;
  background: var(--ink); color: var(--sheet);
  padding: var(--s3) var(--s4); font-family: var(--mono);
  font-size: var(--fs-mono); text-transform: uppercase; letter-spacing: .1em;
  transition: top .18s var(--ease);
}
.skip:focus { top: var(--s4); }

/* ----------------------------------------------------------- primitives ---- */
.wrap {
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--pad);
}
.wrap--narrow { max-width: 820px; }

/* Surfaces are set by modifier; padding is owned by .band alone so nothing
   cancels out. --band-tight is a variable, not an override, for the same reason. */
.band { padding-block: var(--band-y); }
.band--tight { padding-block: calc(var(--band-y) * .58); }
.band--sheet  { background: var(--sheet);  color: var(--ink); }
.band--folder { background: var(--folder); color: var(--ink); }
.band--ink    { background: var(--ink);    color: var(--sheet); }
.band--folder + .band--sheet, .band--sheet + .band--folder { border-top: 1px solid var(--rule-folder); }
.band[id] { scroll-margin-top: 88px; }

/* The spine: a metadata rail and the content column. The rail is not
   decoration — it carries the section's reference code and real counts. */
.spine { display: grid; gap: var(--s6); }
@media (min-width: 900px) {
  .spine {
    grid-template-columns: minmax(0, var(--rail-w)) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
  }
}

.rail {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--grey);
  border-top: 1px solid var(--rule);
  padding-top: var(--s3);
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5);
}
.band--folder .rail { border-top-color: var(--rule-folder); }
.band--ink .rail { border-top-color: var(--rule-ink); color: var(--grey-on-ink); }
@media (min-width: 900px) {
  .rail { display: block; position: sticky; top: 104px; }
  .rail > * + * { margin-top: var(--s4); }
}
.rail b { display: block; font-weight: 600; color: var(--ink); }
.band--ink .rail b { color: var(--sheet); }

/* ----------------------------------------------------------------- type ---- */
.h1, .h2, .h3 { font-weight: 400; }

.h1 {
  font-family: var(--display);
  font-size: var(--fs-hero);
  line-height: .97;
  letter-spacing: -.035em;
  font-variation-settings: "opsz" 144, "wght" 480, "SOFT" 0, "WONK" 1;
  text-wrap: balance;
}
.h2 {
  font-family: var(--display);
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -.028em;
  font-variation-settings: "opsz" 72, "wght" 480, "SOFT" 0, "WONK" 1;
  text-wrap: balance;
}
.h3 {
  font-family: var(--body);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.lead { font-size: var(--fs-lead); line-height: 1.55; max-width: 58ch; }
.prose { max-width: 62ch; }
.prose > * + * { margin-top: var(--s4); }
.small { font-size: var(--fs-sm); }
.quiet { color: var(--grey); }
.band--ink .quiet { color: var(--grey-on-ink); }

/* Monospace is the utility voice: codes, dates, counts, labels. */
.code {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.code--lg { font-size: var(--fs-mono-lg); }

/* A highlighter swipe. Sits behind the text baseline, never behind a control. */
.mark {
  background-image: linear-gradient(transparent 58%, var(--marker) 58%, var(--marker) 93%, transparent 93%);
  background-repeat: no-repeat;
  padding-inline: .08em;
}

.figure-big {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 0, "WONK" 1;
  font-feature-settings: "tnum" 1;
}

.divider { border: 0; border-top: 1px solid var(--rule); }
.band--folder .divider { border-top-color: var(--rule-folder); }
.band--ink .divider { border-top-color: var(--rule-ink); }

/* -------------------------------------------------------------- buttons ---- */
/* The press: a hard offset that collapses as the button travels into it, like
   setting a stamp down. No translateY(-2px) float. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 50px;
  padding: 13px 24px;
  font-family: var(--mono);
  font-size: var(--fs-mono-lg);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: var(--r);
  text-align: center;
  transition: background-color .16s var(--ease), color .16s var(--ease),
              box-shadow .16s var(--ease), transform .16s var(--ease);
}
.btn--seal {
  background: var(--seal); color: var(--sheet);
  border-color: var(--seal);
  box-shadow: var(--press);
}
.btn--seal:hover { background: var(--seal-lift); border-color: var(--seal-lift); }
.btn--outline {
  background: transparent; color: var(--ink);
  box-shadow: var(--press);
}
.btn--outline:hover { background: var(--sheet-2); }
.btn--on-ink {
  background: var(--sheet); color: var(--ink); border-color: var(--sheet);
  box-shadow: 4px 4px 0 rgba(78, 156, 122, .5);
}
.btn--on-ink:hover { background: #fff; }
.btn--bare {
  background: none; border-color: transparent; box-shadow: none;
  padding-inline: 0; min-height: 0; color: var(--seal);
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px;
}
.btn--bare:hover { color: var(--seal-lift); text-decoration-thickness: 2px; }
.btn:where(.btn--seal, .btn--outline, .btn--on-ink):hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(23, 24, 27, .16); }
.btn--on-ink:hover { box-shadow: 2px 2px 0 rgba(78, 156, 122, .5); }
.btn:where(.btn--seal, .btn--outline, .btn--on-ink):active { transform: translate(4px, 4px); box-shadow: 0 0 0 rgba(23, 24, 27, .16); }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; }

/* ---------------------------------------------------------------- stamp ---- */
/* The verification seal. Double-ruled, rotated, ink-textured where supported. */
.stamp {
  --stamp-c: var(--seal);
  display: inline-flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 7px 13px 6px;
  border: 2px solid var(--stamp-c);
  outline: 1px solid var(--stamp-c);
  outline-offset: 2px;
  color: var(--stamp-c);
  font-family: var(--mono);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  rotate: -5.5deg;
  /* The reveal is a transition INTO this declared state, never an animation
     away from it — see the note by [data-ink] below. */
  transition: opacity .42s var(--ease), scale .42s var(--ease), rotate .42s var(--ease);
}
.band--ink .stamp { --stamp-c: var(--seal-on-ink); }
.stamp__word { font-size: var(--fs-mono-lg); letter-spacing: .16em; white-space: nowrap; }
.stamp__meta { font-size: .6875rem; letter-spacing: .08em; opacity: .85; white-space: nowrap; }

/* Real stamps ink unevenly. Progressive enhancement — solid if unsupported.
   The grain is deliberately weak: strong enough to read as ink on paper, light
   enough that the reference code underneath stays legible. */
@supports (mask-image: url("#")) or (-webkit-mask-image: url("#")) {
  .stamp {
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='.3' intercept='.82'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--grain);
    mask-image: var(--grain);
    -webkit-mask-size: 120px;
    mask-size: 120px;
  }
}

/* ----------------------------------------------------------------- hero ---- */
/* The hero gets the full measure — no rail. The rail is a sectioning device;
   spending 172px of the first screen on it starved the headline. */
.hero { padding-block: clamp(40px, 5vw, 72px) clamp(64px, 8vw, 116px); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5);
  padding-bottom: var(--s5); margin-bottom: clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--rule);
}
.hero__grid { display: grid; gap: clamp(40px, 6vw, 56px); }
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
  }
}
.hero__price {
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5);
  align-items: baseline;
  margin-top: var(--s6); padding-top: var(--s4);
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: var(--fs-mono-lg);
  letter-spacing: .06em; text-transform: uppercase; color: var(--grey);
}
.hero__price b { color: var(--ink); font-weight: 600; }

/* ----------------------------------------------- the shortlist card stack --- */
/* Signature element. Tabs are real tabs: role=tablist, arrow-key driven. */
.stack { max-width: 460px; }
.stack__tabs { display: flex; gap: 3px; align-items: flex-end; }
.stack__tab {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 16px 8px;
  background: var(--folder-2);
  color: var(--grey);
  border: 1px solid var(--rule-folder);
  border-bottom: 0;
  border-radius: var(--r) var(--r) 0 0;
  translate: 0 4px;
  transition: translate .18s var(--ease), background-color .18s var(--ease),
              color .18s var(--ease);
}
.stack__tab:hover { background: var(--folder); translate: 0 2px; }
.stack__tab[aria-selected="true"] {
  background: var(--folder);
  color: var(--ink);
  font-weight: 600;
  translate: 0 1px;
  position: relative; z-index: 2;
}
.card {
  position: relative;
  background: var(--folder);
  border: 1px solid var(--rule-folder);
  border-radius: 0 var(--r) var(--r) var(--r);
  box-shadow: var(--press-deep);
  padding: var(--s5) var(--s5) var(--s6);
}
.card[hidden] { display: none; }
.card__role {
  font-family: var(--mono); font-size: var(--fs-mono-lg); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.card__name {
  font-family: var(--display); font-size: 1.75rem; line-height: 1.1;
  letter-spacing: -.025em;
  font-variation-settings: "opsz" 48, "wght" 500, "SOFT" 0, "WONK" 1;
  margin-top: var(--s2);
}
.card__facts {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s2) var(--s4);
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid var(--rule-folder);
  font-size: var(--fs-sm);
}
.card__facts dt {
  font-family: var(--mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--grey);
  padding-top: 3px;
}
.card__facts dd { font-weight: 500; }
.card__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s4);
  margin-top: var(--s5);
}
.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip {
  font-family: var(--mono); font-size: var(--fs-mono); letter-spacing: .05em;
  padding: 3px 7px; border: 1px solid var(--rule-folder); border-radius: var(--r);
  color: var(--grey);
}

/* ------------------------------------------------------- the seven checks --- */
.checks { border-top: 1px solid var(--rule); }
.check {
  display: grid; gap: var(--s2) var(--s5);
  grid-template-columns: auto 1fr;
  padding-block: var(--s5);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .check { grid-template-columns: auto minmax(0, 1fr) minmax(0, 15rem); align-items: baseline; }
}
.check__tick {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1.5px solid var(--seal); border-radius: 50%;
  color: var(--seal);
}
.check__tick svg { width: 14px; height: 14px; }
.check__n {
  font-family: var(--mono); font-size: var(--fs-mono); color: var(--grey);
  letter-spacing: .08em;
}
.check__evidence {
  font-size: var(--fs-sm); color: var(--grey);
  border-left: 1px solid var(--rule); padding-left: var(--s4);
}
@media (max-width: 759px) {
  .check__evidence { grid-column: 2; border-left: 0; padding-left: 0; }
}

/* ------------------------------------------------------------- timeline ---- */
/* A real sequence, so the day markers carry information rather than decorate. */
.timeline { border-top: 1px solid var(--rule); }
.timeline__item {
  display: grid; gap: var(--s2) var(--s5);
  padding-block: var(--s5);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 680px) {
  .timeline__item { grid-template-columns: 7.5rem minmax(0, 1fr); align-items: baseline; }
}
.timeline__when {
  font-family: var(--mono); font-size: var(--fs-mono); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.timeline__what { max-width: 58ch; }
.timeline__what p { margin-top: 6px; }

/* ---------------------------------------------------------------- roles ---- */
.roles { display: grid; gap: var(--s6); }
@media (min-width: 820px) { .roles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s7); } }
.role { border-top: 2px solid var(--ink); padding-top: var(--s4); }
.role__tasks { margin-top: var(--s4); font-size: var(--fs-sm); }
.role__tasks li {
  padding-block: 7px;
  border-bottom: 1px solid var(--rule);
}
.role__tasks li:last-child { border-bottom: 0; }

/* ---------------------------------------------------------------- price ---- */
.price { display: grid; gap: clamp(32px, 4vw, 64px); }
@media (min-width: 900px) { .price { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; } }
.price__points { margin-top: var(--s5); }
.price__points li {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s4);
  padding-block: var(--s4);
  border-bottom: 1px solid var(--rule);
}
.price__points li:first-child { border-top: 1px solid var(--rule); }
.price__points .code { color: var(--grey); padding-top: 3px; }

/* -------------------------------------------------------------- founder ---- */
.founder { display: grid; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 780px) { .founder { grid-template-columns: minmax(0, 220px) minmax(0, 1fr); align-items: start; } }
.founder__photo {
  aspect-ratio: 4 / 5;
  background: var(--sheet-2);
  border: 1px solid var(--rule);
  display: grid; place-items: center; text-align: center;
  padding: var(--s4);
}

/* ---------------------------------------------------------------- start ---- */
.start { display: grid; gap: clamp(40px, 5vw, 72px); }
@media (min-width: 900px) { .start { grid-template-columns: minmax(0, 1fr) minmax(0, 440px); align-items: start; } }
.start__or {
  display: flex; align-items: center; gap: var(--s4);
  margin-block: var(--s6);
  font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: .1em; text-transform: uppercase; color: var(--grey-on-ink);
}
.start__or::before, .start__or::after {
  content: ""; height: 1px; flex: 1; background: var(--rule-ink);
}
/* .panel is a light surface that sits inside the ink band. To keep the two
   colour worlds from fighting, `.on-ink` goes on the band's own text column
   only — never on an ancestor of a panel. */
.panel {
  background: var(--sheet); color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--r);
  box-shadow: var(--press-deep);
  padding: clamp(20px, 3vw, 32px);
}

/* -------------------------------------------------------- overlap band ---- */
.overlap { display: grid; gap: var(--s3); }
.overlap__row { display: grid; grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr); gap: var(--s4); align-items: center; }
.overlap__label {
  font-family: var(--mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}
.overlap__track {
  position: relative; height: 26px;
  background: var(--sheet-2);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
}
.band--ink .overlap__track { background: var(--ink-2); border-color: var(--rule-ink); }
.overlap__fill {
  position: absolute; inset-block: 0;
  background: var(--seal);
}
.band--ink .overlap__fill { background: var(--seal-on-ink); }
.overlap__fill--dim { background: var(--rule-folder); }
.band--ink .overlap__fill--dim { background: var(--rule-ink); }
/* Hours that are NOT shared must not be painted in the affirmative green —
   otherwise Manila's night shift reads as good coverage. */
.overlap__fill--off { background: #8A8F99; }
.band--ink .overlap__fill--off { background: #5A5F6B; }
.overlap__ticks {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: .6875rem; color: var(--grey);
  letter-spacing: .06em;
}
.band--ink .overlap__ticks { color: var(--grey-on-ink); }

/* ---------------------------------------------------------------- table ---- */
.table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.table th, .table td {
  text-align: left; padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--rule);
  vertical-align: baseline;
}
.table th {
  font-family: var(--mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--grey);
}
.table td:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.table tr:last-child td { border-bottom: 0; }
.table__row--ours td { font-weight: 600; background: var(--sheet-2); }
.table-scroll { overflow-x: auto; }

/* ------------------------------------------------------------ accordion ---- */
.qa { border-top: 1px solid var(--rule); }
.qa__item { border-bottom: 1px solid var(--rule); }
.qa__q {
  display: flex; align-items: baseline; gap: var(--s4);
  padding-block: var(--s5);
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}
.qa__q::after {
  content: "+"; margin-left: auto;
  font-family: var(--mono); font-size: 1.25rem; line-height: 1; color: var(--seal);
}
.qa__item[open] .qa__q::after { content: "\2212"; }
.qa__k {
  font-family: var(--mono); font-size: var(--fs-mono); color: var(--grey);
  letter-spacing: .08em; flex: none;
}
.qa__a { padding-bottom: var(--s5); padding-left: calc(var(--s4) + 2.25rem); max-width: 62ch; }
@media (max-width: 559px) { .qa__a { padding-left: 0; } }

/* ---------------------------------------------------------------- forms ---- */
.form { display: grid; gap: var(--s4); }
.field { display: grid; gap: 6px; }
.field > label, .field > .field__label {
  font-family: var(--mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}
.control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  background: var(--sheet);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--r);
  transition: box-shadow .14s var(--ease);
}
.control::placeholder { color: var(--grey); opacity: .75; }
.control:hover { box-shadow: inset 0 0 0 1px var(--ink); }
textarea.control { min-height: 108px; resize: vertical; }
select.control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 15px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.control[aria-invalid="true"] { border-color: var(--danger); border-width: 2px; }
.error { color: var(--danger); font-size: var(--fs-sm); min-height: 0; }
.error:empty { display: none; }
.req { color: var(--danger); }
.on-ink .control { background: var(--sheet); }
.on-ink .field > label, .on-ink .field > .field__label { color: var(--sheet); }
.on-ink .error { color: var(--danger-on-ink); }

.form__note { font-size: var(--fs-sm); color: var(--grey); }
.on-ink .form__note { color: var(--grey-on-ink); }
.form-summary {
  border-left: 3px solid var(--danger); padding: var(--s3) var(--s4);
  background: var(--sheet-2); color: var(--danger); font-size: var(--fs-sm);
}
.form-summary:empty { display: none; }

/* -------------------------------------------------------------- article ---- */
.article { max-width: 66ch; }
.article > * + * { margin-top: var(--s5); }
.article h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9375rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-variation-settings: "opsz" 48, "wght" 480, "SOFT" 0, "WONK" 1;
  margin-top: var(--s8);
}
.article h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: var(--fs-h3);
  letter-spacing: -.01em;
  margin-top: var(--s7);
}
.article h3 + p { margin-top: var(--s3); }
.article a {
  color: var(--seal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article a:hover { text-decoration-thickness: 2px; }
.article strong { font-weight: 600; }
.article blockquote {
  border-left: 2px solid var(--seal);
  padding-left: var(--s5);
  margin-block: var(--s7);
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 0, "WONK" 1;
}
.article ol { counter-reset: step; }
.article ol > li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  padding-block: var(--s3);
  border-bottom: 1px solid var(--rule);
}
.article ol > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--grey);
  padding-top: 5px;
}
.article ol > li:first-child { border-top: 1px solid var(--rule); }
.article .callout {
  background: var(--folder);
  border: 1px solid var(--rule-folder);
  border-radius: var(--r);
  padding: var(--s5);
  margin-block: var(--s7);
  font-size: var(--fs-sm);
}
.article hr { border: 0; border-top: 1px solid var(--rule); margin-block: var(--s7); }

.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s5);
  font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: .08em; text-transform: uppercase; color: var(--grey);
}
.crumbs {
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3);
  font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: .08em; text-transform: uppercase; color: var(--grey);
  margin-bottom: var(--s6);
}
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------- header ---- */
.top {
  position: sticky; top: 0; z-index: 40;
  background: var(--sheet);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.top[data-scrolled="true"] { border-bottom-color: var(--rule); }
.top__in {
  display: flex; align-items: center; gap: var(--s5);
  min-height: 72px;
}
.wordmark {
  font-family: var(--display); font-size: 1.375rem; letter-spacing: -.03em;
  font-variation-settings: "opsz" 36, "wght" 520, "SOFT" 0, "WONK" 1;
  white-space: nowrap;
}
.wordmark span { color: var(--seal); }
.top__nav { display: none; margin-left: auto; gap: var(--s6); }
@media (min-width: 860px) { .top__nav { display: flex; } }
.top__nav a {
  font-family: var(--mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
}
.top__nav a:hover { border-bottom-color: var(--seal); }
.top__cta { margin-left: auto; }
@media (min-width: 860px) { .top__cta { margin-left: 0; } }

/* --------------------------------------------------------------- footer ---- */
.foot { background: var(--ink); color: var(--sheet); padding-block: var(--s8) var(--s6); }
.foot__grid {
  display: grid; gap: var(--s7);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .foot__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.foot h4 {
  font-family: var(--mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--grey-on-ink);
  margin-bottom: var(--s4);
}
.foot li + li { margin-top: var(--s3); }
.foot a:hover { color: var(--seal-on-ink); }
.foot__bottom {
  display: flex; flex-wrap: wrap; gap: var(--s4) var(--s6);
  justify-content: space-between;
  margin-top: var(--s8); padding-top: var(--s5);
  border-top: 1px solid var(--rule-ink);
  font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: .06em; color: var(--grey-on-ink);
}

/* --------------------------------------------------------------- motion ---- */
/* The whole budget lives here. Three things move; nothing else does. */
@keyframes settle { from { opacity: 0; translate: 0 12px; } to { opacity: 1; translate: 0 0; } }
@keyframes pull { from { opacity: 0; translate: -10px 6px; } to { opacity: 1; translate: 0 0; } }

.js .hero-seq > * { opacity: 0; }
.js .hero-seq[data-run="true"] > * { animation: settle .5s var(--ease) forwards; }
.js .hero-seq[data-run="true"] > :nth-child(2) { animation-delay: .07s; }
.js .hero-seq[data-run="true"] > :nth-child(3) { animation-delay: .14s; }
.js .hero-seq[data-run="true"] > :nth-child(4) { animation-delay: .21s; }

/* A stamp is content, so it must never be able to end up invisible.
   This is a transition, not a keyframe animation, and that is deliberate: a
   suspended animation (offscreen iframe, background tab, some webviews) pins
   the element to its 0% keyframe and outranks the element's own opacity, with
   or without fill-mode. A transition can only ever move TOWARD the declared
   state, so if it is throttled or never runs, the stamp simply appears.
   Removing the attribute is the reveal. */
.js .stamp[data-ink="pending"] { opacity: 0; scale: 1.28; rotate: -12deg; }

.js .card[data-entered="true"] { animation: pull .26s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }
  .js .hero-seq > * { opacity: 1; }
  .js .stamp[data-ink="pending"] { opacity: 1; scale: 1; rotate: -5.5deg; }
  .btn:hover { transform: none; }
}

/* ------------------------------------------------------- forced colours ---- */
@media (forced-colors: active) {
  .btn, .control, .card, .stack__tab { border: 1px solid; }
  .stamp { outline: 1px solid; }
  .overlap__fill { background: Highlight; }
  .mark { background: none; text-decoration: underline; }
}
