/* ==========================================================================
   MMLC Runtime v1.0 — mmlc.evemisslab.com

   Direction: the descent. A document enters at the top and leaves as evidence
   at the bottom, so depth is the organising idea. One steel-indigo ramp runs
   the nine stages, because MMLC's claim is that they are one execution model
   rather than nine tools.

   Three accents, each with exactly one job, taken from the runtime's own
   vocabulary:
     --pass      this was established and audited
     --branch    this is a counterfactual fork, not the world
     --declared  this is an input you asserted, not a truth the runtime found

   The recurring component is `.isnt` — the "X is not Y" form that both
   LIMITATIONS.md and the separation-of-concerns section are written in.
   ========================================================================== */

:root {
  color-scheme: light dark;

  --ground:  #eceef1;
  --raised:  #f5f7f9;
  --sunk:    #e2e6eb;
  --ink:     #141b26;
  --ink-2:   #4b5768;
  --ink-3:   #566375;
  --rule:    #c2c9d2;
  --hair:    #d8dde4;

  /* depth ramp: stage 1 at the surface, stage 9 at the base */
  --d1: #93a3b8;
  --d2: #8595ab;
  --d3: #77879e;
  --d4: #5f6d84;
  --d5: #55637a;
  --d6: #4a5971;
  --d7: #3c4b62;
  --d8: #2f3d53;
  --d9: #222f44;

  --pass:     #0f6b4f;
  --branch:   #64379a;
  --declared: #8a5a0c;
  --pass-wash:     #dcece5;
  --branch-wash:   #e8e0f2;
  --declared-wash: #f0e6d4;

  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --prose: "Source Serif 4", Georgia, serif;
  --mono: "Spline Sans Mono", ui-monospace, "Cascadia Mono", Menlo, monospace;

  --measure: 36rem;
  --shell: 74rem;
  --gap: clamp(2.75rem, 6vw, 4.75rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground:  #0e131b;
    --raised:  #161e2a;
    --sunk:    #0a0e15;
    --ink:     #dfe5ec;
    --ink-2:   #9daaba;
    --ink-3:   #8895a6;
    --rule:    #2c3846;
    --hair:    #1e2833;

    --d1: #3b4759;
    --d2: #445264;
    --d3: #4d5b6e;
    --d4: #56657a;
    --d5: #7b8da7;
    --d6: #869ab2;
    --d7: #93a6bd;
    --d8: #a0b2c8;
    --d9: #adbed2;

    --pass:     #4fc39b;
    --branch:   #b28ce0;
    --declared: #dcac59;
    --pass-wash:     #102b23;
    --branch-wash:   #221a33;
    --declared-wash: #2c2211;
  }
}

:root[data-theme="dark"] {
  --ground:  #0e131b;
  --raised:  #161e2a;
  --sunk:    #0a0e15;
  --ink:     #dfe5ec;
  --ink-2:   #9daaba;
  --ink-3:   #8895a6;
  --rule:    #2c3846;
  --hair:    #1e2833;

  --d1: #3b4759;
  --d2: #445264;
  --d3: #4d5b6e;
  --d4: #56657a;
  --d5: #7b8da7;
  --d6: #869ab2;
  --d7: #93a6bd;
  --d8: #a0b2c8;
  --d9: #adbed2;

  --pass:     #4fc39b;
  --branch:   #b28ce0;
  --declared: #dcac59;
  --pass-wash:     #102b23;
  --branch-wash:   #221a33;
  --declared-wash: #2c2211;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--prose);
  font-size: 1.0625rem;
  line-height: 1.66;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

html[lang="zh-Hant"] body {
  font-family: "Source Serif 4", "Noto Serif TC", Georgia, serif;
  line-height: 1.85;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { text-decoration-color: var(--pass); }

:focus-visible { outline: 2px solid var(--pass); outline-offset: 3px; }

code, var, samp {
  font-family: var(--mono);
  font-size: 0.86em;
  font-style: normal;
}
var { color: var(--ink-2); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 0.75rem 1rem; background: var(--ink); color: var(--ground);
  font-family: var(--mono); font-size: 0.75rem;
}
.skip:focus { left: 0; }

/* --- nameplate ---------------------------------------------------------- */

.plate {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--ground) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.plate-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 1.15rem;
}

.plate-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 0.4rem;
}
.plate-ver {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.plate-nav {
  display: flex; gap: 0.95rem;
  order: 3; flex: 1 0 100%;
  overflow-x: auto; scrollbar-width: none;
}
.plate-nav::-webkit-scrollbar { display: none; }

@media (min-width: 60rem) {
  .plate-nav { order: 0; flex: 0 1 auto; margin-left: auto; }
}

.plate-link {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-2);
  white-space: nowrap;
  padding-bottom: 0.12rem;
  border-bottom: 1.5px solid transparent;
}
.plate-link:hover { color: var(--ink); }
.plate-link[aria-current="page"] { color: var(--ink); border-bottom-color: var(--d6); }

.plate-tools { display: flex; gap: 0.45rem; align-items: center; flex-shrink: 0; margin-left: auto; }
@media (min-width: 60rem) { .plate-tools { margin-left: 0; } }

.plate-btn {
  font-family: var(--mono); font-size: 0.6875rem;
  color: var(--ink-2); background: none;
  border: 1px solid var(--rule); border-radius: 2px;
  padding: 0.25rem 0.5rem; cursor: pointer; text-decoration: none; line-height: 1.2;
}
.plate-btn:hover { color: var(--ink); border-color: var(--ink-2); }

/* --- shell -------------------------------------------------------------- */

.shell { max-width: var(--shell); margin: 0 auto; padding-inline: 1.5rem; }

.mast { padding-block: clamp(2.75rem, 7vw, 4.75rem) 0; }

.mast-eyebrow {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1.35rem;
}

.mast-display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
}

html[lang="zh-Hant"] .mast-display {
  font-family: "Noto Sans TC", var(--display);
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.mast-stand {
  max-width: var(--measure);
  margin: 1.6rem 0 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-2);
}
html[lang="zh-Hant"] .mast-stand { line-height: 1.85; }

/* --- the descent -------------------------------------------------------- */

.descent {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

@media (min-width: 58rem) {
  .descent { grid-template-columns: minmax(0, 21rem) minmax(0, 1fr); gap: 2rem; }
}

.descent-col { display: grid; gap: 0.45rem; align-content: start; }

.descent-cap {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 0.6rem;
}
.descent-cap::after { content: ""; flex: 1; height: 1px; background: var(--rule); }

.descent-stack { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }

.stratum {
  width: 100%;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  border: 0;
  border-left: 3px solid transparent;
  background: var(--depth);
  /* Text colour follows the band's lightness, not its depth index — and the
     ramp inverts between schemes, so the shallow/deep split moves with it.
     White on --d1 is 2.55:1, which is not a label. */
  color: var(--on, #f4f6f9);
  padding: 0.62rem 0.75rem;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.35;
  transition: border-color 140ms ease, filter 140ms ease;
}
.stratum:hover { filter: brightness(1.12); }
.stratum[aria-selected="true"] { border-left-color: var(--pass); filter: brightness(1.16); }

/* Light scheme: strata 01-03 are pale, so they take dark ink. */
.stratum[data-i="0"], .stratum[data-i="1"], .stratum[data-i="2"] { --on: #101822; }

/* Dark scheme: the ramp runs the other way, so 01-03 go back to light ink and
   the crossover moves up — 05-09 are the pale bands there. The dark ramp is
   spaced to jump the range where neither ink clears 4.5:1. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .stratum[data-i="0"],
  :root:not([data-theme="light"]) .stratum[data-i="1"],
  :root:not([data-theme="light"]) .stratum[data-i="2"] { --on: #f4f6f9; }
  :root:not([data-theme="light"]) .stratum[data-i="4"],
  :root:not([data-theme="light"]) .stratum[data-i="5"],
  :root:not([data-theme="light"]) .stratum[data-i="6"],
  :root:not([data-theme="light"]) .stratum[data-i="7"],
  :root:not([data-theme="light"]) .stratum[data-i="8"] { --on: #101822; }
}

:root[data-theme="dark"] .stratum[data-i="0"],
:root[data-theme="dark"] .stratum[data-i="1"],
:root[data-theme="dark"] .stratum[data-i="2"] { --on: #f4f6f9; }
:root[data-theme="dark"] .stratum[data-i="4"],
:root[data-theme="dark"] .stratum[data-i="5"],
:root[data-theme="dark"] .stratum[data-i="6"],
:root[data-theme="dark"] .stratum[data-i="7"],
:root[data-theme="dark"] .stratum[data-i="8"] { --on: #101822; }

.stratum-n { font-size: 0.625rem; opacity: 0.78; letter-spacing: 0.06em; }
.stratum-name { overflow-wrap: anywhere; }

/* the load sequence: strata settle top to bottom, once */
.descent-stack > li { animation: settle 420ms cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
@keyframes settle {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.descent-panel {
  border: 1px solid var(--rule);
  background: var(--raised);
  padding: 1.15rem 1.25rem 1.35rem;
  align-self: start;
}

.panel-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--hair);
}

.panel-n {
  font-family: var(--mono); font-size: 0.625rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}

.panel-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.0625rem, 2.4vw, 1.375rem);
  letter-spacing: -0.02em;
  margin: 0;
}
html[lang="zh-Hant"] .panel-name { font-family: "Noto Sans TC", var(--display); }

.panel-row { margin-top: 0.95rem; }

.panel-label {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 0.4rem;
}
.panel-row[data-kind="isnt"] .panel-label { color: var(--declared); }

.panel-does { margin: 0; font-size: 0.9375rem; line-height: 1.55; }
.panel-note { margin: 0.55rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--ink-2); }

.descent-caption {
  margin: 0.9rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 46rem;
}

/* --- the isnt line: "X is not Y" ---------------------------------------- */

.isnt {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.2rem 0.8rem;
  align-items: baseline;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--hair);
}

@media (min-width: 44rem) {
  .isnt { grid-template-columns: minmax(0, 1fr) 1.5rem minmax(0, 1fr); }
}

.isnt-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); max-width: 50rem; }
.isnt-list > li:last-child .isnt { border-bottom: 0; }

.isnt-a { font-size: 0.9375rem; line-height: 1.5; }

.isnt-op {
  font-family: var(--mono);
  font-size: 0.9375rem;
  color: var(--declared);
  text-align: center;
  user-select: none;
}
@media (max-width: 43.99rem) {
  .isnt-op { text-align: left; font-size: 0.75rem; }
  .isnt-op::after { content: " is not"; font-family: var(--prose); color: var(--ink-3); }
  html[lang="zh-Hant"] .isnt-op::after { content: " 不是"; }
}

.isnt-b {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-2);
}

/* --- body layout: index rail on the right ------------------------------- */

.body { padding-block: var(--gap) clamp(2.75rem, 6vw, 4.5rem); }

.body-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.75rem; }

@media (min-width: 64rem) {
  .body-grid { grid-template-columns: minmax(0, 1fr) 12rem; gap: 3.5rem; }
}

.toc { display: none; }

@media (min-width: 64rem) {
  .toc {
    display: block;
    position: sticky; top: 5rem; align-self: start;
    order: 2;
  }
}

.toc-title {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 0.75rem;
}

.toc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }

.toc-link {
  font-family: var(--mono);
  font-size: 0.6875rem;
  line-height: 1.4;
  color: var(--ink-2);
  text-decoration: none;
  display: grid;
  grid-template-columns: 0.75rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: baseline;
  padding-block: 0.28rem;
}
.toc-link::before {
  content: "";
  height: 2px;
  background: var(--rule);
  align-self: center;
}
.toc-link:hover { color: var(--ink); }
.toc-link.is-here { color: var(--ink); }
.toc-link.is-here::before { background: var(--d6); }

/* --- flow --------------------------------------------------------------- */

.flow > * + * { margin-top: 1.1rem; }
.flow > .h2 { margin-top: var(--gap); }
.flow > .h2:first-child { margin-top: 0; }

.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.1875rem, 2.6vw, 1.5rem);
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 1.2rem;
  scroll-margin-top: 5rem;
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
}
.h2::before {
  content: "";
  height: 0.5rem;
  background: var(--d6);
  transform: translateY(-0.28em);
}
html[lang="zh-Hant"] .h2 { font-family: "Noto Sans TC", var(--display); letter-spacing: 0; }

.p { margin: 0; max-width: var(--measure); }

.list { margin: 0; padding: 0; list-style: none; max-width: var(--measure); }
.list > li { position: relative; padding-left: 1.4rem; margin-top: 0.55rem; font-size: 0.9875rem; }
.list > li:first-child { margin-top: 0; }
.list > li::before {
  content: "";
  position: absolute; left: 0; top: 0.68em;
  width: 0.55rem; height: 1.5px; background: var(--d5);
}

.list-refuse { max-width: 46rem; }
.list-refuse > li { color: var(--ink-2); }
.list-refuse > li::before {
  background: none;
  width: auto; height: auto; top: 0;
  content: "\2298";
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--declared);
}

/* --- ordered sequence --------------------------------------------------- */

.steps { counter-reset: s; margin: 0; padding: 0; list-style: none; max-width: 44rem; border-top: 1px solid var(--rule); }
.steps > li {
  counter-increment: s;
  display: grid; grid-template-columns: 2.25rem minmax(0, 1fr); gap: 0.9rem;
  padding-block: 0.62rem;
  border-bottom: 1px solid var(--hair);
  font-size: 0.9375rem; align-items: baseline;
}
.steps > li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: 0.6875rem; color: var(--ink-3); letter-spacing: 0.06em;
}

/* --- register ----------------------------------------------------------- */

.reg-wrap { overflow-x: auto; border: 1px solid var(--rule); }
.reg { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 0.8125rem; line-height: 1.5; }

.reg th {
  text-align: left; font-weight: 600; font-size: 0.5625rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
  padding: 0.65rem 0.9rem; background: var(--sunk);
  border-bottom: 1px solid var(--rule); white-space: nowrap;
}
.reg td { padding: 0.58rem 0.9rem; border-bottom: 1px solid var(--hair); vertical-align: top; }
.reg tbody tr:last-child td { border-bottom: 0; }
.reg b { font-weight: 600; }

.reg-zero td {
  border-top: 2px solid var(--d8);
  background: var(--pass-wash) !important;
  color: var(--pass);
  font-weight: 600;
}

/* --- stamp -------------------------------------------------------------- */

.stamp {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
  border-left: 3px solid var(--rule);
  padding: 0.8rem 0 0.85rem 0.95rem;
  max-width: 46rem;
  font-size: 0.9375rem;
}

@media (min-width: 40rem) {
  .stamp { grid-template-columns: 5.5rem minmax(0, 1fr); gap: 0.9rem; align-items: baseline; }
}

.stamp-mark {
  font-family: var(--mono); font-weight: 600; font-size: 0.5625rem;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.stamp-text { margin: 0; }

.stamp[data-state="pass"] { border-left-color: var(--pass); background: var(--pass-wash); }
.stamp[data-state="pass"] .stamp-mark { color: var(--pass); }
.stamp[data-state="branch"] { border-left-color: var(--branch); background: var(--branch-wash); }
.stamp[data-state="branch"] .stamp-mark { color: var(--branch); }
.stamp[data-state="declared"] { border-left-color: var(--declared); background: var(--declared-wash); }
.stamp[data-state="declared"] .stamp-mark { color: var(--declared); }

/* --- definitions -------------------------------------------------------- */

.defs { margin: 0; border-top: 1px solid var(--rule); max-width: 50rem; }
.defs-row {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 0.2rem 1.4rem;
  padding-block: 0.72rem; border-bottom: 1px solid var(--hair);
}
@media (min-width: 42rem) {
  .defs-row { grid-template-columns: 12rem minmax(0, 1fr); }
}
.defs-term { font-family: var(--mono); font-weight: 600; font-size: 0.75rem; line-height: 1.5; padding-top: 0.12rem; }
.defs-desc { margin: 0; font-size: 0.9375rem; line-height: 1.58; }

/* --- code and math ------------------------------------------------------ */

.code { margin-top: 1.35rem; border: 1px solid var(--rule); background: var(--raised); overflow-x: auto; }
.code-tag {
  font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  padding: 0.45rem 0.9rem; border-bottom: 1px solid var(--hair);
  background: var(--sunk); position: sticky; left: 0;
}
.code pre { margin: 0; padding: 0.9rem; font-family: var(--mono); font-size: 0.75rem; line-height: 1.7; white-space: pre; }

.math {
  margin: 1.35rem 0 0;
  padding: 1.1rem 1rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
  font-family: var(--mono);
  font-size: clamp(1rem, 3vw, 1.375rem);
  letter-spacing: 0.02em;
  max-width: 46rem;
  overflow-x: auto;
}

/* --- capability cascade ------------------------------------------------- */

.cascade { margin: 0; padding: 0; list-style: none; max-width: 46rem; display: grid; gap: 1px; }
.cascade > li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.5rem 0.75rem;
  background: var(--raised);
  font-size: 0.9375rem;
}
.cascade > li::before {
  content: "";
  height: 0.4rem;
  background: var(--tone);
  transform: translateY(-0.2em);
}

/* --- E series ----------------------------------------------------------- */

.eseries { margin: 0; border-top: 2px solid var(--d8); max-width: 50rem; }
.eseries-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.5rem 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
}
@media (min-width: 48rem) {
  .eseries-row { grid-template-columns: 2.5rem 15rem minmax(0, 1fr); }
}
.eseries-e { font-family: var(--display); font-weight: 700; font-size: 0.875rem; color: var(--ink); }
.eseries-dir { font-family: var(--mono); font-size: 0.6875rem; color: var(--ink-3); overflow-wrap: anywhere; }
.eseries-what { margin: 0; font-size: 0.9375rem; line-height: 1.55; grid-column: 2 / -1; }
@media (min-width: 48rem) { .eseries-what { grid-column: 3; } }

/* --- footer ------------------------------------------------------------- */

.foot { border-top: 1px solid var(--rule); background: var(--sunk); padding-block: 2.25rem 2.75rem; }
.foot-grid { display: grid; gap: 1.6rem; }
@media (min-width: 48rem) { .foot-grid { grid-template-columns: minmax(0, 1fr) 15rem; gap: 3rem; } }

.foot-note {
  margin: 0; font-size: 0.8125rem; line-height: 1.6; color: var(--ink-2);
  max-width: 42rem; border-left: 3px solid var(--declared); padding-left: 1rem;
}
.foot-meta { display: grid; gap: 0.5rem; align-content: start; }
.foot-line { font-family: var(--mono); font-size: 0.6875rem; color: var(--ink-3); }
.foot-line a { color: var(--ink-2); }

/* --- 404 ---------------------------------------------------------------- */

.gone { padding-block: clamp(4rem, 13vw, 8rem); }
