/* ============================================================================
   Creator Platform — internal decision site
   ONE shared stylesheet. Dark, data-dense, restrained institutional tone.
   Palette: near-black grounds, warm off-white text, a single muted brass accent.
   No emojis. Serif display headings + clean-sans body.
   ============================================================================ */

:root {
  /* grounds */
  --bg:            #0d0f12;
  --bg-raised:     #14171c;
  --bg-sunken:     #0a0b0e;
  --panel:         #171b21;
  --panel-2:       #1c212a;
  --line:          #262c35;
  --line-strong:   #333b47;

  /* ink */
  --ink:           #e7e3d8;   /* warm off-white body */
  --ink-strong:    #f5f2e9;
  --ink-muted:     #9aa2ad;
  --ink-faint:     #6b7280;

  /* accent — muted brass */
  --accent:        #b79a5e;
  --accent-soft:   #cdb682;
  --accent-line:   rgba(183, 154, 94, 0.32);
  --accent-wash:   rgba(183, 154, 94, 0.08);

  /* evidence badge semantics */
  --ev-green:      #6fae7c;   /* answered  */
  --ev-amber:      #cba24a;   /* inferred  */
  --ev-red:        #c26b5e;   /* proxy-used */
  --ev-grey:       #6b7280;   /* not-applicable */

  /* newly-identified (coverage-gap review) — distinct cool accent, kept clear of brass + evidence hues */
  --new-id:        #7fa6c9;
  --new-id-line:   rgba(127, 166, 201, 0.34);
  --new-id-wash:   rgba(127, 166, 201, 0.10);

  /* risk heat (higher = worse) for score cells */
  --heat-good:     #6fae7c;
  --heat-mid:      #cba24a;
  --heat-bad:      #c26b5e;

  --radius:        10px;
  --radius-sm:     6px;
  --maxw:          1120px;

  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Inter", system-ui, sans-serif;
  --mono:  "SF Mono", "JetBrains Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* Prevent page-level horizontal scroll: clip any stray overflow (absolute tooltips,
   nowrap cells) at the viewport edge; wide tables scroll inside their own .table-scroll. */
html, body { overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent-soft); text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink-strong);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 2.2rem; }
h3 { font-size: 1.15rem; margin-top: 1.6rem; }
h4 { font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-muted); font-family: var(--sans); font-weight: 600; }

p { margin: 0 0 1rem; }
strong { color: var(--ink-strong); font-weight: 600; }
code, .mono { font-family: var(--mono); font-size: 0.86em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0; }

.small { font-size: 0.82rem; }
.muted { color: var(--ink-muted); }
.faint { color: var(--ink-faint); }

/* ---------- layout container ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 2.4rem 0; }
.section + .section { border-top: 1px solid var(--line); }

/* ============================================================================
   NAV BAR
   ============================================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 11, 14, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.02rem; font-weight: 600;
  color: var(--ink-strong);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__brand a { color: inherit; text-decoration: none; }
.nav__brand .tick { color: var(--accent); }
.nav__links {
  display: flex; gap: 0.35rem; flex-wrap: wrap;
  margin-left: auto;
  list-style: none; padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
}
.nav__links a:hover { color: var(--ink-strong); background: var(--bg-raised); }
.nav__links a[aria-current="page"] {
  color: var(--accent-soft);
  background: var(--accent-wash);
  box-shadow: inset 0 0 0 1px var(--accent-line);
}

/* ============================================================================
   PAGE HEADER
   ============================================================================ */
.page-header {
  padding: 2.6rem 0 1.8rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(183,154,94,0.05), transparent 60%),
    var(--bg-sunken);
}
.page-header .eyebrow {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 0.8rem;
}
.page-header h1 { margin-bottom: 0.35rem; max-width: 30ch; }
.page-header .lede {
  color: var(--ink-muted); font-size: 1.05rem; max-width: 62ch; margin: 0.6rem 0 0;
}
.breadcrumb { font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb span { color: var(--ink-faint); }

/* layer chips in the header */
.layer-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 0.2rem 0.7rem;
  margin-top: 1rem;
}
.layer-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.layer-tag--l1 .dot { background: var(--accent-soft); }
.layer-tag--l2 .dot { background: var(--ev-green); }

/* ============================================================================
   EXEC-SUMMARY CALLOUT
   ============================================================================ */
.exec {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  margin: 1.8rem 0;
}
.exec__label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 0.7rem;
}
.exec p:last-child { margin-bottom: 0; }
.exec p { font-size: 1.04rem; color: var(--ink); }
.exec .kicker { font-family: var(--serif); font-size: 1.15rem; color: var(--ink-strong); }

/* key/value stat row inside exec or detailed sections */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin: 1.4rem 0;
}
.stat { background: var(--panel); padding: 0.9rem 1.1rem; }
.stat__k { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.stat__v { font-family: var(--serif); font-size: 1.35rem; color: var(--ink-strong); margin-top: 0.2rem; }
.stat__v small { font-family: var(--sans); font-size: 0.7rem; color: var(--ink-muted); }

/* ============================================================================
   DETAILED-SUMMARY SECTIONS
   ============================================================================ */
.detail { margin: 1.8rem 0; }
.detail > h2 { display: flex; align-items: baseline; gap: 0.6rem; }
.detail__body { max-width: 74ch; }
.detail__body p, .detail__body li { color: var(--ink); }
.detail__body ul { padding-left: 1.2rem; }
.detail__body li { margin-bottom: 0.5rem; }

.callout-note {
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink-faint);
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem; margin: 1.2rem 0;
  font-size: 0.92rem; color: var(--ink-muted);
}
.callout-note strong { color: var(--ink); }
.callout-warn { border-left-color: var(--ev-red); }
.callout-warn strong { color: var(--ev-red); }

/* card grids for structures / mechanisms indexes */
.card-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 1.6rem 0;
}
.card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  color: inherit; text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.card:hover { border-color: var(--accent-line); background: var(--panel-2); transform: translateY(-1px); text-decoration: none; }
.card__idx { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.08em; }
.card__title { font-family: var(--serif); font-size: 1.08rem; color: var(--ink-strong); margin: 0.35rem 0 0.4rem; }
.card__meta { font-size: 0.82rem; color: var(--ink-muted); }

/* ============================================================================
   ASSESSMENT TABLE (9-axis scores)
   ============================================================================ */
.table-scroll { overflow-x: auto; margin: 1.4rem 0; border: 1px solid var(--line); border-radius: var(--radius); }
table.assessment, table.matrix {
  width: 100%; border-collapse: collapse; font-size: 0.86rem;
  background: var(--panel);
}
table.assessment th, table.assessment td,
table.matrix th, table.matrix td {
  padding: 0.6rem 0.7rem; text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.assessment thead th, table.matrix thead th {
  position: sticky; top: 0;
  background: var(--bg-sunken);
  color: var(--ink-muted);
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
}
table.matrix tbody tr:hover, table.assessment tbody tr:hover { background: var(--bg-raised); }
table.assessment td:first-child, table.matrix td:first-child { white-space: normal; min-width: 15rem; }
.matrix a { color: var(--ink-strong); }
.matrix a:hover { color: var(--accent); }

.axis-name { color: var(--ink); }
.axis-dir { font-size: 0.68rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.05em; }
.rationale-cell { white-space: normal !important; color: var(--ink-muted); font-size: 0.84rem; min-width: 22rem; }

/* score chip */
.score {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.7rem; height: 1.7rem; padding: 0 0.35rem;
  border-radius: var(--radius-sm);
  font-family: var(--mono); font-weight: 600; font-size: 0.82rem;
  color: var(--bg);
}
.score.s1 { background: #384a3d; color: var(--ink); }
.score.s2 { background: #4c5a3c; color: var(--ink); }
.score.s3 { background: #5f5636; color: var(--ink-strong); }
.score.s4 { background: #6b4a37; color: var(--ink-strong); }
.score.s5 { background: #7a3f37; color: var(--ink-strong); }
/* good-direction axes read inverse heat; use .invert on the cell wrapper */
td.good .score.s5 { background: #2f5a3c; color: var(--ink-strong); }
td.good .score.s4 { background: #3d5a3c; }
td.good .score.s3 { background: #5f5636; }
td.good .score.s2 { background: #6b4a37; color: var(--ink-strong); }
td.good .score.s1 { background: #6b4237; color: var(--ink-strong); }

.total-cell { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-strong); text-align: right; }

/* centered score / badge columns in the ranked matrix */
table.matrix td.ta-c, table.matrix th.ta-c,
table.assessment td.ta-c, table.assessment th.ta-c { text-align: center; }
table.matrix th.ta-c .term, table.matrix th.ta-c .term--link { display: inline-block; }
/* spine-highlighted continue card */
.card.is-spine-card { box-shadow: inset 3px 0 0 var(--accent); }
tr.is-antipattern td { color: var(--ev-red); }
tr.is-antipattern .total-cell { color: var(--ev-red); }
tr.is-spine td:first-child { box-shadow: inset 3px 0 0 var(--accent); }

.weights-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.6rem; }

/* ============================================================================
   DRIL EVIDENCE BADGES
   green=answered, amber=inferred, red=proxy-used, grey=not-applicable
   ============================================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 0.18rem 0.55rem; border-radius: 999px;
  border: 1px solid transparent; font-weight: 600;
  white-space: nowrap;
}
.badge .swatch { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.badge--answered       { color: var(--ev-green); background: rgba(111,174,124,0.10); border-color: rgba(111,174,124,0.32); }
.badge--answered .swatch { background: var(--ev-green); }
.badge--inferred       { color: var(--ev-amber); background: rgba(203,162,74,0.10); border-color: rgba(203,162,74,0.32); }
.badge--inferred .swatch { background: var(--ev-amber); }
.badge--proxy-used     { color: var(--ev-red); background: rgba(194,107,94,0.10); border-color: rgba(194,107,94,0.32); }
.badge--proxy-used .swatch { background: var(--ev-red); }
.badge--not-applicable { color: var(--ev-grey); background: rgba(107,114,128,0.10); border-color: rgba(107,114,128,0.30); }
.badge--not-applicable .swatch { background: var(--ev-grey); }

.badge-legend { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 0.8rem 0 0; }

/* evidence row block (used on mechanism pages) */
.evidence-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 0.9rem; margin: 1.2rem 0;
}
.evidence-card {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--panel); padding: 0.9rem 1rem;
}
.evidence-card__axis { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.4rem; }
.evidence-card__gap { font-size: 0.84rem; color: var(--ink-muted); margin-top: 0.6rem; }

/* ============================================================================
   SOURCE-CITATION LINKS
   ============================================================================ */
.cites { list-style: none; padding: 0; margin: 1rem 0; }
.cites li {
  border-left: 2px solid var(--accent-line);
  padding: 0.35rem 0 0.35rem 0.9rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem; color: var(--ink-muted);
}
.cites li .cite-hd { color: var(--ink); display: block; }
.cite-ref {
  font-family: var(--mono); font-size: 0.76rem;
  color: var(--accent-soft);
  border: 1px solid var(--accent-line); border-radius: var(--radius-sm);
  padding: 0.05rem 0.4rem; white-space: nowrap;
}
.source-table th { text-transform: none; }
.source-table td { white-space: normal; }
.source-status {
  font-family: var(--mono); font-size: 0.72rem; padding: 0.1rem 0.45rem;
  border-radius: var(--radius-sm); border: 1px solid var(--line-strong); color: var(--ink-muted);
}
.source-status.primary { color: var(--ev-green); border-color: rgba(111,174,124,0.3); }
.source-status.cited-only { color: var(--ev-amber); border-color: rgba(203,162,74,0.3); }

/* ============================================================================
   TWO-LAYER MAP
   ============================================================================ */
.layermap {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(183,154,94,0.06), transparent 55%),
    var(--bg-sunken);
  padding: 1.6rem;
  margin: 1.8rem 0;
}
.layermap__layer { margin-bottom: 1.4rem; }
.layermap__layer:last-child { margin-bottom: 0; }
.layermap__head {
  display: flex; align-items: baseline; gap: 0.7rem;
  margin-bottom: 0.9rem; padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--line-strong);
}
.layermap__num {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--bg); background: var(--accent); border-radius: var(--radius-sm);
  padding: 0.1rem 0.5rem; font-weight: 700;
}
.layermap__title { font-family: var(--serif); font-size: 1.12rem; color: var(--ink-strong); }
.layermap__sub { font-size: 0.82rem; color: var(--ink-muted); margin-left: auto; }
.layermap__row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.layermap__node {
  flex: 1 1 150px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem; text-decoration: none; color: inherit;
  transition: border-color .15s ease, background .15s ease;
}
.layermap__node:hover { border-color: var(--accent-line); background: var(--panel-2); text-decoration: none; }
.layermap__node .n-idx { font-family: var(--mono); font-size: 0.68rem; color: var(--accent); }
.layermap__node .n-name { display: block; font-size: 0.88rem; color: var(--ink); margin-top: 0.2rem; }
.layermap__node.is-anti { border-color: rgba(194,107,94,0.4); }
.layermap__node.is-anti .n-name { color: var(--ev-red); }
.layermap__connector {
  text-align: center; color: var(--ink-faint); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0.4rem 0;
}
.layermap__connector::before { content: "↓ feeds ↓"; }

/* ============================================================================
   CONFIDENTIALITY FOOTER
   ============================================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-sunken);
  margin-top: 3rem;
  padding: 2rem 0 2.6rem;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: baseline; }
.site-footer .conf {
  font-size: 0.8rem; color: var(--ink-muted); letter-spacing: 0.02em; max-width: 60ch;
}
.site-footer .conf strong { color: var(--accent-soft); }
.site-footer .foot-links { margin-left: auto; display: flex; gap: 1rem; flex-wrap: wrap; }
.site-footer .foot-links a { font-size: 0.8rem; color: var(--ink-faint); }
.site-footer .stamp { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-faint); }

/* ============================================================================
   COLUMN-DEFINITION TOOLTIPS
   A dotted-underline term that reveals its definition on hover/focus.
   Usage:
     <span class="term" tabindex="0">
       SPV alignment<span class="term__def">does it advance the deal engine…</span>
     </span>
   Or, when the definition lives on the methodology page, wrap a link instead:
     <a class="term term--link" href="../methodology/#spv-alignment">SPV alignment
       <span class="term__def">…</span></a>
   The term is keyboard-focusable (tabindex="0") so the definition is reachable
   without a pointer.
   ============================================================================ */
.term {
  position: relative;
  border-bottom: 1px dotted var(--accent-line);
  cursor: help;
  color: inherit;
  text-decoration: none;
  outline: none;
}
.term--link { border-bottom-color: var(--accent); }
.term:focus-visible { outline: 2px solid var(--accent-line); outline-offset: 2px; border-radius: 2px; }

.term__def {
  position: absolute;
  left: 0; bottom: calc(100% + 8px);
  z-index: 60;
  width: max-content; max-width: min(320px, 90vw);
  background: var(--panel-2);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  padding: 0.7rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .13s ease, transform .13s ease;
}
.term__def::before {
  content: "";
  position: absolute; top: 100%; left: 14px;
  border: 6px solid transparent;
  border-top-color: var(--line-strong);
}
.term:hover .term__def,
.term:focus .term__def,
.term:focus-within .term__def {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
/* flip to below when the term sits near the top of the viewport */
.term--below .term__def { bottom: auto; top: calc(100% + 8px); }
.term--below .term__def::before { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: var(--line-strong); }
/* right-align the panel for terms living at the right edge of a table */
.term--end .term__def { left: auto; right: 0; }
.term--end .term__def::before { left: auto; right: 14px; }

/* header cells that are themselves tooltip terms + link to methodology */
th .term, th .term--link { color: var(--ink-muted); }
th .term:hover, th .term--link:hover { color: var(--accent-soft); }

/* ============================================================================
   NEWLY-IDENTIFIED BADGE (coverage-gap review) — distinct color
   ============================================================================ */
.badge--new {
  color: var(--new-id);
  background: var(--new-id-wash);
  border-color: var(--new-id-line);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
}
.badge--new .swatch { background: var(--new-id); }

/* inline flag for a newly-identified row/card/node */
.new-flag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--new-id); font-weight: 600;
  border: 1px solid var(--new-id-line); border-radius: 999px;
  padding: 0.08rem 0.5rem; vertical-align: middle;
}
.new-flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--new-id); }

tr.is-new td:first-child { box-shadow: inset 3px 0 0 var(--new-id); }
.card.is-new { border-color: var(--new-id-line); }
.card.is-new .card__idx { color: var(--new-id); }
.layermap__node.is-new { border-color: var(--new-id-line); }
.layermap__node.is-new .n-idx { color: var(--new-id); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 760px) {
  body { font-size: 15px; }
  .nav__inner { padding: 0.6rem 1rem; gap: 0.8rem; }
  .nav__links { width: 100%; margin-left: 0; }
  .wrap { padding: 0 1.1rem; }
  .layermap__row { flex-direction: column; }
  .layermap__sub { margin-left: 0; width: 100%; }
  .site-footer .foot-links { margin-left: 0; width: 100%; }
  h1 { font-size: 1.55rem; }
}

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

/* print — for internal PDF export */
@media print {
  .nav { position: static; }
  body { background: #fff; color: #111; }
  .site-footer .conf strong { color: #000; }
}
