/* ==========================================================================
   runsheet.css
   WORKFLOW AI SOLUTIONS LTD (WFAI), wfaisolutions.co.uk
   Naming universe: a workflow run. Sections are runs, steps are steps,
   controls are triggers, the page ends at the runout.
   One stylesheet, hand written, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   Contrast figures below are calculated from relative luminance,
   not estimated. --ink L=0.0037, --panel L=0.0090.
   -------------------------------------------------------------------------- */

:root {
  --ink:      #0B0C0E;  /* page surface */
  --panel:    #16181B;  /* raised block, 1.10:1 on ink, defined by rule not fill */
  --text:     #F2F0EB;  /* 17.18:1 on ink, 15.62:1 on panel */
  --muted:    #9A9C9F;  /* 7.11:1 on ink, 6.46:1 on panel */
  --rule:     #2A2D31;  /* 1.41:1, decorative hairline only, never a control edge */
  --edge-up:  #646A73;  /* 3.59:1 on ink, 3.26:1 on panel, 3.16:1 on the ghost
                           hover fill. Every control border, control-adjacent
                           border and focus ring uses this token, so 1.4.11
                           passes on every surface the control can sit on. */
  --signal:   #FF6B35;  /* 6.90:1 on ink, 6.27:1 on panel */
  --signal-on:#0B0C0E;  /* 6.90:1 when set on a signal fill */

  --radius: 0;

  --u1: 8px;  --u2: 16px; --u3: 24px; --u4: 40px;
  --u5: 64px; --u6: 104px; --u7: 160px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: "Martian Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --t-display: clamp(44px, 6.4vw, 76px);
  --t-h2: clamp(30px, 4vw, 44px);
  --t-h3: 25px;
  --t-digest: 21px;
  --t-body: 17px;
  --t-data: 13px;
  --t-label: 11px;

  --bar: 64px;
  --field: 1200px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar) + 24px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  padding-top: var(--bar);
  background: var(--ink);
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--t-body);
  line-height: 1.65;
  font-optical-sizing: auto;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

/* --------------------------------------------------------------------------
   2. TYPE PRIMITIVES
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
}

h1 { font-size: var(--t-display); line-height: 0.96; letter-spacing: -0.025em; }
h2 { font-size: var(--t-h2); line-height: 1.06; letter-spacing: -0.02em; }
h3 { font-size: var(--t-h3); line-height: 1.2; letter-spacing: -0.01em; font-weight: 500; }
h4 { font-size: 19px; line-height: 1.3; font-weight: 500; }

p { margin: 0 0 var(--u2); max-width: 68ch; }
p:last-child { margin-bottom: 0; }

/* No token may push the page wider than the viewport. */
p, li, td, th, h1, h2, h3, h4, caption, label { overflow-wrap: break-word; }

.token {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--u3);
  max-width: none;
}

.token--signal { color: var(--signal); }

.data {
  font-family: var(--mono);
  font-size: var(--t-data);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.digest {
  font-size: var(--t-digest);
  line-height: 1.5;
  color: var(--muted);
  max-width: 46ch;
}

/* --------------------------------------------------------------------------
   3. LINKS, TRIGGERS, FOCUS
   -------------------------------------------------------------------------- */

a { color: var(--signal); }

.hook {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}

.hook:hover { text-decoration-color: var(--signal); }

@media (prefers-reduced-motion: no-preference) {
  /* Motion 5a: affordance feedback under 150ms is usability, not decoration. */
  .hook { transition: text-decoration-color 140ms linear; }
}

.trigger {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  padding: 17px 22px;
  border: 1px solid var(--edge-up);
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--text);
}

.trigger--primary {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--signal-on);
}

.trigger--primary:hover { background: #FF7A49; border-color: #FF7A49; }
.trigger--ghost:hover { background: #191B1F; }

@media (prefers-reduced-motion: no-preference) {
  /* Motion 5b: 6% background shift over 120ms. */
  .trigger { transition: background-color 120ms linear, border-color 120ms linear; }
}

/* Motion 6: focus is never animated. Delay reads as absence. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--edge-up);
  outline-offset: 3px;
  border-radius: var(--radius);
  transition: none;
}

.jumpwire {
  position: absolute;
  left: var(--u3);
  top: -80px;
  z-index: 60;
  background: var(--signal);
  color: var(--signal-on);
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: var(--radius);
}

.jumpwire:focus { top: 12px; }

/* --------------------------------------------------------------------------
   4. FIELD, RUNS, RULE WIPE
   -------------------------------------------------------------------------- */

.runfield {
  width: 100%;
  max-width: var(--field);
  margin: 0 auto;
  padding: 0 var(--u3);
}

.runfield--tight { max-width: 900px; }

.run {
  position: relative;
  padding: var(--u6) 0;
}

/* Motion 4: the section hairline is drawn from the left, not printed. */
.run::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rule);
  transform: scaleX(1);
  transform-origin: left center;
}

.run--open::before { display: none; }

.run__head { margin-bottom: var(--u5); }
.run__title { margin-bottom: var(--u3); }
.run__note { color: var(--muted); }

.run__index {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 var(--u2);
}

@media (min-width: 861px) {
  .run { padding: var(--u7) 0; }
}

/* Motion 3: reveal confirms scroll position on a long ruled page. */
.lift { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  .js .lift {
    opacity: 0;
    transform: translateY(18px);
  }
  .js .lift--in {
    opacity: 1;
    transform: none;
    transition: opacity 480ms var(--ease), transform 480ms var(--ease);
  }
  .js .run::before { transform: scaleX(0); }
  .js .run.lift--in::before { transform: scaleX(1); transition: transform 700ms var(--ease); }
}

@media (prefers-reduced-motion: reduce) {
  .js .lift { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   5. CROSSBAR (masthead)
   -------------------------------------------------------------------------- */

.crossbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--bar);
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}

.crossbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--u3);
}

.crossbar__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}

.crossbar__glyph { display: block; flex: none; }

.crossbar__nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--u3);
  margin: 0; padding: 0;
}

.crossbar__link {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.crossbar__link:hover { color: var(--text); }
.crossbar__link[aria-current="page"] { color: var(--text); }

@media (max-width: 620px) {
  .crossbar__link--drop { display: none; }
  .crossbar__nav ul { gap: var(--u2); }
}

/* --------------------------------------------------------------------------
   6. INTAKE (hero, asymmetric 8/4)
   -------------------------------------------------------------------------- */

.intake { padding: var(--u5) 0 var(--u6); }

.intake__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--u5);
}

.intake__token {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--u4);
  max-width: none;
}

.intake__token span { color: var(--signal); }

.intake__title { margin-bottom: var(--u3); }
.intake__digest { margin-bottom: var(--u4); }

.intake__triggers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--u2);
  margin-bottom: var(--u4);
}

.intake__foot {
  font-family: var(--mono);
  font-size: var(--t-data);
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: var(--u2);
  max-width: 60ch;
}

/* Motion 1: hero rise, staggered so the reading order is sequenced. */
@media (prefers-reduced-motion: no-preference) {
  .js .rise { opacity: 0; transform: translateY(14px); }
  .js .rise--go { opacity: 1; transform: none; transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
}

@media (prefers-reduced-motion: reduce) {
  .js .rise { opacity: 1; transform: none; }
}

/* Motion 2: the connectors draw, because the subject is sequence. */
.diagram { width: 100%; height: auto; display: block; }
.diagram__label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: var(--muted);
}
.diagram__num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  fill: var(--signal);
}
/* edge-up, not edge: the box stroke has to clear 3:1 against its own panel
   fill (3.26:1) as well as against the page (3.59:1). --edge only managed
   2.89:1 on the fill, which failed 1.4.11 on the inner boundary. */
.diagram__wire { stroke: var(--edge-up); stroke-width: 1; fill: none; }
.diagram__box { stroke: var(--edge-up); stroke-width: 1; fill: var(--panel); }
.diagram__caption {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: var(--u2) 0 0;
  max-width: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js .diagram__wire { stroke-dasharray: 260; stroke-dashoffset: 260; }
  .js .diagram--drawn .diagram__wire { stroke-dashoffset: 0; transition: stroke-dashoffset 1100ms var(--ease); }
  .js .diagram__node { opacity: 0; }
  .js .diagram--drawn .diagram__node { opacity: 1; transition: opacity 500ms linear 400ms; }
}

@media (min-width: 961px) {
  .intake { padding: var(--u6) 0 var(--u7); }
  .intake__grid {
    grid-template-columns: 8fr 4fr;
    gap: var(--u5);
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   7. BRANCHSET (capability columns, divided by rules, no cards, no fills)
   -------------------------------------------------------------------------- */

.branchset {
  display: grid;
  grid-template-columns: 1fr;
}

.branch { padding: var(--u4) 0; border-top: 1px solid var(--rule); }
.branch:first-child { border-top: 0; padding-top: 0; }

.branch__ord {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--signal);
  display: block;
  margin-bottom: var(--u3);
}

.branch__name { margin-bottom: var(--u2); }
.branch__text { color: var(--muted); max-width: 40ch; }

.branchset--pair { margin-top: var(--u4); }

@media (min-width: 861px) {
  .branchset { grid-template-columns: repeat(3, 1fr); }
  .branchset--pair { grid-template-columns: repeat(2, 1fr); }
  .branch {
    padding: 0 var(--u4);
    border-top: 0;
    border-left: 1px solid var(--rule);
  }
  .branch:first-child { padding-left: 0; border-left: 0; }
  .branch:last-child { padding-right: 0; }
}

/* --------------------------------------------------------------------------
   8. RUNSHEET (method table, full bleed)
   -------------------------------------------------------------------------- */

.scrollbay {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.scrollbay:focus-visible { outline: 2px solid var(--edge-up); outline-offset: 2px; }

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  text-align: left;
}

caption {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 0 0 var(--u2);
}

th, td {
  padding: var(--u3) var(--u3) var(--u3) 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

thead th {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: var(--u2);
  padding-bottom: var(--u2);
}

tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

td, tbody th {
  font-family: var(--mono);
  font-size: var(--t-data);
  font-weight: 500;
  color: var(--muted);
}

.sheet__step {
  font-family: var(--mono);
  font-size: var(--t-data);
  font-weight: 800;
  color: var(--signal);
  width: 64px;
  white-space: nowrap;
}

.sheet__name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  width: 22%;
  line-height: 1.25;
}

.sheet__span { white-space: nowrap; color: var(--text); }

.scroll-note {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: var(--u2) 0 0;
  max-width: none;
}

@media (min-width: 861px) {
  .scroll-note { display: none; }
}

/* --------------------------------------------------------------------------
   9. WIRING (stack list, comma ruled, no logos)
   -------------------------------------------------------------------------- */

.wiring {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--u4);
}

.wiring__set { border-top: 1px solid var(--rule); padding-top: var(--u3); }

.wiring__head {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 var(--u2);
  max-width: none;
}

.wiring__list {
  font-family: var(--mono);
  font-size: var(--t-data);
  font-weight: 500;
  color: var(--text);
  margin: 0;
  max-width: 70ch;
  word-spacing: 0.05em;
}

.wiring__note {
  color: var(--muted);
  margin-top: var(--u4);
  border-left: 1px solid var(--rule);
  padding-left: var(--u3);
}

@media (min-width: 861px) {
  .wiring { grid-template-columns: 1fr 1fr; gap: var(--u4) var(--u5); }
}

/* --------------------------------------------------------------------------
   10. TENETS (two columns of prose, pull sentences)
   -------------------------------------------------------------------------- */

.tenets { columns: 1; }

.tenet { break-inside: avoid; margin-bottom: var(--u4); }
.tenet:last-child { margin-bottom: 0; }
.tenet__name { margin-bottom: var(--u2); }
.tenet p { color: var(--muted); }

.pull {
  font-family: var(--serif);
  font-size: var(--t-h3);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  border-left: 1px solid var(--signal);
  padding-left: var(--u3);
  margin: var(--u3) 0;
  max-width: 34ch;
}

@media (min-width: 861px) {
  .tenets { columns: 2; column-gap: var(--u5); }
}

/* --------------------------------------------------------------------------
   11. BOUNDS (scope limits, ruled term and prose rows)
   -------------------------------------------------------------------------- */

.bounds { border-top: 1px solid var(--rule); }

.bound {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--u1) var(--u4);
  padding: var(--u3) 0;
  border-bottom: 1px solid var(--rule);
}

.bound__term {
  font-family: var(--mono);
  font-size: var(--t-data);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.bound__body { color: var(--muted); margin: 0; }

@media (min-width: 721px) {
  .bound { grid-template-columns: 300px 1fr; align-items: baseline; }
}

/* --------------------------------------------------------------------------
   12. HANDOFF (contact block and form)
   -------------------------------------------------------------------------- */

.handoff {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--u4) var(--u3);
}

@media (min-width: 721px) { .handoff { padding: var(--u5); } }

.handoff__grid { display: grid; grid-template-columns: 1fr; gap: var(--u3); }

@media (min-width: 721px) {
  .handoff__grid { grid-template-columns: 1fr 1fr; }
  .handoff__grid > .handoff__field--wide { grid-column: 1 / -1; }
}

.handoff__field { display: flex; flex-direction: column; gap: var(--u1); }

.handoff__label {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.handoff__input,
.handoff__area {
  font-family: var(--mono);
  font-size: var(--t-data);
  font-weight: 500;
  color: var(--text);
  background: var(--ink);
  border: 1px solid var(--edge-up);
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
  padding: 13px 14px;
  width: 100%;
  line-height: 1.4;
}

.handoff__area { min-height: 150px; resize: vertical; }

.handoff__input::placeholder,
.handoff__area::placeholder { color: var(--muted); opacity: 1; }

.handoff__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--u3);
  margin-top: var(--u4);
}

.handoff__route {
  font-family: var(--mono);
  font-size: var(--t-data);
  color: var(--muted);
  margin: var(--u3) 0 0;
  max-width: 66ch;
}

.handoff__route a { color: var(--signal); }

/* --------------------------------------------------------------------------
   13. LEGAL DOCUMENT FURNITURE
   -------------------------------------------------------------------------- */

.docline {
  border-bottom: 1px solid var(--rule);
  padding: var(--u5) 0 var(--u4);
}

.docline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--u1) var(--u3);
  font-family: var(--mono);
  font-size: var(--t-data);
  color: var(--muted);
  margin: var(--u3) 0 0;
  max-width: none;
}

.pathindex {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--u3);
  margin: var(--u5) 0;
}

.pathindex__title {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--u3);
  max-width: none;
}

.pathindex ol {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  counter-reset: pathitem;
}

.pathindex li {
  font-family: var(--mono);
  font-size: var(--t-data);
  counter-increment: pathitem;
}

.pathindex li::before {
  content: counter(pathitem, decimal-leading-zero) "  ";
  color: var(--signal);
  font-weight: 800;
}

.pathindex a { color: var(--text); text-decoration: none; }
.pathindex a:hover { color: var(--signal); }

@media (min-width: 721px) { .pathindex ol { grid-template-columns: 1fr 1fr; gap: 6px var(--u4); } }
@media (min-width: 1025px) { .pathindex ol { grid-template-columns: repeat(3, 1fr); } }

.article { padding: var(--u5) 0 0; }
.article__title { margin-bottom: var(--u3); display: flex; gap: var(--u2); align-items: baseline; flex-wrap: wrap; }

.article__num {
  font-family: var(--mono);
  font-size: var(--t-data);
  font-weight: 800;
  color: var(--signal);
  letter-spacing: 0;
}

.article h3 { margin: var(--u4) 0 var(--u2); }
.article h4 { margin: var(--u3) 0 var(--u1); }
.article p, .article li { color: var(--muted); }
.article strong { color: var(--text); font-weight: 500; }

.article ul, .article ol { margin: 0 0 var(--u2); padding-left: 22px; max-width: 68ch; }
.article li { margin-bottom: 6px; }

.roleflag {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--edge-up);
  border-radius: var(--radius);
  padding: 4px 8px;
  margin-bottom: var(--u2);
  line-height: 1.2;
}

.backtotop {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-top: var(--u3);
  /* Underlined, because unstyled it read as a stray caption rather than the
     only way back to the table of contents in a 23 section document. */
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rule);
}

.backtotop:hover { color: var(--signal); text-decoration-color: var(--signal); }

.notebox {
  border: 1px solid var(--edge-up);
  border-radius: var(--radius);
  padding: var(--u3);
  margin: var(--u3) 0;
  background: var(--panel);
}

.notebox p { color: var(--text); }

/* --------------------------------------------------------------------------
   14. RUNOUT (footer)
   -------------------------------------------------------------------------- */

.runout {
  border-top: 1px solid var(--rule);
  padding: var(--u5) 0 var(--u4);
  margin-top: var(--u6);
}

.runout__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--u4);
}

.runout__head {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 var(--u2);
}

.runout__col p, .runout__col li {
  font-family: var(--mono);
  font-size: var(--t-data);
  color: var(--muted);
  line-height: 1.7;
}

.runout__col ul { list-style: none; margin: 0; padding: 0; }
.runout__col a { color: var(--muted); text-decoration: none; }
.runout__col a:hover { color: var(--signal); }

.runout__statutory {
  border-top: 1px solid var(--rule);
  margin-top: var(--u4);
  padding-top: var(--u3);
}

.runout__statutory p {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.9;
  color: var(--muted);
  max-width: 100ch;
  text-transform: none;
}

.runout__statutory a { color: var(--muted); }

@media (min-width: 721px) {
  .runout__cols { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--u5); }
}

/* --------------------------------------------------------------------------
   15. SMALL SCREEN GUARDS
   -------------------------------------------------------------------------- */

@media (max-width: 420px) {
  :root { --t-h3: 22px; --t-digest: 19px; }
  .runfield { padding: 0 var(--u2); }
  .jumpwire { left: var(--u2); }
  .trigger { width: 100%; text-align: center; }
  .intake__triggers { gap: 10px; }
}
