/* Confidence UI — a pattern library for acting on an uncertain judgment.
   Typography and palette follow anujpatel.co.in: Instrument Serif for the
   argument, Inter for the reading, Geist Mono for anything the machine said.
   Pure black ground, warm ink, one violet doing all the work. */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600&family=Geist+Mono:wght@400;500&display=swap");

:root {
  color-scheme: dark;
  --surface:      #000000;
  --panel:        #0b0b0e;
  --panel-2:      #121116;
  --line:         #26232e;
  --line-soft:    #1a1820;
  --ink:          #eae7e0;
  --ink-2:        #a09aa8;
  --ink-3:        #726c7c;

  /* Ordinal ramp, act → abstain. One hue — the site's violet — monotone in
     lightness and validated against this surface in both modes, so how
     assertive a rung is reads as how intense it looks. */
  --rung-act:     #e6d2ff;
  --rung-undo:    #c693f9;
  --rung-offer:   #a86cf0;
  --rung-ask:     #8744f2;
  --rung-abstain: #6b31c4;

  --accent:       #c693f9;
  --accent-solid: #8744f2;

  /* Status is reserved and never themed. Always paired with an icon + label. */
  --critical:     #d03b3b;
  --good:         #0ca30c;
  --warning:      #fab219;

  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --radius: 18px;
  --gutter: 16px;
}

@media (prefers-color-scheme: light) {
  :root:where(:not([data-theme="dark"])) {
    color-scheme: light;
    --surface: #faf9f7; --panel: #ffffff; --panel-2: #f5f3f0;
    --line: #e2ded9; --line-soft: #edeae5;
    --ink: #14121a; --ink-2: #57525f; --ink-3: #807a89;
    --rung-act: #3d1a75; --rung-undo: #5a25aa; --rung-offer: #8744f2;
    --rung-ask: #a86cf0; --rung-abstain: #c693f9;
    --accent: #6a2fc0; --accent-solid: #8744f2;
  }
}
:root[data-theme="light"] {
  color-scheme: light;
  --surface: #faf9f7; --panel: #ffffff; --panel-2: #f5f3f0;
  --line: #e2ded9; --line-soft: #edeae5;
  --ink: #14121a; --ink-2: #57525f; --ink-3: #807a89;
  --rung-act: #3d1a75; --rung-undo: #5a25aa; --rung-offer: #8744f2;
  --rung-ask: #a86cf0; --rung-abstain: #c693f9;
  --accent: #6a2fc0; --accent-solid: #8744f2;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--surface); color: var(--ink);
  font: 400 16px/1.55 var(--sans);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { margin: 0; }
h1, h2 {
  font-family: var(--display); font-weight: 400; letter-spacing: -0.022em;
  line-height: 1.04;
}
h3 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.016em; }
p { margin: 0 0 0.9em; }
a { color: inherit; }
code, .mono { font-family: var(--mono); font-size: 0.86em; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 var(--gutter); }
.rule { border: 0; border-top: 1px solid var(--line-soft); margin: 72px 0; }

/* ---------- masthead ---------- */
.masthead { padding: 88px var(--gutter) 8px; }
.eyebrow {
  font: 400 12px/1 var(--mono); letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.masthead h1 {
  font-size: clamp(42px, 7.4vw, 84px); line-height: 1.03; max-width: 15ch;
  letter-spacing: -0.028em;
}
/* The one italic, on the number the whole page is about — the same move the
   site makes on "impact". */
.masthead h1 em { font-style: italic; color: var(--accent); }
.standfirst {
  font-size: clamp(17px, 2.1vw, 20px); line-height: 1.5; color: var(--ink-2);
  max-width: 62ch; margin-top: 26px;
}
.standfirst strong { color: var(--ink); font-weight: 500; }
.runmeta {
  margin-top: 30px; font: 400 12.5px/1.7 var(--mono); color: var(--ink-3);
  display: flex; flex-wrap: wrap; gap: 6px 18px;
}

/* ---------- section headers ---------- */
.sec-head { margin-bottom: 26px; }
.sec-num {
  font: 400 12px/1 var(--mono); letter-spacing: 0.08em; color: var(--accent);
  display: block; margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(27px, 4vw, 42px); letter-spacing: -0.022em; }
.sec-head p { margin-top: 12px; color: var(--ink-2); max-width: 66ch; }

/* ---------- the two numbers ---------- */
.axes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 34px; }
.axis {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px;
}
.axis h3 { font-family: var(--display); font-weight: 400; font-size: 25px; letter-spacing: -0.02em; margin-bottom: 10px; }
.axis .from {
  font: 500 11px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px; display: block;
}
.axis p { color: var(--ink-2); font-size: 14.5px; margin: 0; }

/* ---------- map ---------- */
.mapbox {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 20px; position: relative;
}
.map-svg { width: 100%; height: auto; display: block; overflow: visible; }
.band-label {
  font: 400 11.5px/1 var(--mono); letter-spacing: 0.04em; opacity: 0.94;
}
.axis-label { font: 400 11px/1 var(--mono); fill: var(--ink-3); }
.axis-title { font: 500 11px/1 var(--mono); letter-spacing: 0.08em; fill: var(--ink-2); }
.tick { stroke: var(--line); stroke-width: 1; }
.dot { cursor: pointer; }
.dot circle.core { stroke: var(--surface); stroke-width: 2; fill: var(--ink); }
.dot:hover circle.core, .dot.on circle.core { fill: var(--ink); r: 6; }
.dot circle.halo { fill: none; stroke: var(--critical); stroke-width: 2; }

.legend {
  display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink-2);
}
.legend .key { display: inline-flex; align-items: center; gap: 8px; }
.legend .swatch { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.legend .ring {
  width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--critical); flex: none;
}

.tip {
  position: absolute; pointer-events: none; opacity: 0; transform: translate(-50%, -100%);
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 13px; font-size: 13px; line-height: 1.45; width: 240px;
  box-shadow: 0 8px 26px rgba(0,0,0,.35); transition: opacity .12s; z-index: 5;
}
.tip .t-title { font-weight: 600; margin-bottom: 4px; }
.tip .t-meta { font-family: var(--mono); font-size: 11.5px; color: var(--ink-2); }
.tip .t-wrong { color: var(--critical); font-weight: 600; margin-top: 6px; font-size: 12px; }

.tablewrap { margin-top: 18px; }
.tablewrap > div { overflow-x: auto; }
table.data { min-width: 760px; }
.tablewrap summary {
  cursor: pointer; font: 500 12px/1 var(--mono); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3); padding: 6px 0;
}
table.data { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 13px; }
table.data th, table.data td {
  text-align: left; padding: 7px 10px 7px 0; border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
table.data th { font: 500 11px/1.4 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
table.data td.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- surface cards ---------- */
.cards { display: grid; gap: 18px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.card-head { padding: 26px 26px 20px; border-bottom: 1px solid var(--line-soft); }
.card-head .idx {
  font: 400 11px/1 var(--mono); letter-spacing: 0.08em; color: var(--accent); display: block; margin-bottom: 12px;
}
.card-head h3 { font-family: var(--display); font-weight: 400; font-size: 28px; letter-spacing: -0.02em; }
.card-head .ctx { color: var(--ink-2); font-size: 14.5px; margin: 8px 0 0; }

.card-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.col-left { padding: 20px 22px 22px; border-right: 1px solid var(--line-soft); min-width: 0; }
.col-right { padding: 20px 22px 22px; background: var(--panel-2); min-width: 0; }

.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tab {
  font: 500 12.5px/1 var(--sans); padding: 7px 11px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--ink-2); cursor: pointer;
}
.tab[aria-selected="true"] { background: var(--accent-solid); color: #fff; border-color: var(--accent-solid); }
.case-note { font-size: 14px; color: var(--ink-2); margin: 0 0 18px; }

.readout { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; align-items: baseline; margin-bottom: 16px; }
.readout dt { font: 500 11px/1.5 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.readout dd { margin: 0; font-size: 14px; }
.readout dd.big { font: 500 31px/1 var(--mono); color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.readout .basis { display: block; font-size: 12px; color: var(--ink-3); margin-top: 6px; font-family: var(--mono); }

.spread { display: block; height: 4px; background: var(--line); border-radius: 3px; position: relative; margin-top: 10px; width: 180px; max-width: 100%; }
.spread i { position: absolute; top: 0; height: 100%; background: var(--ink-3); border-radius: 3px; display: block; }

.wrongbadge, .rightbadge, .jcbadge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600;
  padding: 5px 10px; border-radius: 6px; margin-bottom: 14px;
}
.wrongbadge { color: var(--critical); border: 1px solid color-mix(in srgb, var(--critical) 45%, transparent); }
.rightbadge { color: var(--ink-2); border: 1px solid var(--line); font-weight: 500; }
.jcbadge { color: var(--ink-2); border: 1px dashed var(--line); font-weight: 500; }

.stakes-row { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.stakes-row label {
  display: flex; justify-content: space-between; align-items: baseline;
  font: 500 11px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 12px;
}
.stakes-row label b { font: 600 13px/1 var(--mono); color: var(--ink); letter-spacing: 0; }
input[type="range"] { width: 100%; accent-color: var(--accent-solid); }
.stakes-note { font-size: 13px; color: var(--ink-2); margin: 12px 0 0; }
.nocall { font: 400 11.5px/1.5 var(--mono); color: var(--ink-3); margin-top: 10px; }

.rung-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.rung-dot { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.rung-name { font: 600 15px/1 var(--sans); letter-spacing: -0.01em; }
.rung-does { font-size: 14px; color: var(--ink-2); margin: 0 0 18px; }

/* ---------- widgets ----------
   These are product surfaces, not page furniture, so they carry their own
   light theme in both page modes — the same way the case study shows light
   product screens inside a dark page. The vocabulary is lifted from the
   Know Your Benefits card: tinted icon tile, bold title over a status line,
   a semantic number with a small caption, uppercase grey section labels,
   pill chips for people and options, a tinted note for the caveat, and a
   footer with an outline secondary beside a solid primary. */
.widget {
  --p-card:   #ffffff;
  --p-bg:     #f6f7fa;
  --p-ink:    #1b2335;
  --p-ink-2:  #646c80;
  --p-ink-3:  #98a0b0;
  --p-line:   #e7eaf1;
  --p-blue:   #4b6ef5;
  --p-tint:   #eef2ff;
  --p-amber:  #d9772e;
  --p-amber-tint: #fdf5ec;
  --p-grey:   #7c8494;

  background: var(--p-bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px; font-size: 14px; color: var(--p-ink);
  font-family: var(--sans); line-height: 1.45;
}
.w-card {
  background: var(--p-card); border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 1px 2px rgba(20,30,60,.05), 0 6px 18px rgba(20,30,60,.05);
}
.w-card + .w-card { margin-top: 10px; }
.w-card.spent { background: transparent; box-shadow: none; border: 1px solid var(--p-line); }
.w-card.spent .w-title, .w-card.spent .w-sub { color: var(--p-ink-3); }

/* head: tile · title + status · value + caption */
.w-head { display: flex; align-items: flex-start; gap: 13px; }
.w-tile {
  width: 40px; height: 40px; border-radius: 12px; background: var(--p-tint);
  display: flex; align-items: center; justify-content: center; flex: none;
  font-size: 18px; line-height: 1;
}
.w-card.spent .w-tile { background: #eef0f4; filter: grayscale(1); }
.w-headtext { min-width: 0; flex: 1; }
.w-title { font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; color: var(--p-ink); }
.w-sub { color: var(--p-ink-2); font-size: 13px; margin-top: 2px; }
.w-val { text-align: right; flex: none; }
.w-val b { font-weight: 700; font-size: 19px; letter-spacing: -0.015em; display: block; }
.w-val b.blue { color: var(--p-blue); }
.w-val b.amber { color: var(--p-amber); }
.w-val span { font-size: 11.5px; color: var(--p-ink-3); display: block; margin-top: 1px; }

.w-badge {
  display: inline-block; vertical-align: 2px; margin-left: 8px;
  background: var(--p-grey); color: #fff; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.055em; padding: 3px 9px;
}
.w-badge.blue { background: var(--p-blue); }
.w-badge.amber { background: var(--p-amber); }

/* the uppercase grey section label that carries every block in his card */
.w-label {
  display: block; font: 600 11px/1 var(--sans); letter-spacing: 0.075em;
  text-transform: uppercase; color: var(--p-ink-3); margin: 16px 0 9px;
}
.w-label:first-child { margin-top: 0; }

/* dot · label · value, split by hairlines — the "how you pay" row */
.w-facts { display: flex; flex-wrap: wrap; align-items: center; gap: 0 14px; font-size: 13.5px; }
.w-fact { display: flex; align-items: center; gap: 7px; padding-right: 14px; border-right: 1px solid var(--p-line); }
.w-fact:last-child { border-right: 0; padding-right: 0; }
.w-fact i { width: 8px; height: 8px; border-radius: 50%; background: var(--p-blue); flex: none; }
.w-fact i.amber { background: var(--p-amber); }
.w-fact i.grey { background: var(--p-ink-3); }
.w-fact b { font-weight: 600; }
.w-fact span { color: var(--p-blue); }
.w-fact span.amber { color: var(--p-amber); }
.w-fact span.grey { color: var(--p-ink-2); }

/* pill chips, with the optional avatar initial */
.w-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.w-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--p-line); border-radius: 999px; padding: 7px 14px 7px 8px;
  font-size: 13.5px; font-weight: 600; color: var(--p-ink); background: var(--p-card);
}
.w-chip.plain { padding: 7px 14px; }
.w-chip em { width: 22px; height: 22px; border-radius: 50%; background: var(--p-tint);
  color: var(--p-blue); font-style: normal; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex: none; }
.w-chip.lead { border-color: var(--p-blue); box-shadow: inset 0 0 0 1px var(--p-blue); }
.w-chip.flagged { background: var(--p-amber-tint); border-color: transparent; }
.w-chip.flagged em { background: #f6e6d4; color: var(--p-amber); }
.w-chip.flagged b { color: var(--p-amber); font-weight: 700; margin-left: 2px; }
.w-chip.muted { color: var(--p-ink-3); font-weight: 500; }

/* the tinted caveat */
.w-note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 14px;
  background: var(--p-amber-tint); border-radius: 12px; padding: 12px 14px;
  font-size: 13px; color: var(--p-ink-2);
}
.w-note i { color: var(--p-amber); font-style: normal; flex: none; font-weight: 700; }
.w-note.blue { background: var(--p-tint); }
.w-note.blue i { color: var(--p-blue); }

/* footer: meta left, outline + solid right */
.w-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--p-line);
  font-size: 12.5px; color: var(--p-ink-3);
}
.w-foot:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.w-foot .meta { display: flex; align-items: center; gap: 7px; }
.w-btns { display: flex; gap: 9px; flex-wrap: wrap; }
.w-btn {
  border: 1px solid var(--p-blue); border-radius: 11px; padding: 9px 17px;
  font-size: 13.5px; font-weight: 600; color: var(--p-blue); background: var(--p-card);
}
.w-btn.primary { background: var(--p-blue); color: #fff; }
.w-btn.quiet { border-color: var(--p-line); color: var(--p-ink-2); font-weight: 500; }
.w-btn.danger { border-color: #e0b4b4; color: #c23c3c; }
.w-act { color: var(--p-blue); font-weight: 600; cursor: pointer; }

/* fields */
.w-input {
  border: 1px solid var(--p-line); border-radius: 12px; padding: 12px 14px;
  background: var(--p-card); font-size: 15px; font-weight: 600; color: var(--p-ink);
  min-height: 46px; display: flex; align-items: center;
}
.w-input.focused { border-color: var(--p-blue); box-shadow: 0 0 0 3px rgba(75,110,245,.16); }
.w-input .sel { background: rgba(75,110,245,.16); border-radius: 3px; padding: 0 3px; }
.w-input .dotted { border-bottom: 1.5px dotted var(--p-ink-3); }
.w-input .empty { color: var(--p-ink-3); font-weight: 400; font-style: italic; }

/* table, list, records, sql — same surface, same radii */
.w-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.w-table th { font: 600 10.5px/1.4 var(--sans); letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--p-ink-3); text-align: left; padding: 0 10px 9px 0; }
.w-table td { padding: 11px 10px 11px 0; border-top: 1px solid var(--p-line); }
.w-table tr.target td { background: var(--p-tint); }
.w-table tr.target td:first-child { border-radius: 10px 0 0 10px; padding-left: 10px; }
.w-table tr.target td:last-child { border-radius: 0 10px 10px 0; }
.w-table td.cat { font-weight: 600; }
.w-table td.cat.ghost { color: var(--p-ink-3); font-weight: 500; }
.w-table td.cat.dotted span { border-bottom: 1.5px dotted var(--p-ink-3); }

.w-row { display: flex; gap: 11px; align-items: flex-start; padding: 11px 0; border-top: 1px solid var(--p-line); }
.w-row:first-child { border-top: 0; }
.w-row .rank { font: 700 11px/1.5 var(--sans); color: var(--p-ink-3); width: 16px; flex: none; }
.w-row .txt { color: var(--p-ink-2); font-size: 13px; line-height: 1.5; }
.w-row.top .txt { color: var(--p-ink); }
.w-row .flagchip { font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--p-blue); background: var(--p-tint); border-radius: 999px; padding: 3px 9px; flex: none; }

.w-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.w-rec { border: 1px solid var(--p-line); border-radius: 12px; padding: 14px; background: var(--p-card); }
.w-rec .k { display: block; font: 600 10px/1.4 var(--sans); letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--p-ink-3); }
.w-rec .v { font-size: 13px; font-weight: 600; margin-bottom: 9px; word-break: break-word; }
.w-rec .v.conflict { color: var(--p-amber); }

.w-sql {
  font-family: var(--mono); font-size: 12.5px; background: #0f1523; color: #d7dcea;
  border-radius: 12px; padding: 14px 16px; line-height: 1.65; white-space: pre-wrap;
  word-break: break-word; font-weight: 400;
}
.w-meter { display: flex; gap: 4px; margin: 10px 0 8px; }
.w-meter i { height: 6px; flex: 1; border-radius: 3px; background: #e4e7ee; }
.w-nothing { color: var(--p-ink-3); font-size: 13.5px; font-style: italic; }

/* ---------- question disclosure ---------- */
details.q { margin-top: 18px; border-top: 1px solid var(--line-soft); padding-top: 16px; }
details.q summary {
  cursor: pointer; font: 500 11px/1 var(--mono); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
}
details.q summary::marker { color: var(--ink-3); }
.qbody { margin-top: 14px; font-family: var(--mono); font-size: 12px; line-height: 1.6; color: var(--ink-2); }
.qbody .qtype { color: var(--ink-3); }
.qbody .qi { color: var(--ink); display: block; margin: 8px 0 12px; }
.qbody ul { margin: 0; padding-left: 18px; }
.qbody li { margin-bottom: 4px; }
.qbody li b { color: var(--ink); font-weight: 600; }
.extras-note { font-size: 13px; color: var(--ink-2); border-left: 2px solid var(--line); padding-left: 12px; margin-top: 16px; }

/* ---------- findings ---------- */
.findings { display: grid; gap: 14px; }
.finding { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.finding.flagged { border-color: color-mix(in srgb, var(--critical) 40%, transparent); }
.finding h3 { font-family: var(--display); font-weight: 400; font-size: 24px; margin-bottom: 11px; letter-spacing: -0.02em; }
.finding p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.finding p + p { margin-top: 9px; }
.finding .tagline {
  font: 500 11px/1 var(--mono); letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 11px; display: flex; align-items: center; gap: 7px;
}
.finding.flagged .tagline { color: var(--critical); }

.intro p {
  font-size: clamp(16px, 1.9vw, 18px); line-height: 1.62; color: var(--ink-2); max-width: 64ch;
}
.intro p strong { color: var(--accent); font-weight: 500; }
.intro .sec-head { margin-bottom: 20px; }

.colophon { color: var(--ink-2); font-size: 14.5px; max-width: 66ch; padding-bottom: 96px; }
.colophon code { background: var(--panel-2); padding: 2px 5px; border-radius: 4px; }

@media (max-width: 860px) {
  .card-body { grid-template-columns: 1fr; }
  .col-left { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .axes { grid-template-columns: 1fr; }
  .masthead { padding-top: 56px; }
  .rule { margin: 52px 0; }
}
@media (max-width: 560px) {
  .w-cols { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
