/* AgentsOfSchools.ai - Brand Guide V2 (visual identity system 1.0)
   Canonical spec: vault 09-KM-Ventures/02-Brand/2026/08_brand-guide */

:root {
  /* Color roles */
  --page: #FBF8F0;
  --card: #F6F1E6;
  --border: #DBD2B8;
  --muted: #4C608A;
  --body: #1D2C4E;
  --strong: #0C1425;
  --oxford: #14213D;
  --marigold: #FCA311;
  --marigold-hover: #E28F06;
  --marigold-press: #C97F05;
  --success: #256C43;
  --warning: #9A6700;
  --danger: #BE3320;
  /* Board (navy) surface companions */
  --board-line: #2A3A5F;
  --board-chalk: #F6F1E6;
  --board-muted: #93A3C9;
  /* Type */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans: 'Atkinson Hyperlegible Next', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  /* Motion */
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.55;
  color: var(--body); background: var(--page);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* Sections divide with 1px rules, not background changes */
section { padding: 88px 0; }
section + section { border-top: 1px solid var(--border); }
section.alt { background: transparent; }

:focus-visible { outline: 2px solid var(--marigold); outline-offset: 2px; }

/* Type scale */
h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 4.4vw, 44px); line-height: 1.1;
  color: var(--strong); max-width: 680px;
}
.hero h1 { font-size: clamp(42px, 5.6vw, 64px); line-height: 1.05; letter-spacing: -0.01em; }
h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 3vw, 32px); line-height: 1.15;
  color: var(--strong); margin-bottom: 10px;
}
.sub { font-size: 19px; line-height: 1.5; color: var(--muted); max-width: 580px; margin-top: 16px; }
b, strong { font-weight: 700; }

/* Eyebrow: the machine voice */
.kicker {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}

/* Buttons: marigold default, oxford text always, darker on hover and press */
.btn {
  display: inline-block; background: var(--marigold); color: var(--oxford);
  padding: 13px 24px; border-radius: 4px; border: 1px solid transparent;
  font-weight: 500; font-size: 15px; margin-top: 26px; margin-right: 12px;
  cursor: pointer; transition: background 150ms ease-out, border-color 150ms ease-out;
}
.btn:hover { background: var(--marigold-hover); }
.btn:active { background: var(--marigold-press); }
.btn.secondary { background: transparent; color: var(--strong); border-color: var(--border); }
.btn.secondary:hover { background: transparent; border-color: var(--muted); }

/* Navigation */
nav {
  display: flex; align-items: center; gap: 28px; padding: 16px 0;
  border-bottom: 1px solid var(--border); background: var(--page);
  position: sticky; top: 0; z-index: 10;
}
nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 150ms ease-out; }
nav a:hover { color: var(--strong); }
nav a.current { color: var(--strong); font-weight: 700; }
nav .cta {
  margin-left: auto; background: var(--marigold); color: var(--oxford);
  padding: 9px 16px; border-radius: 4px; font-weight: 500; font-size: 14px;
  transition: background 150ms ease-out;
}
nav .cta:hover { background: var(--marigold-hover); }

/* Wordmark: small lockup artwork (never re-typeset, see brand guide section 03) */
nav .logo { display: flex; align-items: center; text-decoration: none; margin-right: 4px; }
nav .logo img { display: block; width: 148px; height: auto; }

/* The tally: four ghosted strokes, marigold fifth closes the count */
.tally { display: block; margin-bottom: 28px; }
.tally .stroke { opacity: 0; animation: tally-fade 300ms var(--ease) forwards; }
.tally .stroke:nth-of-type(2) { animation-delay: 150ms; }
.tally .stroke:nth-of-type(3) { animation-delay: 300ms; }
.tally .stroke:nth-of-type(4) { animation-delay: 450ms; }
.tally .five {
  stroke-dasharray: 90; stroke-dashoffset: 90;
  animation: tally-draw 450ms var(--ease) 750ms forwards;
}
@keyframes tally-fade { to { opacity: 1; } }
@keyframes tally-draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .tally .stroke { opacity: 1; animation: none; }
  .tally .five { stroke-dashoffset: 0; animation: none; }
}

/* Placeholders: dashed, mono, empty-state voice */
.ph {
  background: var(--card); border: 1px dashed var(--muted); border-radius: 4px;
  color: var(--muted); font-family: var(--mono); font-size: 12px; line-height: 1.7;
  text-align: center; display: flex; align-items: center; justify-content: center; padding: 26px;
}

/* Role switch */
.roles { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.roles button {
  font-family: var(--sans); font-size: 14px; font-weight: 500; line-height: 1.2;
  padding: 10px 16px; border-radius: 4px;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: color 150ms ease-out, border-color 150ms ease-out, background 150ms ease-out;
}
.roles button:hover { border-color: var(--muted); color: var(--body); }
.roles button.active { background: var(--oxford); color: var(--board-chalk); border-color: var(--oxford); }
.role-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
[data-role-panel] { display: none; }
[data-role-panel].active { display: block; }

/* Draft-until-discovery: a needs-review status */
.draft-tag, .stub-note {
  display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warning); border: 1px dashed rgba(154, 103, 0, 0.55); border-radius: 2px;
  padding: 3px 8px; margin-left: 8px; vertical-align: middle;
}
.stub-note { margin-left: 0; margin-bottom: 16px; }

/* Cards sit flat with borders; the only shadow belongs to overlays */
.pain, .agent, .wir .item, .wir-card, .step, .worry-box, form.stub, .table, .fact-list {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
}

/* Home: hero */
.hero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 44px; align-items: center; }
.hero-grid .ph { min-height: 260px; }

/* Home: pains */
.pains { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 26px; }
.pain { padding: 18px; font-size: 14px; line-height: 1.5; color: var(--body); }
.pain b { display: block; color: var(--strong); margin-bottom: 5px; font-size: 14.5px; }
.pain.headline-pain { border-left: 3px solid var(--marigold); }
.closer {
  margin-top: 24px; font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 19px; color: var(--strong);
}

/* Home: team */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.agent { padding: 20px; font-size: 14px; color: var(--body); line-height: 1.5; }
.agent b { display: block; color: var(--strong); margin-bottom: 5px; font-size: 15px; }
.agent.grow { border-style: dashed; color: var(--muted); }
.agent.grow b { color: var(--muted); }

/* Home: proof */
.proof-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 44px; align-items: start; margin-top: 8px; }
.wir { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wir .item { padding: 14px; font-size: 13.5px; color: var(--body); line-height: 1.5; }
.wir .item b { display: block; color: var(--strong); font-size: 13.5px; margin-bottom: 3px; }
.anchor-line {
  margin-top: 26px; font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 21px; color: var(--strong);
}

/* Board surface: the agents' territory. Blueprint grid, 48px hairline cells */
section.board {
  background-color: var(--oxford);
  background-image:
    repeating-linear-gradient(0deg, rgba(246, 241, 230, 0.05) 0, rgba(246, 241, 230, 0.05) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(246, 241, 230, 0.05) 0, rgba(246, 241, 230, 0.05) 1px, transparent 1px, transparent 48px);
  border-top: none;
}
section.board + section { border-top: none; }
.board .kicker { color: var(--marigold); }
.board h2 { color: var(--board-chalk); }
.board .sub { color: var(--board-muted); }
.board .pain, .board .agent, .board .wir .item, .board .wir-card, .board .step {
  background: rgba(246, 241, 230, 0.05); border-color: var(--board-line); color: var(--board-muted);
}
.board .wir .item b, .board .wir-card b, .board .closer, .board .anchor-line { color: var(--board-chalk); }

/* Closing band */
.band { text-align: center; padding: 96px 24px; }
.band .sub { margin: 12px auto 0; }
.band .privacy-line { font-size: 15px; color: var(--muted); margin-top: 8px; }
.results-strip { display: flex; gap: 14px; justify-content: center; margin: 30px auto 0; max-width: 860px; flex-wrap: wrap; }
.results-strip .ph { flex: 1; min-width: 220px; min-height: 90px; font-size: 11px; }

/* How it works: steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.step { padding: 22px; }
.step .n {
  font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--oxford);
  width: 26px; height: 26px; border-radius: 4px; border: 1px solid var(--oxford);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.step b { display: block; margin-bottom: 5px; font-size: 15.5px; color: var(--strong); }
.step .desc { color: var(--body); font-size: 14px; line-height: 1.5; }

/* How it works: day timeline */
.day-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 44px; align-items: start; margin-top: 8px; }
.day-grid .ph { min-height: 320px; }
.timeline { border-left: 1px solid var(--border); padding-left: 22px; }
.timeline .row { margin-bottom: 22px; }
.timeline .row:last-child { margin-bottom: 0; }
.timeline .row .time {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.timeline .row b { display: block; font-size: 16px; margin: 3px 0; color: var(--strong); }
.timeline .row .desc { color: var(--body); font-size: 14px; line-height: 1.5; }

/* How it works: org chart */
.org-grid { display: grid; grid-template-columns: 6fr 6fr; gap: 44px; align-items: center; margin-top: 8px; }
.org-grid .ph { min-height: 320px; }

/* Weekly Impact Review cards */
.wir-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 28px; }
.wir-card { padding: 18px; font-size: 13.5px; line-height: 1.5; color: var(--body); }
.wir-card b { display: block; color: var(--strong); margin-bottom: 5px; font-size: 14.5px; }

/* Privacy: plain list, tally-stroke bullets */
ul.plain { margin-top: 22px; list-style: none; max-width: 660px; }
ul.plain li { margin-bottom: 15px; padding-left: 26px; position: relative; font-size: 16px; color: var(--body); line-height: 1.55; }
ul.plain li::before {
  content: ""; position: absolute; left: 6px; top: 4px;
  width: 3px; height: 15px; border-radius: 1px;
  background: var(--oxford); transform: rotate(10deg);
}

/* Privacy: worry box */
.worry-box { padding: 28px; margin-top: 24px; max-width: 760px; }
.worry-box .q { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--oxford); margin-bottom: 12px; }
.worry-box .a { font-size: 16px; line-height: 1.6; color: var(--body); }

/* Privacy + About: tables */
.table, .fact-list { margin-top: 26px; overflow: hidden; }
.fact-list { max-width: 760px; }
.table .row, .fact-list .row { display: grid; grid-template-columns: 4fr 8fr; border-bottom: 1px solid var(--border); }
.table .row:last-child, .fact-list .row:last-child { border-bottom: none; }
.table .row:first-child .cell {
  font-family: var(--mono); font-weight: 500; color: var(--muted);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
}
.table .cell, .fact-list .cell { padding: 16px 20px; font-size: 15px; color: var(--body); line-height: 1.5; }
.table .cell:first-child, .fact-list .cell:first-child { font-weight: 700; color: var(--strong); border-right: 1px solid var(--border); }

/* Privacy: IT checklist */
.checklist { margin-top: 26px; max-width: 720px; }
.checklist .item { display: flex; gap: 16px; margin-bottom: 18px; align-items: flex-start; }
.checklist .box { flex: none; width: 22px; height: 22px; border: 1px solid var(--oxford); border-radius: 2px; margin-top: 2px; background: transparent; }
.checklist b { display: block; font-size: 16px; margin-bottom: 2px; color: var(--strong); }
.checklist .desc { color: var(--body); font-size: 14.5px; line-height: 1.5; }
.checklist-note { margin-top: 20px; font-size: 14px; color: var(--muted); }

/* About */
.founder-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 44px; align-items: center; }
.founder-grid .ph { min-height: 280px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 44px; align-items: start; }
form.stub { padding: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; color: var(--strong); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; padding: 11px 12px;
  border: 1px solid var(--border); border-radius: 2px;
  background: var(--page); color: var(--body);
  transition: border-color 150ms ease-out;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--marigold); outline: none; }
.field textarea { min-height: 84px; resize: vertical; }
.direct { padding-top: 6px; }
.direct .email { font-family: var(--mono); font-size: 17px; font-weight: 500; color: var(--oxford); }
.direct .note { font-size: 14.5px; color: var(--body); line-height: 1.55; margin-top: 8px; }
.divider { height: 1px; background: var(--border); margin: 28px 0; }

/* Footer */
footer { padding: 40px 0 64px; }
footer .cols { display: flex; gap: 48px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 34px; }
footer .cols span { display: block; font-size: 14px; color: var(--muted); line-height: 1.7; }
footer .cols b { color: var(--strong); }
/* Certification status: applied for, never claimed as granted */
footer .footer-mwbe {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

/* ---------------------------------------------------------------------------
   Merged from the Marigold design handoff, 2026-08-13.
   Dark treatment lives only on Board surfaces (guide section 06); the page
   system stays Chalk. Radii stay 2/4/8 per guide section 09, no pills.
   --------------------------------------------------------------------------- */

/* Pain cadence: the machine notes how often this costs you */
.pain .cadence {
  display: block; font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}

/* Phone mockup: the morning brief, waiting */
.phone {
  width: 100%; max-width: 300px; margin: 0 auto;
  border: 1px solid var(--oxford); border-radius: 8px; background: var(--page); overflow: hidden;
}
.phone .bar {
  display: flex; justify-content: space-between; padding: 10px 16px 4px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.phone .body { padding: 14px 16px 20px; }
.phone .status {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--warning); margin-bottom: 8px;
}
.phone .greet { font-family: var(--serif); font-weight: 500; font-size: 23px; line-height: 1.15; color: var(--strong); margin-bottom: 14px; }
.phone .lines { display: flex; flex-direction: column; gap: 8px; }
.phone .line {
  border: 1px solid var(--border); border-radius: 4px; padding: 10px 12px;
  font-family: var(--mono); font-size: 11.5px; line-height: 1.6; color: var(--strong);
}
.phone .line span { color: var(--muted); }
.phone-note {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-top: 12px;
}
/* The live caret: one of the two branded animations (guide section 07) */
.caret {
  display: inline-block; width: 6px; height: 12px; background: var(--marigold);
  margin-left: 4px; vertical-align: -2px; animation: caret-blink 1s step-end infinite;
}
@keyframes caret-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* The live pulse: the other branded animation, marks a running agent */
.pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--marigold); margin-right: 8px; animation: pulse-live 1.6s ease-in-out infinite;
}
@keyframes pulse-live { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

@media (prefers-reduced-motion: reduce) {
  .caret, .pulse { animation: none; }
}

/* Board: the agents' territory, full bleed */
.board .head { max-width: 640px; margin-bottom: 34px; }

/* Demo shell: a window onto the machine */
.demo {
  border: 1px solid var(--board-line); border-radius: 8px; overflow: hidden;
  background: rgba(12, 20, 37, 0.55);
}
.demo .titlebar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; border-bottom: 1px solid var(--board-line); flex-wrap: wrap; row-gap: 8px;
}
.demo .dots { display: flex; align-items: center; gap: 8px; }
.demo .dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.demo .session, .demo .live {
  font-family: var(--mono); font-size: 11.5px; color: var(--board-muted); margin: 0;
}
.demo .session { margin-left: 8px; }
.demo .live { color: var(--marigold); display: flex; align-items: center; }
.demo .cols { display: grid; grid-template-columns: 1.5fr 1fr; }
.demo .queue { padding: 22px; border-right: 1px solid var(--board-line); }
.demo .side { padding: 22px; display: flex; flex-direction: column; gap: 20px; }
.demo .label {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--board-muted); margin-bottom: 14px;
}
.demo .rows { display: flex; flex-direction: column; gap: 9px; }

/* Task row: queued, drafting, approved */
.task {
  display: flex; align-items: center; gap: 13px; padding: 12px 14px;
  border: 1px solid var(--board-line); border-radius: 4px; background: rgba(246, 241, 230, 0.03);
  opacity: 0.5; transition: opacity 300ms var(--ease), border-color 300ms var(--ease), background 300ms var(--ease);
}
.task.drafting { opacity: 1; border-color: var(--marigold); background: rgba(252, 163, 17, 0.06); }
.task.approved { opacity: 1; }
.task .check {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--oxford);
  border: 1px solid var(--board-line); background: transparent;
}
.task.approved .check { background: var(--marigold); border-color: var(--marigold); }
.task .what { flex: 1; }
.task .what b { display: block; font-size: 14.5px; font-weight: 700; color: var(--board-chalk); }
.task .what span { font-family: var(--mono); font-size: 11px; color: var(--board-muted); }
.task .state {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  padding: 4px 9px; border-radius: 2px; border: 1px solid var(--board-line);
  color: var(--board-muted); white-space: nowrap;
}
.task.drafting .state { color: var(--marigold); border-color: var(--marigold); }
.task.approved .state { color: var(--oxford); background: var(--marigold); border-color: var(--marigold); }

/* Honest empty slots: nothing invented, the blanks are the point */
.slot { border: 1px dashed var(--board-muted); border-radius: 4px; padding: 20px; }
.slot .figure { font-family: var(--mono); font-size: 34px; font-weight: 500; color: var(--board-muted); margin-bottom: 6px; }
.slot .quote { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.4; color: var(--board-muted); margin-bottom: 14px; }
.slot .pending {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--board-muted);
}
.friday { border: 1px solid var(--marigold); border-radius: 4px; padding: 16px; background: rgba(252, 163, 17, 0.05); }
.friday b {
  display: block; font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--marigold); margin-bottom: 7px;
}
.friday span { font-size: 13.5px; line-height: 1.5; color: var(--board-chalk); }
.demo-note {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--board-muted); text-align: center; margin-top: 20px;
}

/* Trust: numbered proof cards */
.trust-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 44px; align-items: start; margin-top: 8px; }
.trust-cards { display: flex; flex-direction: column; gap: 12px; }
.trust-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
}
.trust-card .n { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--marigold); min-width: 20px; }
.trust-card b { display: block; font-size: 15px; color: var(--strong); margin-bottom: 3px; }
.trust-card .desc { font-size: 14px; line-height: 1.5; color: var(--body); }
.answer { font-size: 17px; line-height: 1.6; color: var(--body); margin-top: 18px; max-width: 52ch; }
.answer + .answer { margin-top: 14px; }
.readmore { display: inline-block; margin-top: 22px; font-weight: 700; font-size: 15px; color: var(--strong); }

/* The anchor: what it stands against */
.compare { display: grid; grid-template-columns: 1fr 1fr; margin-top: 26px; text-align: left; }
.compare > div { padding: 22px 24px; }
.compare > div:first-child { border-right: 1px solid var(--border); }
.compare .head {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.compare > div:last-child .head { color: var(--strong); }
.compare ul { list-style: none; font-size: 15px; line-height: 1.9; color: var(--body); }
.compare > div:last-child ul { color: var(--strong); }
.compare-box { background: var(--card); border: 1px solid var(--border); border-radius: 4px; max-width: 620px; margin: 0 auto; }

@media (max-width: 760px) {
  section { padding: 56px 0; }
  .wrap { padding: 0 22px; }
  .hero-grid, .team, .proof-grid, .wir, .steps, .day-grid, .org-grid,
  .wir-cards, .founder-grid, .contact-grid, .trust-grid { grid-template-columns: 1fr; }
  .pains { grid-template-columns: 1fr; }
  .table .row, .fact-list .row { grid-template-columns: 1fr; }
  .table .cell:first-child, .fact-list .cell:first-child { border-right: none; border-bottom: 1px dashed var(--border); }
  nav { flex-wrap: wrap; gap: 12px; row-gap: 10px; }
  nav .cta { margin-left: 0; }
  nav .logo { flex-basis: 100%; }
  /* Stacked buttons should not each claim a full 26px of air */
  .btn + .btn { margin-top: 12px; }
  .demo .cols { grid-template-columns: 1fr; }
  .demo .queue { border-right: none; border-bottom: 1px solid var(--board-line); }
  .task { flex-wrap: wrap; row-gap: 8px; }
  .compare { grid-template-columns: 1fr; }
  .compare > div:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}
