/* ============================================================
   Beyond Work — "Second Nature" vision story
   Editorial layout built on the Second Nature tokens.
   Prose column ~720px; full-bleed for hero, dividers, islands.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--fg-default);
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:root {
  --measure: 720px;       /* editorial reading column */
  --measure-wide: 1080px; /* islands, wide moments */
  --gutter: 24px;
}

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

/* ---------- Reading progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 90; background: transparent; pointer-events: none;
}
.progress__bar {
  height: 100%; width: 0%;
  background: var(--accent);
  transition: width 80ms linear;
}

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px clamp(16px, 4vw, 40px);
  background: color-mix(in srgb, var(--bg-page) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-hairline-color);
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; border: 0; }
.nav__brand img { height: 22px; width: auto; }
[data-theme="dark"] .nav__brand img { filter: invert(1) brightness(1.05); }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__theme {
  width: 34px; height: 34px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border-hairline-color);
  color: var(--fg-strong); cursor: pointer; padding: 0;
  transition: border-color var(--dur-1) var(--ease-organic), color var(--dur-1) var(--ease-organic);
}
.nav__theme:hover { border-color: var(--accent); color: var(--accent); }
.nav__theme svg { width: 15px; height: 15px; }
.nav__contents {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-strong);
  background: transparent; border: 1px solid var(--border-hairline-color);
  border-radius: 999px; height: 34px; padding: 0 14px; cursor: pointer;
  transition: border-color var(--dur-1) var(--ease-organic), color var(--dur-1) var(--ease-organic);
}
.nav__contents:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--wide { max-width: var(--measure-wide); }
.bleed { width: 100%; }

section { position: relative; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background: #0F1714; color: #F4EFE3;
  padding: clamp(96px, 16vh, 200px) 0 clamp(72px, 12vh, 128px);
  border-bottom: 1px solid #0F1714;
}
.hero__photo { position: absolute; inset: 0; pointer-events: none; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.5) contrast(1.05) brightness(0.62); }
.hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,22,17,0.35) 0%, rgba(10,22,17,0.72) 78%, rgba(10,22,17,0.92) 100%),
    linear-gradient(90deg, rgba(10,22,17,0.55) 0%, rgba(10,22,17,0.08) 60%);
}
.hero__pattern { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; opacity: 0.5; }
.hero__pattern svg { width: 100%; height: 100%; }
.hero__inner { position: relative; }
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,239,227,0.72);
  margin: 0 0 28px;
}
.hero__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(44px, 7.2vw, 92px); line-height: 1.0; letter-spacing: -0.022em;
  color: #F4EFE3; margin: 0 0 28px; max-width: 16ch; text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--accent-italic-on-dark); }
.hero__dek {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(19px, 2.4vw, 26px); line-height: 1.5;
  color: rgba(244,239,227,0.86); max-width: 40ch; margin: 0 0 40px;
}
.hero__byline {
  display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: baseline;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: rgba(244,239,227,0.6);
}
.hero__byline b { color: rgba(244,239,227,0.9); font-weight: 500; }

/* ---------- Chapter structure ---------- */
.chapter { padding: clamp(64px, 11vh, 120px) 0; }
.chapter__head { margin-bottom: clamp(28px, 5vh, 48px); }
.chapter__num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 20px;
}
.chapter__num .tick { width: 28px; height: 1px; background: currentColor; opacity: 0.5; }
.chapter__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.06; letter-spacing: -0.02em;
  color: var(--fg-strong); margin: 0; text-wrap: balance;
}
.chapter__title em { font-style: italic; color: var(--accent-italic); }

.prose > * + * { margin-top: 1.35em; }
.prose p {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(18px, 2.1vw, 21px); line-height: 1.62; color: var(--bark-700);
  text-wrap: pretty;
}
[data-theme="dark"] .prose p { color: var(--fg-default); }
.prose p.lead {
  font-size: clamp(21px, 2.6vw, 27px); line-height: 1.5; color: var(--fg-strong);
  font-weight: 400;
}
.prose a {
  color: var(--accent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
  transition: border-color var(--dur-1) var(--ease-organic), color var(--dur-1) var(--ease-organic);
}
.prose a:hover { border-bottom-color: var(--accent); }
.prose strong { font-weight: 600; color: var(--fg-strong); }
.prose em { font-style: italic; }

/* first-chapter drop cap */
.dropcap::first-letter {
  font-family: var(--font-serif); font-weight: 500;
  float: left; font-size: 3.4em; line-height: 0.82;
  padding: 0.05em 0.12em 0 0; color: var(--forest-700);
}

/* short stanza lines (the "loop that senses / acts / proves / learns" cadence) */
.stanza { margin: 1.6em 0; }
.stanza p { margin: 0.15em 0; font-style: italic; color: var(--fg-strong); }

/* inline pull quote inside prose */
.pull {
  margin: clamp(40px,7vh,72px) 0;
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.22; letter-spacing: -0.015em;
  color: var(--fg-strong); text-wrap: balance;
  padding-left: clamp(18px, 3vw, 32px);
  border-left: 2px solid var(--accent);
}
.pull .accent { color: var(--accent-italic); }

/* ---------- Source list under sections ---------- */
.sources {
  margin-top: clamp(32px, 5vh, 48px);
  padding-top: 16px; border-top: 1px solid var(--border-hairline-color);
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted);
  display: flex; flex-wrap: wrap; gap: 6px 18px;
}
.sources .label { letter-spacing: 0.12em; text-transform: uppercase; }
.sources a { color: var(--fg-muted); border-bottom: 1px solid transparent; }
.sources a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-organic), transform 700ms var(--ease-organic); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Theory refs — the genealogy as connective tissue. Each chapter
   carries one diamond mark pointing at the node it draws on. ---- */
.theoryref { display: grid; grid-template-columns: auto 1fr; gap: 5px 10px; align-items: baseline; margin: clamp(28px, 4vh, 44px) 0 0; }
.theoryref .dia { width: 7px; height: 7px; background: var(--accent); border-radius: 1px; transform: rotate(45deg); align-self: center; }
.theoryref .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.theoryref .t { grid-column: 2; font-family: var(--font-sans); font-size: 13.5px; line-height: 1.55; color: var(--fg-muted); max-width: 62ch; text-wrap: pretty; }
.theoryref .go { grid-column: 2; justify-self: start; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--accent); background: transparent; border: 0; border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); padding: 0 0 1px; cursor: pointer; }
.theoryref .go:hover { border-bottom-color: var(--accent); }

/* ============================================================
   ISLAND FRAMES — interactive figures
   ============================================================ */
.figure {
  margin: clamp(36px, 6vh, 64px) 0;
  border: 1px solid var(--border-hairline-color);
  border-radius: var(--radius-3);
  background: var(--bg-elevated);
  overflow: hidden;
}
.figure__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; border-bottom: 1px solid var(--border-hairline-color);
}
.figure__head .id { display: flex; align-items: center; gap: 12px; }
.figure__head .sigil { width: 26px; height: 26px; flex: none; }
.figure__head .sigil svg { width: 100%; height: 100%; display: block; }
.figure__kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
.figure__title { font-family: var(--font-sans); font-weight: 600; font-size: 15px; color: var(--fg-strong); }
.figure__body { padding: clamp(20px, 4vw, 40px); }
.figure__cap {
  padding: 14px 20px; border-top: 1px solid var(--border-hairline-color);
  font-family: var(--font-sans); font-size: 13.5px; line-height: 1.5; color: var(--fg-muted);
}
.figure__cap b { color: var(--fg-default); font-weight: 600; }

/* ---------- Reconciler animation ---------- */
.recon { display: grid; gap: 24px; }
.recon__stage { position: relative; width: 100%; }
.recon__stage svg { width: 100%; height: auto; display: block; overflow: visible; }
.recon .node-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.02em; }
.recon__legend { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.04em; }
.recon__legend .k { display: inline-flex; align-items: center; gap: 7px; }
.recon__legend .dot { width: 9px; height: 9px; border-radius: 999px; flex: none; }
.recon__readout {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px;
}
.recon__readout .cell { border: 1px solid var(--border-hairline-color); border-radius: var(--radius-2); padding: 12px 14px; background: var(--bg-page); }
.recon__readout .cell .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }
.recon__readout .cell .v { font-family: var(--font-mono); font-size: 20px; color: var(--fg-strong); margin-top: 4px; font-variant-numeric: tabular-nums; }
.recon__readout .cell .v.hot { color: var(--rust-500); }
.recon__readout .cell .v.ok { color: var(--accent); }

/* ---------- Prologue glossary → superseded by the Lexicon overlay (.lex*) ---------- */

/* ---------- Chapter side-rail TOC ---------- */
.railtoc {
  position: fixed; top: 50%; left: 20px; transform: translateY(-50%);
  z-index: 70; display: none; flex-direction: column; gap: 12px;
}
@media (min-width: 1180px) { .railtoc { display: flex; } }
.railtoc a {
  display: flex; align-items: center; gap: 10px; border: 0; text-decoration: none;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em;
  color: var(--fg-muted); opacity: 0.6; transition: opacity var(--dur-1) var(--ease-organic), color var(--dur-1) var(--ease-organic);
}
.railtoc a .dot { width: 7px; height: 7px; border-radius: 999px; border: 1px solid var(--fg-muted); flex: none; transition: all var(--dur-1) var(--ease-organic); }
.railtoc a .lbl { opacity: 0; transform: translateX(-4px); transition: opacity var(--dur-1) var(--ease-organic), transform var(--dur-1) var(--ease-organic); white-space: nowrap; }
.railtoc:hover a .lbl { opacity: 1; transform: none; }
.railtoc a:hover { opacity: 1; color: var(--fg-strong); }
.railtoc a.is-active { opacity: 1; color: var(--accent); }
.railtoc a.is-active .dot { background: var(--accent); border-color: var(--accent); transform: scale(1.15); }

/* ---------- Contents overlay (mobile + click) ---------- */
.toc-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: color-mix(in srgb, var(--bg-page) 82%, transparent); backdrop-filter: blur(14px);
}
.toc-overlay.is-open { display: block; }
.toc-overlay__inner { max-width: 720px; margin: 0 auto; padding: clamp(64px,12vh,120px) 24px; height: 100%; overflow-y: auto; }
.toc-overlay__close { position: absolute; top: 20px; right: 24px; background: transparent; border: 1px solid var(--border-hairline-color); border-radius: 999px; width: 40px; height: 40px; cursor: pointer; color: var(--fg-strong); font-size: 18px; }
.toc-overlay h3 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; margin: 0 0 24px; }
.toc-list { display: grid; gap: 2px; }
.toc-list a {
  display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: baseline;
  padding: 14px 8px; border: 0; border-top: 1px solid var(--border-hairline-color); text-decoration: none;
  color: var(--fg-strong);
}
.toc-list a:last-child { border-bottom: 1px solid var(--border-hairline-color); }
.toc-list a .n { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }
.toc-list a .t { font-family: var(--font-serif); font-size: 19px; line-height: 1.25; }
.toc-list a .t small { display:block; font-family: var(--font-sans); font-size: 12.5px; color: var(--fg-muted); margin-top: 3px; }
.toc-list a:hover .t { color: var(--accent); }

/* ---------- Footer / sign-off ---------- */
.signoff { background: var(--forest-900); color: #F4EFE3; position: relative; overflow: hidden; padding: clamp(72px,12vh,140px) 0 48px; }
[data-theme="dark"] .signoff { background: #0A1310; }
.signoff__inner { position: relative; }
.signoff__name { font-family: var(--font-serif); font-size: 22px; color: #F4EFE3; margin: 0; }
.signoff__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(244,239,227,0.6); margin: 6px 0 0; }
.signoff__base {
  margin-top: clamp(48px,8vh,88px); padding-top: 24px; border-top: 1px solid rgba(244,239,227,0.18);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; color: rgba(244,239,227,0.55);
}
.signoff__base img { height: 20px; opacity: 0.9; }

/* ---------- Responsive prose tightening ---------- */
@media (max-width: 640px) {
  .figure__head { flex-wrap: wrap; }
}

/* ============================================================
   EXPANSION — v2 components
   ============================================================ */

/* ---------- Prologue two-column with Peter Pan aside ---------- */
.prologue-grid { display: grid; gap: clamp(24px, 4vw, 48px); }
@media (min-width: 900px) {
  .prologue-grid { grid-template-columns: minmax(0,1fr) 300px; align-items: start; }
  .prologue-grid .prologue__aside { position: sticky; top: 92px; }
}
.prologue__aside { margin: 0; }
.prologue__aside figure { margin: 0; }
.prologue__aside img { width: 100%; border-radius: var(--radius-3); border: 1px solid var(--border-hairline-color); display: block; }
.prologue__aside figcaption {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--fg-muted); margin-top: 12px; line-height: 1.5; text-wrap: pretty;
}
.prologue__aside figcaption b { color: var(--fg-default); font-weight: 500; }

/* ---------- Inline tooltip terms ---------- */
.term {
  position: relative; color: var(--fg-strong); font-style: inherit;
  border-bottom: 1.5px dotted var(--accent); cursor: help; white-space: nowrap;
}
.term:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.term > .tip {
  position: absolute; left: 50%; bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  width: max-content; max-width: min(300px, 78vw);
  background: var(--bg-inverse); color: var(--fg-on-inverse);
  padding: 13px 15px; border-radius: var(--radius-2);
  font-family: var(--font-sans); font-size: 13px; font-style: normal;
  font-weight: 400; line-height: 1.5; letter-spacing: 0; white-space: normal;
  text-align: left; box-shadow: var(--shadow-float);
  opacity: 0; visibility: hidden; z-index: 70; pointer-events: none;
  transition: opacity var(--dur-1) var(--ease-organic), transform var(--dur-1) var(--ease-organic);
}
.term > .tip::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: var(--bg-inverse);
}
.term > .tip b {
  display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-italic-on-dark); margin-bottom: 5px;
}
.term:hover > .tip, .term:focus > .tip, .term:focus-within > .tip {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}

/* ---------- Two-column chapter with aside (Word sidebar) ---------- */
.ch-split { display: grid; gap: clamp(28px, 4vw, 44px); }
@media (min-width: 980px) {
  .ch-split { grid-template-columns: minmax(0,1fr) 330px; align-items: start; }
  .ch-split__aside { position: sticky; top: 88px; }
}
.wordrail { border: 1px solid var(--border-hairline-color); border-radius: var(--radius-3); background: var(--bg-elevated); overflow: hidden; }
.wordrail__head { padding: 16px 18px 14px; border-bottom: 1px solid var(--border-hairline-color); }
.wordrail__eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 0 0 7px; }
.wordrail__title { font-family: var(--font-serif); font-weight: 500; font-size: 20px; line-height: 1.15; color: var(--fg-strong); margin: 0 0 4px; }
.wordrail__sub { font-family: var(--font-sans); font-size: 12.5px; line-height: 1.5; color: var(--fg-muted); margin: 8px 0 0; }
.wordrail__flow { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--border-hairline-color); font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); }
.wordrail__flow .on { color: var(--accent); }
.wordstep { border-bottom: 1px solid var(--border-hairline-color); }
.wordstep:last-child { border-bottom: 0; }
.wordstep__btn { width: 100%; text-align: left; background: transparent; border: 0; padding: 13px 18px; cursor: pointer; display: flex; align-items: baseline; gap: 11px; font: inherit; transition: background var(--dur-1) var(--ease-organic); }
.wordstep__btn:hover { background: color-mix(in srgb, var(--accent) 6%, transparent); }
.wordstep__n { font-family: var(--font-mono); font-size: 11px; color: var(--accent); flex: none; }
.wordstep__name { font-family: var(--font-serif); font-size: 17px; color: var(--fg-strong); }
.wordstep__name small { display: block; font-family: var(--font-sans); font-size: 11.5px; color: var(--fg-muted); margin-top: 2px; }
.wordstep__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-3) var(--ease-organic); }
.wordstep.is-open .wordstep__body { grid-template-rows: 1fr; }
.wordstep__inner { overflow: hidden; }
.wordstep__inner > div { padding: 0 18px 16px 41px; }
.wordstep p { font-family: var(--font-sans); font-size: 13px; line-height: 1.55; color: var(--fg-default); margin: 0 0 10px; }
.wordstep .nums { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.wordstep .nums span { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); }
.wordstep .nums b { color: var(--accent); font-weight: 500; }

/* ---------- Deconstruction figure ---------- */
.destack__stage { display: grid; }
.destack__bundled, .destack__split { grid-area: 1 / 1; transition: opacity var(--dur-3) var(--ease-organic); }
.destack__split { opacity: 0; visibility: hidden; pointer-events: none; }
.destack.is-split .destack__bundled { opacity: 0; visibility: hidden; pointer-events: none; }
.destack.is-split .destack__split { opacity: 1; visibility: visible; pointer-events: auto; }
.mono-block { border: 1px solid var(--forest-700); border-radius: var(--radius-3); overflow: hidden; max-width: 460px; margin: 0 auto; }
.mono-block__cap { text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); padding: 12px; border-bottom: 1px solid var(--border-hairline-color); background: color-mix(in srgb, var(--forest-700) 6%, transparent); }
.mono-brick { padding: 20px 22px; border-bottom: 1px solid var(--border-hairline-color); text-align: center; }
.mono-brick:last-child { border-bottom: 0; }
.mono-brick .k { font-family: var(--font-serif); font-size: 20px; color: var(--fg-strong); }
.mono-brick .d { font-family: var(--font-sans); font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.destack__layers { display: flex; flex-direction: column; gap: 12px; }
.dlayer { border: 1px solid var(--border-hairline-color); border-radius: var(--radius-3); background: var(--bg-elevated); padding: 18px 20px; display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; opacity: 0; transform: translateY(14px); transition: opacity var(--dur-3) var(--ease-organic), transform var(--dur-3) var(--ease-organic); }
.destack.is-split .dlayer { opacity: 1; transform: none; }
.destack.is-split .dlayer:nth-child(1) { transition-delay: 0.05s; }
.destack.is-split .dlayer:nth-child(2) { transition-delay: 0.15s; }
.destack.is-split .dlayer:nth-child(3) { transition-delay: 0.25s; }
.dlayer--accent { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 5%, var(--bg-elevated)); }
.dlayer__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.dlayer__k .who { display: block; font-family: var(--font-serif); font-size: 21px; letter-spacing: -0.01em; text-transform: none; color: var(--fg-strong); margin-top: 5px; }
.dlayer__d { font-family: var(--font-sans); font-size: 14px; line-height: 1.5; color: var(--fg-default); margin: 0; }
.dbase { margin-top: 12px; border: 1px dashed var(--border-hairline-color); border-radius: var(--radius-2); padding: 12px 18px; display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-muted); opacity: 0; transition: opacity var(--dur-3) var(--ease-organic) 0.35s; }
.destack.is-split .dbase { opacity: 1; }
.dbase .lbl { letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-default); }
/* ---------- Evident card ---------- */
.ev { --ev-gold: #B8934E; border: 1px solid var(--border-hairline-color); border-radius: var(--radius-3); background: var(--bg-elevated); overflow: hidden; }
.ev__top { height: 3px; background: var(--ev-gold); }
.ev__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--border-hairline-color); }
.ev__brand { display: flex; align-items: center; gap: 11px; }
.ev__brand img { width: 24px; height: 24px; }
.ev__brand .wm { font-family: var(--font-mono); font-size: 16px; letter-spacing: 0.02em; color: var(--fg-strong); }
.ev__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); text-align: right; }
.ev__body { padding: clamp(20px,3vw,30px) clamp(20px,3vw,30px) 0; }
.ev__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(22px,3vw,30px); line-height: 1.12; color: var(--fg-strong); margin: 0 0 12px; letter-spacing: -0.015em; }
.ev__lede { font-family: var(--font-sans); font-size: 15px; line-height: 1.6; color: var(--fg-default); margin: 0 0 22px; }
.ev__loop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 0 0 22px; }
.ev__step { border: 1px solid var(--border-hairline-color); border-radius: var(--radius-2); padding: 12px 12px; background: var(--bg-page); position: relative; }
.ev__step:not(:last-child)::after { content: "\2192"; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); color: var(--fg-muted); z-index: 2; }
.ev__step .k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.ev__step .t { font-family: var(--font-serif); font-size: 15px; color: var(--fg-strong); margin-top: 5px; }
.ev__step--proof { border-color: var(--ev-gold); background: color-mix(in srgb, var(--ev-gold) 8%, var(--bg-page)); }
.ev__toggle { width: 100%; margin: 22px 0 0; padding: 14px; border: 0; border-top: 1px solid var(--border-hairline-color); background: transparent; cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent); display: flex; align-items: center; justify-content: center; gap: 9px; }
.ev__toggle .chev { transition: transform var(--dur-2) var(--ease-organic); }
.ev.is-open .ev__toggle .chev { transform: rotate(90deg); }
.ev__deep { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-3) var(--ease-organic); }
.ev.is-open .ev__deep { grid-template-rows: 1fr; }
.ev__deepinner { overflow: hidden; }
.ev__deepgrid { padding: 4px clamp(20px,3vw,30px) clamp(20px,3vw,30px); display: grid; gap: 22px; }
.ev__block h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 12px; font-weight: 500; }
.ev__stack { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ev__stackcell { border: 1px solid var(--border-hairline-color); border-radius: var(--radius-2); padding: 13px 14px; background: var(--bg-page); }
.ev__stackcell .who { font-family: var(--font-mono); font-size: 13px; color: var(--fg-strong); }
.ev__stackcell .role { font-family: var(--font-sans); font-size: 12px; color: var(--fg-muted); margin-top: 5px; line-height: 1.45; }
.ev__flip { display: grid; gap: 10px; }
.ev__flrow { display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: center; }
.ev__flrow .yr { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); }
.ev__bar { display: flex; height: 26px; border-radius: 5px; overflow: hidden; border: 1px solid var(--border-hairline-color); }
.ev__seg { display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 10px; color: #fff; white-space: nowrap; }
.ev__seg--ev { background: var(--ev-gold); color: #2a2113; }
.ev__seg--bw { background: var(--forest-500); }
.ev__seg--ac { background: var(--mist-400); color: #2a2a26; }
.ev__nums { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 12px; }
.ev__num .v { font-family: var(--font-serif); font-size: 24px; color: var(--fg-strong); font-variant-numeric: tabular-nums; }
.ev__num .v em { font-style: normal; color: var(--ev-gold); }
.ev__num .k { font-family: var(--font-sans); font-size: 12px; color: var(--fg-muted); margin-top: 4px; line-height: 1.4; }
.ev__moat { display: flex; flex-wrap: wrap; gap: 8px; }
.ev__moat span { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-default); border: 1px solid var(--border-hairline-color); border-radius: 999px; padding: 6px 13px; }
@media (max-width: 680px) {
  .ev__loop { grid-template-columns: 1fr 1fr; gap: 20px 8px; }
  .ev__step:not(:last-child)::after { display: none; }
  .ev__stack { grid-template-columns: 1fr; }
  .ev__seg { font-size: 9px; padding: 0 4px; overflow: hidden; white-space: nowrap; }
}
@media (max-width: 560px) {
  .ev__head { flex-wrap: wrap; }
  .ev__tag { text-align: left; }
  .dlayer { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 480px) {
  .nav { padding-left: 14px; padding-right: 14px; }
  .nav__brand img { height: 19px; }
  .nav__right { gap: 7px; }
  .nav__contents { padding: 6px 9px; font-size: 10px; letter-spacing: 0.05em; }
}

/* ---------- Second Nature interlude ---------- */
.sn__twin { display: grid; gap: 14px; margin: clamp(28px,4vw,44px) 0; }
@media (min-width: 720px) { .sn__twin { grid-template-columns: 1fr 1fr; } }
.sn__panel { border: 1px solid var(--border-hairline-color); border-radius: var(--radius-3); overflow: hidden; background: var(--bg-elevated); }
.sn__panel .art { height: 220px; position: relative; overflow: hidden; background: var(--forest-900); }
.sn__panel .art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) contrast(1.05) brightness(0.9); }
.sn__panel .art .grow { position: absolute; inset: 0; color: var(--accent-italic-on-dark); }
.sn__panel .cap { padding: 14px 18px; }
.sn__panel .cap .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.sn__panel .cap .t { font-family: var(--font-sans); font-size: 13.5px; line-height: 1.5; color: var(--fg-default); margin-top: 6px; }

/* ---------- Closing coda ---------- */
.signoff__coda { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(22px,3.4vw,38px); line-height: 1.28; letter-spacing: -0.01em; color: #F4EFE3; text-align: center; max-width: 24ch; margin: clamp(40px,6vh,68px) auto clamp(30px,5vh,52px); text-wrap: balance; }

/* ============================================================
   MANIFESTO REGISTER — v3
   A second voice layered onto the calm editorial system, for the
   sharp declarative lines and the cultural touchstones the manifesto
   cites (Peter Pan, Fight Club). Stark, evidentiary, unsoftened.
   Cultural stills render black-and-white — the system's own rule for
   non-nature imagery — so a cartoon, a film still, and a forest all
   belong to one argument. This is a manifesto, not a marketing page.
   ============================================================ */

/* ---- Cultural exhibit: a cited still, treated as evidence ---- */
.exhibit { margin: 0; }
.exhibit__frame { position: relative; overflow: hidden; border-radius: var(--radius-3); border: 1px solid var(--forest-900); background: #0D1512; }
.exhibit__frame img { width: 100%; display: block; filter: grayscale(1) contrast(1.14) brightness(0.9); transition: filter var(--dur-3) var(--ease-organic); }
.exhibit__frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 90px rgba(8,15,12,0.55); }
.exhibit:hover .exhibit__frame img { filter: grayscale(1) contrast(1.05) brightness(1.02); }
.exhibit__cite { display: flex; gap: 6px 13px; flex-wrap: wrap; align-items: baseline; margin-top: 13px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--fg-muted); }
.exhibit__cite .no { text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); }
.exhibit__cite .src { color: var(--fg-strong); }
.exhibit__gloss { font-family: var(--font-serif); font-style: italic; font-size: 15.5px; line-height: 1.46; color: var(--fg-default); margin: 10px 0 0; text-wrap: pretty; }
.exhibit__cite .note { color: var(--fg-default); font-style: normal; }
/* Illustration exhibit: a vintage colour plate kept in colour, sitting on the
   paper ground \u2014 the belief/dream bookend against the B&W film-still close. */
.exhibit--illus .exhibit__frame { background: #EFE7D5; border-color: color-mix(in srgb, var(--forest-900) 20%, transparent); }
.exhibit--illus .exhibit__frame img { filter: saturate(0.98) contrast(1.02); }
.exhibit--illus:hover .exhibit__frame img { filter: saturate(1.05) contrast(1.03); }
.exhibit--illus .exhibit__frame::after { box-shadow: inset 0 0 60px rgba(20,39,29,0.08); }

/* ---- Creed: a full-bleed manifesto declaration, unsoftened ---- */
.creed { position: relative; width: 100%; background: var(--forest-900); color: #F4EFE3; overflow: hidden; padding: clamp(60px, 12vh, 140px) 0; }
[data-theme="dark"] .creed { background: #0A1310; }
.creed__pattern { position: absolute; inset: 0; opacity: 0.10; pointer-events: none; color: #C8D4C5; }
.creed__pattern svg { width: 100%; height: 100%; }
.creed__inner { position: relative; z-index: 2; }
.creed__kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-italic-on-dark); margin: 0 0 22px; display: flex; align-items: center; gap: 12px; }
.creed__kicker .tick { width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.creed__line { font-family: var(--font-serif); font-weight: 500; font-size: clamp(40px, 8vw, 104px); line-height: 0.98; letter-spacing: -0.028em; color: #F4EFE3; margin: 0; text-wrap: balance; }
.creed__line em { font-style: italic; color: var(--accent-italic-on-dark); }
.creed__sub { font-family: var(--font-serif); font-size: clamp(19px, 2.4vw, 27px); line-height: 1.4; color: rgba(244,239,227,0.82); margin: 24px 0 0; max-width: 42ch; text-wrap: pretty; }
.creed__sub em { font-style: italic; color: var(--accent-italic-on-dark); }
.creed__note { font-family: var(--font-sans); font-size: 15px; line-height: 1.6; color: rgba(244,239,227,0.85); max-width: 58ch; margin: 32px 0 0; padding-top: 20px; border-top: 1px solid rgba(244,239,227,0.16); text-wrap: pretty; }
/* creed with a cited battle map behind it — the board you refuse to play */
.creed--trafalgar { background: #0F1714; }
.creed__photo { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.creed__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: grayscale(1) contrast(1.08) brightness(0.62); }
.creed__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  linear-gradient(90deg, rgba(12,20,16,0.92) 0%, rgba(12,20,16,0.6) 44%, rgba(12,20,16,0.24) 100%),
  linear-gradient(180deg, rgba(12,20,16,0.34) 0%, rgba(12,20,16,0.52) 100%); }
.creed__cite { margin: 30px 0 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(244,239,227,0.66); }
.creed__cite .no { text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-italic-on-dark); margin-right: 9px; }
/* field-notes rail, embedded full-width in Ch4 */
.wordrail-embed { margin-top: clamp(32px, 5vh, 52px); }

/* ---- Interlude chrome: the four interactive sections, as one set ---- */
.chapter__num--int { color: var(--accent); }
.chapter__num--int .rn { font-family: var(--font-mono); border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent); border-radius: 999px; padding: 3px 11px 2px; letter-spacing: 0.14em; line-height: 1; }
.chapter__num--int .tick { display: none; }

/* ---- Rail: interlude markers read as diamonds, not dots ---- */
.railtoc a.is-int .dot { border-radius: 1px; width: 6px; height: 6px; transform: rotate(45deg); }
.railtoc a.is-int.is-active .dot { transform: rotate(45deg) scale(1.18); }

/* ---- Lexicon: persistent vocabulary recall (light overlay) ---- */
.lexicon-overlay { position: fixed; inset: 0; z-index: 100; display: none; background: color-mix(in srgb, var(--bg-page) 82%, transparent); backdrop-filter: blur(14px); }
.lexicon-overlay.is-open { display: block; }
.lexicon-overlay__inner { max-width: 780px; margin: 0 auto; padding: clamp(64px,12vh,120px) 24px; height: 100%; overflow-y: auto; }
.lexicon-overlay__close { position: absolute; top: 20px; right: 24px; background: transparent; border: 1px solid var(--border-hairline-color); border-radius: 999px; width: 40px; height: 40px; cursor: pointer; color: var(--fg-strong); font-size: 18px; }
.lexicon-overlay__close:hover { border-color: var(--accent); color: var(--accent); }
.lexicon-overlay h3 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; margin: 0 0 8px; }
.lexicon-overlay .lex-sub { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.4; color: var(--fg-default); margin: 0 0 26px; max-width: 54ch; }
.lexicon-list { display: grid; gap: 0; }
.lex { display: grid; grid-template-columns: 210px 1fr; gap: 20px; padding: 17px 0; border-top: 1px solid var(--border-hairline-color); }
.lex:last-child { border-bottom: 1px solid var(--border-hairline-color); }
.lex__term { font-family: var(--font-serif); font-size: 21px; line-height: 1.1; color: var(--fg-strong); letter-spacing: -0.01em; }
.lex__term .kind { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 5px; }
.lex__body { font-family: var(--font-sans); font-size: 15px; line-height: 1.56; color: var(--fg-default); }
.lex__go { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--accent); text-decoration: none; white-space: nowrap; }
.lex__go:hover { text-decoration: underline; }
@media (max-width: 620px) { .lex { grid-template-columns: 1fr; gap: 5px; } }

/* ---- Closing: raw manifesto sign-off (no marketing decoration) ---- */
.signoff__exhibit { position: relative; width: 100%; margin: 0 0 clamp(40px,7vh,80px); overflow: hidden; }
.signoff__exhibit img { width: 100%; max-height: 64vh; object-fit: cover; object-position: center 42%; display: block; filter: grayscale(1) contrast(1.18) brightness(0.84); }
.signoff__exhibit::after { content:""; position:absolute; inset:0; pointer-events:none; background: linear-gradient(180deg, rgba(15,23,20,0.55) 0%, rgba(15,23,20,0) 26%, rgba(15,23,20,0) 60%, var(--forest-900) 100%); }
[data-theme="dark"] .signoff__exhibit::after { background: linear-gradient(180deg, rgba(10,19,16,0.55) 0%, rgba(10,19,16,0) 26%, rgba(10,19,16,0) 60%, #0A1310 100%); }
.signoff__exhibit-cite { position: absolute; left: 0; right: 0; bottom: 20px; padding: 0 clamp(16px,4vw,40px); display: flex; gap: 6px 14px; flex-wrap: wrap; align-items: baseline; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: rgba(244,239,227,0.72); }
.signoff__exhibit-cite .no { text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-italic-on-dark); }
.signoff__exhibit-cite .note { color: rgba(244,239,227,0.9); font-style: normal; }
.signoff__sign { margin-top: 30px; }

/* ============================================================
   FIGURE · The other side of the bet — closing sizing band.
   Two colors carry meaning: ember = the crowded stock, green = the
   renewing flow. Everything else is ink and ash. The left column
   holds still; the right column is alive.
   ============================================================ */
.sizing {
  position: relative; width: 100%; overflow: hidden;
  background: var(--forest-900); color: #F4EFE3;
  padding: clamp(56px, 10vh, 120px) 0;
  --sz-ink: #F4EFE3;
  --sz-ash: rgba(244,239,227,0.64);
  --sz-hair: rgba(244,239,227,0.15);
  --sz-moss: var(--accent-italic-on-dark);
  --sz-moss-deep: color-mix(in srgb, var(--accent-italic-on-dark) 16%, transparent);
  --sz-ember: color-mix(in srgb, var(--rust-500) 62%, #F4EFE3);
}
[data-theme="dark"] .sizing { background: #0A1310; }
.sizing__pattern { position: absolute; inset: 0; opacity: 0.06; pointer-events: none; color: #C8D4C5; }
.sizing__pattern svg { width: 100%; height: 100%; }
.sizing__inner { position: relative; z-index: 1; }
.sizing__kicker { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sz-ash); margin: 0 0 20px; display: flex; align-items: center; gap: 12px; }
.sizing__kicker .tick { width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.sizing__headline { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.04; letter-spacing: -0.022em; color: var(--sz-ink); margin: 0 0 16px; text-wrap: balance; }
.sizing__headline em { font-style: italic; color: var(--sz-moss); }
.sizing__stand { font-family: var(--font-serif); font-size: clamp(17px, 2vw, 21px); line-height: 1.45; color: rgba(244,239,227,0.8); margin: 0; max-width: 52ch; text-wrap: pretty; }
.sizing__grid { display: grid; gap: clamp(32px, 5vw, 64px); margin-top: clamp(32px, 5vh, 52px); }
@media (min-width: 760px) { .sizing__grid { grid-template-columns: 1fr 1fr; } }
.sizing__collabel { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--sz-hair); }
.sizing__col--bet .sizing__collabel { color: var(--sz-ember); }
.sizing__col--flow .sizing__collabel { color: var(--sz-moss); }
.sizing__hero .n { font-family: var(--font-serif); font-weight: 500; font-size: clamp(46px, 6.4vw, 76px); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; white-space: nowrap; display: block; }
.sizing__col--bet .sizing__hero .n { color: var(--sz-ember); }
.sizing__col--flow .sizing__hero .n { color: var(--sz-moss); }
.sizing__hero .d { font-family: var(--font-sans); font-size: 14px; line-height: 1.55; color: var(--sz-ash); margin: 12px 0 0; max-width: 38ch; text-wrap: pretty; }
.sizing__rows { margin-top: 22px; }
.sizing__row { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--sz-hair); align-items: baseline; }
.sizing__row .v { font-family: var(--font-mono); font-size: 15px; color: var(--sz-ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.sizing__row .d { font-family: var(--font-sans); font-size: 13px; line-height: 1.5; color: var(--sz-ash); }
.sizing__sublabel { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sz-ash); margin: 24px 0 12px; }
.sizing__bar { margin-bottom: 13px; }
.sizing__bar .t { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--sz-ash); margin-bottom: 6px; }
.sizing__bar .t b { color: var(--sz-moss); font-weight: 500; white-space: nowrap; }
.sizing__bar .track { display: block; height: 9px; border-radius: 999px; background: var(--sz-moss-deep); overflow: hidden; }
.sizing__bar .fill { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--sz-moss); transition: width 1100ms var(--ease-organic); }
.sizing.is-live .sizing__bar:nth-child(2) .fill { transition-delay: 0.15s; }
.sizing.is-live .sizing__bar:nth-child(3) .fill { transition-delay: 0.3s; }
.sizing.is-live .sizing__bar .fill { width: var(--w); animation: szBreath 7s var(--ease-organic) 2.2s infinite; }
@keyframes szBreath { 0%, 100% { opacity: 1; } 50% { opacity: 0.74; } }
.sizing__rails { position: relative; margin-top: clamp(36px, 6vh, 56px); border-top: 1px solid var(--sz-hair); border-bottom: 1px solid var(--sz-hair); padding: 13px 16px 15px; text-align: center; }
.sizing__rails .lbl { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sz-ink); }
.sizing__rails .d { font-family: var(--font-sans); font-size: 13.5px; line-height: 1.5; color: var(--sz-ash); margin: 6px auto 0; max-width: 58ch; }
.sizing__rails .pulse { position: absolute; top: -3.5px; left: 0; width: 7px; height: 7px; border-radius: 999px; background: var(--sz-moss); opacity: 0; }
.sizing.is-live .sizing__rails .pulse { animation: szPulse 4.5s linear infinite; }
@keyframes szPulse { 0% { left: 0; opacity: 0; } 8% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 7px); opacity: 0; } }
.sizing__legend { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; }
.sizing__legend span { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11px; color: var(--sz-ash); }
.sizing__legend .sw { width: 9px; height: 9px; border-radius: 2px; flex: none; }
.sizing__legend .sw--ember { background: var(--sz-ember); }
.sizing__legend .sw--moss { background: var(--sz-moss); }
.sizing__caption { font-family: var(--font-sans); font-size: 13.5px; line-height: 1.6; color: var(--sz-ash); margin: 26px 0 0; max-width: 76ch; text-wrap: pretty; }
.sizing__sources { font-family: var(--font-mono); font-size: 10.5px; line-height: 1.6; letter-spacing: 0.02em; color: var(--sz-ash); margin: 16px 0 0; max-width: 86ch; }
@media (prefers-reduced-motion: reduce) {
  .sizing__bar .fill { transition: none; animation: none !important; }
  .sizing.is-live .sizing__bar .fill { animation: none !important; }
  .sizing__rails .pulse { animation: none !important; left: calc(100% - 7px); opacity: 1; }
}
