/* Sourcive. Follows the Courage Horizon "engineered light" design language:
   near-white ground, deep navy, one amber signal, Geist everywhere. */

@font-face {
  font-family: 'Geist Variable';
  src: url('/static/fonts/geist-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono Variable';
  src: url('/static/fonts/geist-mono-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f8f8;
  --surface: #ffffff;
  --ink: #0f1e33;
  --muted: #57616f;
  --line: #e2e4e6;

  --navy: #0a1728;
  --navy-ink: #f4f6f8;
  --navy-muted: rgba(244, 246, 248, 0.66);
  --navy-line: rgba(244, 246, 248, 0.16);

  --accent: #a55e12;
  --accent-bright: #e0a04b;

  --font-sans: 'Geist Variable', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono Variable', ui-monospace, 'Cascadia Mono', monospace;

  --measure: 44rem;
  --container: 72rem;
  --radius: 8px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.1rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1.05em;
}

a {
  color: inherit;
}

::selection {
  background: color-mix(in srgb, var(--accent-bright) 35%, transparent);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.label::before {
  content: '';
  display: inline-block;
  width: 1.4rem;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.7rem;
}

.horizon {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.button {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 0.72rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 140ms ease;
}

.button:hover {
  background: #1d3050;
}

.button.on-dark {
  background: var(--navy-ink);
  color: var(--navy);
}

.button.on-dark:hover {
  background: #ffffff;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15em;
  transition: border-color 140ms ease;
}

.text-link:hover {
  border-color: var(--accent);
}

.text-link.on-dark {
  color: var(--navy-ink);
  border-color: var(--navy-line);
}

.text-link.on-dark:hover {
  border-color: var(--accent-bright);
}

.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
}

.dark {
  background: var(--navy);
  color: var(--navy-ink);
}

.dark .label {
  color: var(--navy-muted);
}

.dark .label::before {
  background: var(--accent-bright);
}

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

.dark :focus-visible {
  outline-color: var(--accent-bright);
}

/* Site chrome */

header.site {
  padding: 1.4rem 0;
}

header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.site .wordmark {
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  text-decoration: none;
}

footer.site {
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--navy-muted);
}

footer.site a {
  text-decoration: none;
  border-bottom: 1px solid var(--navy-line);
}

/* Directory badges, landing page only. The badge is a fixed 182x43 SVG served
   by the directory, scaled down and dimmed until hover so it reads as a
   footnote rather than an advert. The underline rule above would draw a line
   under the image, so it is cleared here. */
.directory-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  line-height: 0;
}

.directory-badges a {
  display: inline-block;
  border-bottom: none;
  opacity: 0.7;
  transition: opacity 120ms ease;
}

.directory-badges a:hover {
  opacity: 1;
}

.directory-badges img {
  display: block;
  width: 140px;
  height: auto;
}

/* Hero */

.hero {
  padding: 4.5rem 0 5rem;
}

.hero .lede {
  max-width: var(--measure);
  font-size: 1.15rem;
  color: var(--navy-muted);
}

/* Audit form */

.audit-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  max-width: 30rem;
  margin-top: 2rem;
}

/* The landing form is one short URL field, so 30rem is right there. The
   profile correction is six fields of real prose, and at 30rem a description
   wraps every four or five words. */
.audit-form.wide {
  max-width: 44rem;
}

.audit-form .field {
  margin-bottom: 1rem;
}

.audit-form label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.audit-form input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
}

.audit-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.audit-form .button {
  width: 100%;
  text-align: center;
}

.audit-form .price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
}

/* Feature grid */

.features {
  padding: 4rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-grid .card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* About and FAQ: explanatory copy below the form and the pricing on the
   landing page. Measure-limited like .prose-page so paragraphs stay readable. */

.about,
.faq {
  padding: 3.5rem 0;
}

.faq {
  border-top: 1px solid var(--line);
}

/* Constrain the text, not the container: narrowing .container would centre
   these sections and break the left edge shared with the feature grid. */
.about p,
.faq dt,
.faq dd {
  max-width: var(--measure);
}

.about h3 {
  margin-top: 2rem;
}

.faq dt {
  font-weight: 600;
  margin-top: 1.6rem;
}

.faq dd {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

/* Status / progress page */

.status-page {
  padding: 5rem 0;
  min-height: 60vh;
}

.status-page .card {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

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

.muted-on-dark {
  color: var(--navy-muted);
}

.small {
  font-size: 0.85rem;
}

.mock-banner {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.45rem 1rem;
}

header.site nav a {
  margin-left: 1.2rem;
}

.spinner {
  width: 26px;
  height: 26px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.stage-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.stage-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

.stage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.stage-list li.active {
  color: var(--ink);
  font-weight: 500;
}

.stage-list li.active::before {
  background: var(--accent);
}

.stage-list li.complete {
  color: var(--ink);
}

.stage-list li.complete::before {
  background: var(--ink);
}

/* The profile correction form. Textareas inherit the input styling rather than
   redefining it, so the two never drift apart visually. */
.audit-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: inherit;
  resize: vertical;
}

.audit-form .field-note {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
}

.audit-form .choice {
  margin-bottom: 0.9rem;
}

/* Flex, so the control sits beside its text. The generic .audit-form input
   rule above gives every input full width, padding and a border, which on a
   radio renders it as a lone box on its own line above the label it belongs
   to; the resets here are what undo that. */
.audit-form .choice label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: inherit;
  line-height: 1.5;
}

.audit-form .choice input[type="radio"] {
  width: auto;
  flex: none;
  margin: 0.3rem 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  accent-color: var(--navy, #16213a);
}

.error-card {
  border-color: var(--accent);
}

/* Sits under the stage list, separated by a rule, because it is guidance about
   the wait rather than another step in it. */
.wait-note {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  max-width: 34rem;
}

.provider-cycle {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.8rem 0 0.2rem;
}

.provider-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.45;
  transition: opacity 200ms ease, color 200ms ease;
}

.provider-name.lit {
  opacity: 1;
  color: var(--accent);
  font-weight: 600;
}

.inline-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.inline-form input {
  flex: 1 1 14rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
}

.inline-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Report */

.report-hero {
  padding: 3.5rem 0 3.5rem;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.score-dial {
  flex: 0 0 auto;
  width: 9.5rem;
  height: 9.5rem;
  border: 3px solid var(--accent-bright);
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-top: 2.9rem;
}

.score-number {
  font-size: 3.2rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.03em;
}

.score-max {
  color: var(--navy-muted);
  font-size: 1rem;
  margin-left: 0.2rem;
}

.score-summary {
  flex: 1 1 24rem;
}

.score-summary h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.report-body {
  padding: 3rem 0 4rem;
}

.report-section {
  margin: 3rem 0;
}

/* No width cap on .quote-card: it is full width like every other card on the
   report. It was capped at the reading measure, which is better typography in
   isolation and looked like a rendering fault sitting between two full-width
   cards. The quote is short enough that the longer line costs little. */
.quote-card blockquote {
  margin: 0.6rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  font-size: 1.02rem;
}

.quote-question {
  font-weight: 550;
  margin-bottom: 0.2rem;
}

.sov-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 38rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sov-table th,
.sov-table td {
  text-align: left;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.sov-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.sov-table tr.is-company td {
  font-weight: 600;
}

.sov-table .bar {
  display: inline-block;
  height: 0.7rem;
  background: var(--accent-bright);
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.sov-table tr.is-company .bar {
  background: var(--navy);
}

.you-chip {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--navy);
  color: var(--navy-ink);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
  margin-left: 0.4rem;
}

.locked {
  position: relative;
  max-width: 44rem;
}

.blurred {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.lock-note {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lock-note span {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.7rem 1.1rem;
  max-width: 26rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ink);
  line-height: 1.45;
}

.question-card {
  margin-bottom: 1.2rem;
}

.question-text {
  font-weight: 550;
  margin-bottom: 1rem;
}

.qtype {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
  margin-right: 0.5rem;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.2rem;
}

.answer-provider {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.answer-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* The answer is markdown rendered to real elements, so these are the model's
   own headings, lists and emphasis, kept quieter than the report's own
   headings: this is quoted material, not our voice. */
.answer-text > :first-child {
  margin-top: 0;
}

.answer-text > :last-child {
  margin-bottom: 0;
}

.answer-text p {
  margin: 0 0 0.7rem;
}

.answer-text h4 {
  margin: 1rem 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.answer-text ul,
.answer-text ol {
  margin: 0 0 0.7rem;
  padding-left: 1.2rem;
}

.answer-text li {
  margin-bottom: 0.3rem;
}

.answer-text strong {
  color: var(--ink);
  font-weight: 600;
}

.answer-text code {
  font-family: var(--font-mono);
  font-size: 0.82em;
}

/* Applied by script, never in the markup: without JavaScript there is no
   button to undo it, and a permanently clipped answer would be worse than a
   long one. A height cap rather than line-clamp, which only works on a box of
   inline content and does nothing to a stack of paragraphs and lists. */
.answer-text.is-clamped {
  position: relative;
  max-height: 11rem;
  overflow: hidden;
}

.answer-text.is-clamped::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.6rem;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}

.answer-more {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.82rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.answer-more:hover {
  color: var(--accent);
}

.chip {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
  padding: 0.12rem 0.4rem;
  margin-left: 0.45rem;
  vertical-align: middle;
}

.chip-good { background: #e5efe4; color: #1e5e2e; }
.chip-bad { background: #f4e4e4; color: #8a2a2a; }
.chip-warn { background: #f2ecdc; color: #7a5b16; }

.check-list {
  list-style: none;
  padding: 0;
  max-width: 38rem;
}

.check-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.6rem 1rem 0.6rem 2.3rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.95rem;
}

.check-list li::before {
  position: absolute;
  left: 0.9rem;
  font-weight: 700;
}

.check-list li.ok::before { content: '✓'; color: #1e5e2e; }
.check-list li.bad::before { content: '✕'; color: #8a2a2a; }

/* Ranked-by-impact checklist: no pass/fail state, so the number replaces
   the tick/cross rather than reusing .check-list's ok/bad markers. */
.check-list.numbered {
  counter-reset: checklist;
  /* Unlike .check-list's other uses (short ok/bad lines in a narrow card),
     this is the fix pack's headline list inside a full-width step card, so
     it should fill it rather than inherit the 38rem cap. */
  max-width: none;
}

.check-list.numbered li {
  padding-left: 2.6rem;
}

.check-list.numbered li::before {
  counter-increment: checklist;
  content: counter(checklist);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* A short, collapsed explanation above a downloadable fix pack file. */
.file-note {
  margin-bottom: 0.6rem;
}

.file-note > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.file-note > summary::-webkit-details-marker { display: none; }

.file-note > summary::before {
  content: '+ ';
}

.file-note[open] > summary::before {
  content: '- ';
}

.file-note p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 38rem;
}

/* Question-by-question, grouped by type */

.qgroup {
  margin: 0 0 2.6rem;
}

.qgroup-head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.qgroup-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.qgroup-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.q-drawer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.q-drawer > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.q-drawer > summary::-webkit-details-marker { display: none; }

.q-drawer > summary::before {
  content: '';
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 0.2rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg);
  transition: transform 140ms ease;
}

.q-drawer[open] > summary::before {
  transform: rotate(45deg);
}

.q-summary-text {
  font-weight: 550;
  font-size: 0.98rem;
  flex: 1 1 20rem;
  min-width: 0;
}

.q-status-row {
  display: flex;
  gap: 0.35rem;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

/* Full provider names, not initials - matches the labels used in the
   expanded answer grid directly below, and needs no separate legend. */
.p-dot {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 3px;
  padding: 0.18rem 0.4rem;
  line-height: 1;
  white-space: nowrap;
}

.p-dot.good { background: #e5efe4; color: #1e5e2e; }
.p-dot.bad { background: #f4e4e4; color: #8a2a2a; }
.p-dot.warn { background: #f2ecdc; color: #7a5b16; }

.q-drawer-body {
  padding: 0 1.2rem 1.3rem;
  border-top: 1px solid var(--line);
}

.q-drawer-body .answer-grid {
  margin-top: 1.2rem;
}

.qgroup-takeaway {
  margin: 1rem 0 0;
  padding: 0.85rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent-bright) 8%, var(--surface));
  font-size: 0.92rem;
  max-width: 44rem;
}

.qgroup-takeaway .label-inline {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

.unlock-card {
  border: 2px solid var(--accent);
  max-width: 44rem;
  margin: 3rem 0;
}

.unlock-card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.unlock-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.unlock-card form {
  margin: 1.2rem 0 0.5rem;
}

/* Homepage copy: current, as read, against the suggested rewrite */

.copy-diff {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1rem;
}

.copy-diff-section {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.copy-diff-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.2rem;
}

.copy-diff-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a2a2a;
  margin: 0 0 0.3rem;
}

.copy-diff-label.suggested {
  color: #1e5e2e;
}

.copy-diff-text {
  font-size: 0.92rem;
  margin: 0;
}

pre.doc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  overflow-x: auto;
  white-space: pre-wrap;
}

.report-foot {
  margin-top: 3rem;
  font-size: 0.88rem;
  max-width: 44rem;
}

/* Prose pages (methodology, privacy) */

.prose-page {
  padding: 4rem 0 5rem;
}

.prose-page .container {
  max-width: 46rem;
}

.prose-page h2 {
  margin-top: 2.2rem;
  font-size: 1.3rem;
}

.prose-page ul {
  padding-left: 1.2rem;
}
