/* miracleventures.co.uk
 *
 * One stylesheet. No framework. The only JavaScript on the site is the four
 * functional components (estimator, eligibility checker, scope filter, apply
 * form); every page reads correctly with all of it switched off.
 *
 * The palette is echoplaybook.com's, token for token, so that the two sites
 * read as the work of one hand. Keep the "--c-" prefix and one token per line.
 */

:root {
  --c-ink: #0a0b0d;
  --c-ink-soft: #363c45;
  --c-muted: #5b6472;
  --c-canvas: #ffffff;
  --c-paper: #f6f7f9;
  --c-line: #e4e7ec;
  --c-line-soft: #eef0f4;
  --c-accent: #3b2bf5;
  --c-accent-deep: #2a1cc4;
  --c-accent-wash: #eeecfe;
  --c-on-accent: #ffffff;

  --c-yes: #1a7f37;
  --c-no: #b42318;
  --c-yes-wash: #e9f5ec;
  --c-no-wash: #fdeceb;
  --c-flag: #8a5a00;
  --c-flag-wash: #fdf3e2;

  --f-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --shell: 1120px;
  --shell-narrow: 760px;
  --r: 14px;
  --r-sm: 8px;
  --chip-h: 54px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-ink: #f2f4f7;
    --c-ink-soft: #c3c9d2;
    --c-muted: #99a2b0;
    --c-canvas: #0a0b0d;
    --c-paper: #12151a;
    --c-line: #262b33;
    --c-line-soft: #1c2027;
    --c-accent: #9a8dff;
    --c-accent-deep: #b7adff;
    --c-accent-wash: #191a3a;
    --c-on-accent: #0a0b0d;

    --c-yes: #5fd07f;
    --c-no: #ff8b80;
    --c-yes-wash: #11241a;
    --c-no-wash: #2a1614;
    --c-flag: #e8b563;
    --c-flag-wash: #2a2013;
  }
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* The chip header is sticky, so an in-page jump would otherwise land with the
 * heading hidden under it. Every chip on this site depends on this line. */
[id] { scroll-margin-top: calc(var(--chip-h) + 22px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--c-canvas);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: "cv05" 1, "ss03" 1;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-weight: 620; line-height: 1.16; letter-spacing: -0.022em; }
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.05rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.42rem, 1.18rem + 0.95vw, 1.92rem); }
h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.012em; }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.2em; }
li { margin: 0 0 0.45em; }
img, svg { max-width: 100%; }
img { height: auto; display: block; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.75rem 0; }

a { color: var(--c-accent); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--c-accent-deep); }

:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 80;
  background: var(--c-ink); color: var(--c-canvas); padding: 0.7rem 1rem;
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------------ shell */

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.shell--narrow { max-width: var(--shell-narrow); }

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

.site-nav {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-canvas);
}
.site-nav__in {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 68px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px;
}
.wordmark {
  font-weight: 660; font-size: 1.06rem; letter-spacing: -0.03em;
  color: var(--c-ink); text-decoration: none; white-space: nowrap;
}
.wordmark:hover { color: var(--c-ink); }
.site-nav nav { margin-left: auto; }
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.15rem 1.05rem; align-items: center;
}
.site-nav li { margin: 0; }
.site-nav a {
  color: var(--c-ink-soft); text-decoration: none; font-size: 14.5px;
  padding: 4px 0; border-bottom: 2px solid transparent; display: inline-block;
}
.site-nav a:hover { color: var(--c-accent); }
.site-nav a[aria-current="page"] { color: var(--c-ink); border-bottom-color: var(--c-accent); }

/* ----------------------------------------------------------- chip header */

.chipbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--c-canvas) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
@supports not (backdrop-filter: blur(1px)) { .chipbar { background: var(--c-canvas); } }

.chipbar__scroll {
  display: flex; gap: 0.5rem; align-items: center;
  height: var(--chip-h); overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}
.chipbar__scroll::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto; scroll-snap-align: start;
  font-size: 13.5px; line-height: 1; white-space: nowrap;
  padding: 8px 13px; border-radius: 999px;
  border: 1px solid var(--c-line);
  background: var(--c-paper); color: var(--c-ink-soft);
  text-decoration: none;
}
.chip:hover { border-color: var(--c-accent); color: var(--c-accent); background: var(--c-accent-wash); }

/* --------------------------------------------------------------- sections */

main > section { padding: 3.4rem 0; border-top: 1px solid var(--c-line-soft); }
main > section:first-child { border-top: 0; }
main > section[data-zone="micro-context"]:nth-of-type(even) { background: var(--c-paper); }

#centerpiece { padding: 3.2rem 0 3.6rem; }

.lede {
  font-size: clamp(1.06rem, 1rem + 0.36vw, 1.24rem);
  line-height: 1.5; color: var(--c-ink-soft);
  max-width: 62ch; margin: 1.05rem 0 0;
}
.answer {
  font-size: 1.06rem; line-height: 1.55; color: var(--c-ink-soft);
  max-width: 68ch; margin: 0.85rem 0 1.4rem;
}
.answer strong, .lede strong { color: var(--c-ink); font-weight: 600; }
.prose { max-width: 68ch; color: var(--c-ink-soft); }
.prose strong { color: var(--c-ink); }
.small { font-size: 14.5px; }
.muted { color: var(--c-muted); }
.mono { font-family: var(--f-mono); font-size: 0.92em; font-variant-numeric: tabular-nums; }

.card__head { max-width: 72ch; }

/* -------------------------------------------------------- verdict grid */

.verdict {
  display: grid; gap: 1px; margin: 2.1rem 0 0;
  background: var(--c-line); border: 1px solid var(--c-line); border-radius: var(--r);
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); overflow: hidden;
}
.verdict__item { background: var(--c-canvas); padding: 1.15rem 1.2rem 1.25rem; }
/* Mono, sentence case. Mono already says "label"; uppercase and wide tracking
 * on top of it is the small-caps eyebrow every generated site wears. */
.verdict__k {
  font-family: var(--f-mono); font-size: 12px; font-weight: 400;
  color: var(--c-muted); display: block; margin-bottom: 0.45rem;
}
.verdict__v { font-size: 15.5px; line-height: 1.45; color: var(--c-ink); font-weight: 500; }

/* ------------------------------------------------------------- facts rows */

/* A grid of labelled facts, not a spec sheet. Nine terms stacked with a
 * hairline under each is the laziest layout there is, and it was what this
 * was. The mono label against the sans value separates them; the rule under
 * every row was doing nothing the type was not already doing. */
.rows {
  display: grid; gap: 1.4rem 2.6rem; margin: 1.6rem 0 0;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.rows__k {
  font-family: var(--f-mono); font-size: 12px; color: var(--c-muted);
  display: block; margin-bottom: 0.3rem;
}
.rows__v { color: var(--c-ink); font-size: 15.5px; line-height: 1.5; }

/* ---------------------------------------------------------------- tables */

.tablewrap { overflow-x: auto; margin: 1.5rem 0 0; border: 1px solid var(--c-line); border-radius: var(--r); }
table { border-collapse: collapse; width: 100%; font-size: 15px; background: var(--c-canvas); }
caption {
  text-align: left; font-size: 14px; color: var(--c-muted);
  padding: 0.85rem 1rem 0; caption-side: top;
}
th, td { text-align: left; vertical-align: top; padding: 0.72rem 1rem; border-bottom: 1px solid var(--c-line-soft); }
thead th {
  font-family: var(--f-mono); font-size: 12px; font-weight: 400;
  color: var(--c-muted);
  background: var(--c-paper); border-bottom: 1px solid var(--c-line); white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
tbody th { font-weight: 600; color: var(--c-ink); }
td.num, th.num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* --------------------------------------------------------- status states */

.state {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  font-weight: 500;
}
.state__glyph { font-family: var(--f-mono); font-size: 0.95em; }
.state--yes { color: var(--c-yes); }
.state--no  { color: var(--c-no); }

.splits { display: grid; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; margin: 1.5rem 0 0; }
@media (min-width: 720px) { .splits { grid-template-columns: 1fr 1fr; } }
.split { background: var(--c-canvas); padding: 1.25rem 1.3rem 1.4rem; }
.split__h {
  font-family: var(--f-mono); font-size: 12.5px; font-weight: 500;
  margin: 0 0 0.9rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--c-line);
}
.split--yes .split__h { color: var(--c-yes); }
.split--no .split__h { color: var(--c-no); }
.split ul { list-style: none; padding: 0; margin: 0; }
.split li { display: flex; gap: 0.6rem; margin: 0 0 0.72rem; font-size: 15px; line-height: 1.48; }
.split li:last-child { margin-bottom: 0; }
.split__g { font-family: var(--f-mono); flex: 0 0 auto; line-height: 1.5; }
.split--yes .split__g { color: var(--c-yes); }
.split--no .split__g { color: var(--c-no); }

/* -------------------------------------------------------------- steps */

.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.6rem 0 0; }
.steps > li {
  counter-increment: step; position: relative;
  padding: 0 0 1.4rem 2.5rem; margin: 0;
}
/* A plain number, not an accent pill. An ordered list showing its own numbers
 * is honest; wrapping each one in a tinted badge is decoration, and
 * leading-zero numbering ("01") is the agency tic on top of it. */
.steps > li::before {
  content: counter(step) ".";
  position: absolute; left: 0; top: 0.2rem;
  font-family: var(--f-mono); font-size: 13px; color: var(--c-muted);
  line-height: 1.4;
}
.steps > li:not(:last-child)::after {
  content: ""; position: absolute; left: 0.38rem; top: 1.8rem; bottom: 0.35rem;
  width: 1px; background: var(--c-line);
}
.steps__n { display: block; font-weight: 600; color: var(--c-ink); margin-bottom: 0.2rem; }
.steps__ch { font-family: var(--f-mono); font-size: 12px; font-weight: 400; color: var(--c-muted); margin-left: 0.6rem; }
.deflist__tag { font-family: var(--f-mono); font-size: 12px; font-weight: 400; color: var(--c-muted); margin-left: 0.5rem; }
.steps p { margin: 0 0 0.4rem; color: var(--c-ink-soft); font-size: 15.5px; }
.steps p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------- horizontal flow */

.flow {
  display: grid; gap: 1px; margin: 1.6rem 0 0;
  background: var(--c-line); border: 1px solid var(--c-line);
  border-radius: var(--r); overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.flow__step { background: var(--c-canvas); padding: 1.1rem 1.15rem 1.2rem; }
.flow__t { font-weight: 600; display: block; margin-bottom: 0.35rem; }
.flow__d { font-size: 14.5px; color: var(--c-ink-soft); line-height: 1.45; }

/* ------------------------------------------------------------ diagram */

.diagram { margin: 1.7rem 0 0; border: 1px solid var(--c-line); border-radius: var(--r); background: var(--c-canvas); padding: 1.2rem; overflow-x: auto; }
.diagram svg { display: block; min-width: 680px; }
.dg-node { fill: var(--c-paper); stroke: var(--c-line); }
.dg-node--accent { fill: var(--c-accent-wash); stroke: var(--c-accent); }
.dg-label { fill: var(--c-ink); font-family: var(--f-sans); font-size: 13px; font-weight: 600; }
.dg-sub { fill: var(--c-muted); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.05em; }
.dg-line { stroke: var(--c-line); stroke-width: 1.5; fill: none; }
.dg-line--loop { stroke: var(--c-accent); stroke-dasharray: 4 4; }
.dg-arrow { fill: var(--c-line); }
.dg-arrow--loop { fill: var(--c-accent); }

/* ---------------------------------------------------------------- tiles */

.tiles { display: grid; gap: 1rem; margin: 1.7rem 0 0; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); }
.tile {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--c-line); border-radius: var(--r);
  padding: 1.15rem 1.2rem 1.25rem; background: var(--c-canvas);
}
.tile:hover { border-color: var(--c-accent); background: var(--c-accent-wash); color: inherit; }
.tile__t { font-weight: 620; font-size: 1.02rem; display: block; margin-bottom: 0.35rem; color: var(--c-ink); }
.tile:hover .tile__t { color: var(--c-accent-deep); }
.tile__d { font-size: 14.5px; color: var(--c-ink-soft); line-height: 1.45; }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--f-sans); font-size: 15.5px; font-weight: 550;
  padding: 0.78rem 1.3rem; border-radius: var(--r-sm);
  border: 1px solid var(--c-accent); background: var(--c-accent); color: var(--c-on-accent);
  text-decoration: none; cursor: pointer; line-height: 1.2;
}
.btn:hover { background: var(--c-accent-deep); border-color: var(--c-accent-deep); color: var(--c-on-accent); }
.btn--ghost { background: transparent; color: var(--c-accent); }
.btn--ghost:hover { background: var(--c-accent-wash); color: var(--c-accent-deep); }
.btn--sm { font-size: 14.5px; padding: 0.58rem 1rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.9rem 0 0; align-items: center; }

.next {
  margin: 1.9rem 0 0; padding-top: 1.15rem; border-top: 1px solid var(--c-line);
  font-size: 15.5px;
}
.next__sep { color: var(--c-line); margin: 0 0.75rem; }

/* ----------------------------------------------------------------- forms */

.field { margin: 0 0 1.05rem; }
.field > label, .fieldset__legend {
  display: block; font-size: 14.5px; font-weight: 550; color: var(--c-ink); margin-bottom: 0.35rem;
}
.field__hint { display: block; font-size: 13.5px; color: var(--c-muted); margin-bottom: 0.4rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="number"], select, textarea {
  width: 100%; font-family: var(--f-sans); font-size: 15.5px; color: var(--c-ink);
  background: var(--c-canvas); border: 1px solid var(--c-line); border-radius: var(--r-sm);
  padding: 0.62rem 0.75rem; line-height: 1.4;
}
input[type="number"] { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }
textarea { min-height: 110px; resize: vertical; }
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 1px), calc(100% - 13px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
  padding-right: 2.2rem;
}
input:focus, select:focus, textarea:focus { border-color: var(--c-accent); outline: 2px solid var(--c-accent); outline-offset: 1px; }
.field--bad input, .field--bad select, .field--bad textarea { border-color: var(--c-no); }
.field__err { display: block; font-size: 13.5px; color: var(--c-no); margin-top: 0.3rem; font-weight: 500; }
/* The honeypot. Off-screen rather than display:none, because some bots skip
   anything a browser would not render. Never focusable, never announced. */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.grid2 { display: grid; gap: 0 1.1rem; }
@media (min-width: 640px) { .grid2 { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------------- component */

.tool {
  border: 1px solid var(--c-line); border-radius: var(--r);
  background: var(--c-canvas); margin: 1.7rem 0 0; overflow: hidden;
}
.tool__head { padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--c-line); background: var(--c-paper); }
.tool__what { margin: 0; font-size: 14.5px; color: var(--c-ink-soft); }
.tool__body { padding: 1.3rem; }
.tool__out {
  border-top: 1px solid var(--c-line); background: var(--c-paper);
  padding: 1.2rem 1.3rem 1.35rem;
}
.tool__outk {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--c-muted); display: block; margin-bottom: 0.5rem;
}
.figure { font-family: var(--f-mono); font-size: 1.5rem; font-weight: 500; color: var(--c-ink); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.figure--sm { font-size: 1.12rem; }
.outrow { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin: 0 0 0.9rem; }
.outrow > div { min-width: 160px; }

/* -------------------------------------------------------- filter control */

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 0; }
.filters__lab { flex: 1 0 100%; font-size: 13.5px; color: var(--c-muted); margin-bottom: 0.15rem; }
.pill {
  font-family: var(--f-sans); font-size: 13.5px; line-height: 1;
  padding: 8px 13px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--c-line); background: var(--c-canvas); color: var(--c-ink-soft);
}
.pill:hover { border-color: var(--c-accent); color: var(--c-accent); }
.pill[aria-pressed="true"] { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-on-accent); }

/* -------------------------------------------------------------- notices */

/* Inline, not inline-flex: in a narrow grid cell a flex chip wrapped into two
 * rows with the gap left hanging between them. Text wraps; the border follows
 * it. */
.gap {
  display: inline; box-decoration-break: clone; -webkit-box-decoration-break: clone;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.03em; line-height: 1.9;
  color: var(--c-flag); background: var(--c-flag-wash);
  border: 1px dashed currentColor; border-radius: var(--r-sm);
  padding: 3px 8px;
}
.notice {
  border: 1px solid var(--c-flag); background: var(--c-flag-wash); color: var(--c-flag);
  border-radius: var(--r-sm); padding: 0.85rem 1rem; margin: 1.3rem 0 0; font-size: 14.5px;
}
.notice strong { color: inherit; }
.empty {
  border: 1px dashed var(--c-line); border-radius: var(--r);
  background: var(--c-paper); padding: 1.5rem 1.4rem; margin: 1.6rem 0 0;
}
.empty__t { font-weight: 600; margin: 0 0 0.4rem; }
.empty p { margin: 0 0 0.4rem; color: var(--c-ink-soft); font-size: 15px; }
.empty p:last-child { margin-bottom: 0; }

.draftbar { background: var(--c-flag-wash); border-bottom: 1px solid var(--c-flag); color: var(--c-flag); font-size: 13.5px; }
.draftbar > .shell { display: flex; gap: 0.7rem; flex-wrap: wrap; padding-top: 0.55rem; padding-bottom: 0.55rem; }

/* ------------------------------------------------------------ breadcrumb */

.crumbs { font-size: 13.5px; color: var(--c-muted); padding: 0.9rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; display: flex; gap: 0.4rem; }
.crumbs li + li::before { content: "/"; color: var(--c-line); }

/* ---------------------------------------------------------------- chart */

.chart { margin: 1.6rem 0 0; border: 1px solid var(--c-line); border-radius: var(--r); padding: 1.2rem; background: var(--c-canvas); overflow-x: auto; }
.chart svg { display: block; min-width: 560px; }
.ch-bar { fill: var(--c-accent); }
.ch-bar--pre { fill: var(--c-line); }
.ch-ax { stroke: var(--c-line); stroke-width: 1; }
.ch-t { fill: var(--c-muted); font-family: var(--f-mono); font-size: 10.5px; }

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

.foot { border-top: 1px solid var(--c-line); background: var(--c-paper); margin-top: 1rem; }
.foot__in { padding: 2.6rem 0 3rem; display: grid; gap: 1.6rem; }
@media (min-width: 760px) { .foot__in { grid-template-columns: 1fr auto; align-items: start; } }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; }
.foot li { margin: 0; }
.foot a { color: var(--c-ink-soft); text-decoration: none; font-size: 14.5px; }
.foot a:hover { color: var(--c-accent); text-decoration: underline; }
.foot__legal { font-size: 13.5px; color: var(--c-muted); margin: 0.9rem 0 0; max-width: 56ch; }
.foot__legal .mono { color: var(--c-ink-soft); }

/* ------------------------------------------------------------------ misc */

.stack > * + * { margin-top: 1.5rem; }

/* A paragraph that follows a block component needs its own air. Without this
 * the closing line of a card sits hard against the table above it. */
.tablewrap + p, .splits + p, .ticks + p, .deflist + p, .flow + p,
.steps + p, .rows + p, .chart + p, .empty + p, .diagram + p, .verdict + p,
.tool + p, .tablewrap + .prose, .splits + .prose { margin-top: 1.5rem; }
.tablewrap + .tablewrap, .ticks + .tablewrap, .prose + .tablewrap { margin-top: 1.5rem; }
.qa { border-top: 1px solid var(--c-line-soft); padding: 1.15rem 0 0.35rem; }
.qa:first-of-type { border-top: 1px solid var(--c-line); }
.qa h3 { margin: 0 0 0.45rem; }
.qa p { color: var(--c-ink-soft); font-size: 15.5px; max-width: 70ch; }
.qa p:last-child { margin-bottom: 0.7rem; }

.deflist {
  display: grid; gap: 1.4rem 2.6rem; margin: 1.6rem 0 0;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.deflist__i[hidden] { display: none; }
.deflist__t { font-weight: 600; display: block; margin-bottom: 0.25rem; }
.deflist__d { color: var(--c-ink-soft); font-size: 15px; line-height: 1.5; display: block; }

/* One rule down the left groups the list. It replaced an arrow glyph that ran
 * before every row, 42 times across the site, meaning nothing each time. */
.ticks {
  list-style: none; margin: 1.5rem 0 0;
  padding: 0.15rem 0 0.15rem 1.15rem; border-left: 2px solid var(--c-line);
}
.ticks li { margin: 0 0 0.78rem; font-size: 15.5px; line-height: 1.5; color: var(--c-ink-soft); max-width: 66ch; }
.ticks li:last-child { margin-bottom: 0; }
.ticks strong { color: var(--c-ink); font-weight: 600; }

@media print {
  .chipbar, .site-nav, .btn, .tool { display: none; }
  body { font-size: 11pt; }
}
