/* ═══════════════════════════════════════════════════════════════
   Human Provenance in Film: shared design system
   Inner pages: classic Swiss / Müller-Brockmann modular grid.
   Vocabulary: one typeface, a 12-column grid, box outlines, and
   rules of varying weight. No uppercase. No filled panels.
═══════════════════════════════════════════════════════════════ */

:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --grey:   #0a0a0a;
  --muted:  #0a0a0a;
  --body:   #0a0a0a;
  --line:   #0a0a0a;   /* all rules are black */
  --code:   #efece6;   /* code / schema panel grey */
  --tier-grey: #8c8c8c;
  --accent: #c8000a;
  --sans:   'Neue Haas Grotesk Display Pro', 'NeueHaasGroteskDisplayPro', 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --px:     clamp(1.5rem, 5vw, 6rem);
  --max:    1320px;
  --gut:    clamp(1.1rem, 2.2vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent); font-weight: 700; text-decoration: none; }
a:hover { opacity: .6; }
strong, b { font-weight: 600; }
em { font-style: italic; }
sup { font-size: .6em; vertical-align: super; line-height: 0; }

.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--black); color: var(--white); font-size: .8rem; padding: .7rem 1.1rem; z-index: 999; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* container + full-bleed rules */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--px); padding-right: var(--px); }
.rule-3 { border: none; border-top: 3px solid var(--black); }
.rule-2 { border: none; border-top: 2px solid var(--black); }
.rule-1 { border: none; border-top: 1px solid var(--black); }
.rule-hair { border: none; border-top: 1px solid var(--line); }

/* ═══════════════ HEADER (matches the homepage exactly) ═══════════════
   Scoped to #site-header so it never affects the .page-hero <header>. */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--white); transition: transform .45s cubic-bezier(.4,0,.2,1); }
#site-header.hidden { transform: translateY(-100%); }
#site-header .nav-inner { padding: 1.85rem var(--px); display: flex; align-items: center; justify-content: space-between; transition: padding .55s cubic-bezier(.4,0,.2,1); }
#site-header.scrolled .nav-inner { padding: 1.1rem var(--px); }
.nav-brand { display: flex; align-items: center; gap: .7rem; color: var(--black); }
.nav-brand:hover { opacity: 1; }
.nav-squares { display: flex; flex-direction: column; gap: 3px; }
.nav-sq { display: block; width: 10px; height: 10px; background: var(--accent); }
.nav-name { font-size: 1.05rem; font-weight: 600; letter-spacing: .01em; color: var(--black); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: 1rem; font-weight: 700; color: var(--black); transition: opacity .2s ease; }
.nav-links a:hover { opacity: .4; }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta { color: var(--accent) !important; }
.nav-cta::after, .more-link::after, .arrow-link::after, .btn-under::after,
.update-link::after, .press-link::after, .consult-banner-link::after,
.sign-cta::after, .btn-sign::after, .ext-link::after { content: ' \2197'; display: inline-block; transition: transform .2s ease; }
.nav-cta:hover::after, .more-link:hover::after, .arrow-link:hover::after, .btn-under:hover::after,
.update-link:hover::after, .press-link:hover::after, .consult-banner-link:hover::after,
.sign-cta:hover::after, .btn-sign:hover::after, .ext-link:hover::after { transform: translate(3px,-3px); }
.nav-toggle { display: none; flex-direction: column; justify-content: space-between; width: 22px; height: 16px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--black); transition: transform .22s ease, opacity .15s ease; }
.nav-toggle.open span:nth-child(1), .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2), .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3), .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 769px) { .nav-home { display: none; } }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--black); padding: 1.5rem var(--px); flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .nav-links.open { display: flex; }
}
.header-pad { height: 5.7rem; }

/* ═══════════════ TYPE (matched to the homepage: 700 headings, 500 body) ═══ */
h1 { font-weight: 700; line-height: .91; letter-spacing: -.045em; }
h2 { font-weight: 700; line-height: .93; letter-spacing: -.042em; }
h3 { font-weight: 700; letter-spacing: -.02em; }

/* a small section marker: red square + sentence-case label (never caps) */
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--black); margin-bottom: 1.4rem; }
.eyebrow::before { content: ''; width: 9px; height: 9px; background: var(--accent); flex-shrink: 0; }

.more-link, .arrow-link { font-size: .9rem; font-weight: 600; color: var(--accent); display: inline-block; }

/* ── BUTTONS (outlines / solid, no caps) ── */
.btn-primary { font-size: .9rem; font-weight: 600; background: var(--black); color: var(--white) !important; padding: .8rem 1.5rem; display: inline-block; transition: background .15s; }
.btn-primary:hover { background: var(--accent); opacity: 1; }
.btn-secondary { font-size: .9rem; font-weight: 600; color: var(--black) !important; border: 1px solid var(--black); padding: calc(.8rem - 1px) 1.5rem; display: inline-block; transition: background .15s, color .15s; }
.btn-secondary:hover { background: var(--black); color: var(--white) !important; opacity: 1; }
.btn-under { font-size: .9rem; font-weight: 600; color: var(--accent); }
.btn-print { font-size: .82rem; font-weight: 600; color: var(--black) !important; background: var(--white); border: 1px solid var(--black); padding: .55rem 1rem; cursor: pointer; display: inline-flex; align-items: center; gap: .5rem; transition: background .15s; }
.btn-print:hover { background: var(--black); color: var(--white) !important; }
.btn-print:hover svg path { stroke: var(--white); }
.btn-print svg path { stroke: currentColor; }

/* ═══════════════ MODULAR GRID ═══════════════
   The whole document is a 12-column grid. Section headings sit in
   the left band (cols 1–3); body content sits in cols 5–12, leaving
   one empty column as breathing space. Sections are divided by rules. */
.doc { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }

.page-hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
/* when the banner sits directly in <main> (not inside .doc), pad + centre it
   so it aligns with the nav and the rest of the page content */
main > .page-hero { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: var(--px); padding-right: var(--px); }
.page-hero h1 { font-size: clamp(2.75rem, 6vw, 5rem); max-width: 16ch; }
.page-hero-sub { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 500; color: var(--body); line-height: 1.7; max-width: 56ch; margin-top: 1.75rem; }

/* Sections are separated by whitespace and the left-column heading.
   No full-width dividing rules. */
.doc-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  padding: clamp(2rem, 3.5vw, 3rem) 0;
}
.doc-section > h2 { grid-column: 1 / 4; align-self: start; font-size: clamp(1.4rem, 2vw, 1.85rem); }
/* left-rail head: headline + a sub-header intro beneath it (homepage pattern) */
.doc-section > .doc-head { grid-column: 1 / 4; align-self: start; }
.doc-section > .doc-head h2 { font-size: clamp(1.4rem, 2vw, 1.85rem); }
.doc-intro { font-size: .95rem; color: var(--body); font-weight: 500; line-height: 1.55; margin-top: .9rem; }
.doc-section > .doc-body { grid-column: 5 / 13; }
.doc-section.wide > .doc-body { grid-column: 1 / 13; }
.doc-section > h2 + .doc-body { margin-top: 0; }

.doc-body > * + * { margin-top: 1.1rem; }
.doc-body p { font-size: 1rem; font-weight: 500; color: var(--body); line-height: 1.75; }
.doc-body h3 { font-size: 1.05rem; margin-top: 2rem; }
.doc-body h3 + * { margin-top: .65rem; }
.doc-body a { color: var(--accent); font-weight: 700; }
.doc-body strong { color: var(--black); }
code { font-family: 'SFMono-Regular','Consolas','Liberation Mono',monospace; font-size: .85em; color: var(--black); background: var(--code); padding: .05rem .35rem; }

@media (max-width: 860px) {
  .doc-section { grid-template-columns: minmax(0, 1fr); row-gap: 1.1rem; }
  .doc-section > h2 { grid-column: 1; }
  .doc-section > .doc-head { grid-column: 1; }
  .doc-section > .doc-body { grid-column: 1; min-width: 0; }
}

/* ── DOC HEADER (taxonomy / statement) ── */
.doc-header { padding: clamp(2.5rem,6vw,4.5rem) 0 2.5rem; }
.doc-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); gap: 1.25rem var(--gut); margin-bottom: 2rem; max-width: 60rem; }
.doc-meta-item { display: flex; flex-direction: column; gap: .3rem; }
.doc-meta-label { font-size: .8rem; color: var(--grey); font-weight: 400; }
.doc-meta-value { font-size: .92rem; color: var(--black); font-weight: 600; }
.doc-meta-value.consult { color: var(--accent); }
.doc-title { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 700; letter-spacing: -.042em; line-height: .93; margin-bottom: .75rem; }
.doc-subtitle { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--muted); font-weight: 500; line-height: 1.7; max-width: 48ch; }
.doc-status { font-size: .92rem; color: var(--body); font-weight: 500; line-height: 1.65; margin-top: 1.5rem; max-width: 70ch; }

/* ── TOC (clean two-column list, no rules) ── */
.toc { padding: 0; margin: 2.5rem 0; }
.toc-label { font-size: .82rem; color: var(--grey); margin-bottom: 1rem; }
.toc-list { list-style: none; columns: 2; column-gap: var(--gut); }
.toc-list li { break-inside: avoid; margin-bottom: .55rem; }
.toc-list a { font-size: .92rem; color: var(--black); font-weight: 500; border: none; display: flex; gap: .6rem; }
.toc-list a:hover { color: var(--accent); opacity: 1; }
.toc-num { color: var(--accent); flex-shrink: 0; }
@media (max-width: 560px) { .toc-list { columns: 1; } }

/* ── CALLOUT (accent box) ── */
.callout { border: 1px solid var(--black); padding: 1.25rem 1.4rem; margin: 1.6rem 0; }
.callout-label { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: .55rem; }
.callout p { font-size: 1.15rem; color: var(--black); margin: 0; font-style: italic; line-height: 1.4; font-weight: 400; }

/* ── PULL QUOTE (accent box) ── */
.pull-quote { border: 1px solid var(--black); padding: 1.4rem 1.5rem; margin: 1.8rem 0; }
.pull-quote blockquote { font-size: clamp(1.1rem,1.6vw,1.35rem); font-weight: 500; line-height: 1.35; letter-spacing: -.01em; margin-bottom: .6rem; }
.pull-quote cite { font-size: .82rem; color: var(--grey); font-style: normal; }

/* ── TIER TAGS (white / grey / black boxes) ── */
.tier-tag { display: inline-block; min-width: 8.5rem; text-align: center; font-size: .82rem; font-weight: 600; padding: .22rem .6rem; border: 1px solid var(--black); white-space: nowrap; line-height: 1.2; }
.tier-tag-green  { background: var(--white); color: var(--black); }                                  /* No AI Used */
.tier-tag-yellow { background: var(--tier-grey); color: var(--white); border-color: var(--tier-grey); } /* Assistive AI */
.tier-tag-red    { background: var(--black); color: var(--white); }                                  /* Generative AI */

/* ── TABLES (rules only, sentence case) ── */
table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .95rem; }
thead th { font-size: .9rem; font-weight: 700; color: var(--black); padding: .55rem 1rem .55rem 0; border-bottom: 2px solid var(--black); text-align: left; vertical-align: bottom; }
tbody td { padding: .85rem 1rem .85rem 0; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.55; color: var(--body); font-weight: 400; }
tbody tr:last-child td { border-bottom: none; }
.scope-table td { width: 50%; padding-right: 1.25rem; }
.edge-table td:first-child, .version-table td:first-child { font-weight: 700; color: var(--black); }
.edge-table td:first-child { width: 32%; }
.def-table td { padding: .8rem 0; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.55; color: var(--body); font-weight: 400; }
.def-table tr:last-child td { border-bottom: none; }
.def-table td:first-child { width: 120px; padding-right: 1.5rem; color: var(--black); font-weight: 700; }
.def-table tr.exclusion-row td { border-top: 1px solid var(--black); }
.def-table tr.exclusion-row td:first-child { color: var(--accent); }

/* ── DECISION BLOCK (accent box) ── */
.decision-block { border: 1px solid var(--black); margin: 1.5rem 0; font-size: .95rem; }
.decision-block-label { font-size: .82rem; color: var(--grey); padding: .7rem 1rem; border-bottom: 1px solid var(--black); }
.decision-row { display: grid; grid-template-columns: 1fr 2.5rem 11rem; align-items: center; border-bottom: 1px solid var(--black); }
.decision-row:last-child { border-bottom: none; }
.decision-condition { padding: .9rem 1rem; color: var(--body); line-height: 1.45; }
.decision-arrow { font-size: 1rem; color: var(--accent); text-align: center; padding: .9rem 0; border-left: 1px solid var(--black); border-right: 1px solid var(--black); align-self: stretch; display: flex; align-items: center; justify-content: center; }
.decision-result { padding: .9rem 1rem; }
@media (max-width: 560px) { .decision-row { grid-template-columns: 1fr; } .decision-arrow { display: none; } }

/* ── NOTE / VERIFY (accent box) ── */
.verify-box { border: 1px solid var(--black); padding: 1.1rem 1.3rem; margin: 1.5rem 0; }
.verify-label { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: .55rem; }
.verify-box p { font-size: .95rem; color: var(--body); margin: 0; line-height: 1.55; }

/* ── PROCESS STEPS (no rules; number + space) ── */
.process-step { display: grid; grid-template-columns: 2.25rem 1fr; gap: 0 1rem; padding: .7rem 0; align-items: start; }
.process-step-num { font-size: .9rem; color: var(--accent); font-weight: 600; padding-top: .1rem; }
.process-step-title { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: .3rem; }
.process-step-text { font-size: .95rem; color: var(--body); line-height: 1.55; }
.route-label { font-size: .85rem; color: var(--grey); margin-right: .4rem; display: inline-block; font-weight: 600; }

/* ── FORM EXAMPLE (accent box) ── */
.form-example { border: 1px solid var(--black); margin: 1.5rem 0; }
.form-example-label { font-size: .82rem; color: var(--grey); padding: .7rem 1rem; border-bottom: 1px solid var(--black); display: block; }
.form-example-row { display: grid; grid-template-columns: 1.25rem 6rem 1fr; gap: 0 .75rem; align-items: start; padding: .8rem 1rem; border-bottom: 1px solid var(--black); }
.form-example-check { width: 12px; height: 12px; border: 1px solid var(--black); display: block; margin-top: .2rem; }
.form-example-tier { font-size: .85rem; font-weight: 600; color: var(--black); }
.form-example-desc { font-size: .85rem; color: var(--muted); line-height: 1.45; }
.form-example-textarea { padding: .8rem 1rem; border-bottom: 1px solid var(--black); }
.form-example-textbox { height: 2rem; border: 1px solid var(--black); width: 100%; display: block; margin-top: .35rem; }
.form-example-fields { padding: .8rem 1rem; border-bottom: 1px solid var(--black); display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem 1.5rem; }
.form-example-field { font-size: .8rem; color: var(--grey); }
.form-example-note { display: block; font-size: .8rem; color: var(--grey); line-height: 1.5; padding: .7rem 1rem; }

/* ── LISTS (hanging indent so inline content flows normally) ── */
.numbered-list { list-style: none; counter-reset: nl; margin: .65rem 0 0; }
.numbered-list li { counter-increment: nl; position: relative; padding: .3rem 0 .3rem 1.9rem; font-size: 1rem; color: var(--body); line-height: 1.65; }
.numbered-list li::before { content: counter(nl, decimal-leading-zero); position: absolute; left: 0; top: .42rem; color: var(--accent); font-weight: 700; font-size: .85rem; }
.doc-list { list-style: none; margin: .65rem 0 0; columns: 2; column-gap: var(--gut); }
.doc-list li { position: relative; padding: .3rem 0 .3rem 1.5rem; font-size: 1rem; color: var(--body); line-height: 1.55; break-inside: avoid; }
.doc-list li::before { content: '\2192'; position: absolute; left: 0; top: .3rem; color: var(--accent); }
@media (max-width: 560px) { .doc-list { columns: 1; } }

/* ── SCHEMA / CODE BLOCK (grey code box) ── */
.schema-block { border: 1px solid var(--black); background: var(--code); margin: 1.1rem 0 1.4rem; }
.schema-block-label { font-size: .82rem; color: var(--grey); padding: .55rem 1rem; border-bottom: 1px solid var(--black); }
pre.schema-code, pre.advisory-code { font-family: 'SFMono-Regular','Consolas','Liberation Mono',monospace; font-size: .85rem; line-height: 1.7; color: var(--black); background: var(--code); padding: 1rem 1.25rem; overflow-x: auto; white-space: pre; margin: 0; }
pre.advisory-code { border: 1px solid var(--black); }
.tok-key { color: var(--black); } .tok-str, .tok-enum { color: var(--muted); } .tok-pipe, .tok-punct { color: var(--grey); }

/* ── CONSULTATION (accent rule, no box) ── */
.consult-banner { margin: 2rem 0; border: 1px solid var(--black); padding: 1.25rem 1.4rem; }
.consult-banner-label { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: .65rem; }
.consult-banner p { font-size: .98rem; color: var(--body); margin-bottom: .85rem; line-height: 1.55; }
.consult-banner-link { font-size: .9rem; color: var(--accent); font-weight: 600; display: inline-block; }
.consult-questions { list-style: none; margin: 1rem 0; }
.consult-questions li { font-size: .98rem; color: var(--body); line-height: 1.55; padding: .55rem 0; display: grid; grid-template-columns: 2.5rem 1fr; }
.consult-q-num { font-size: .9rem; color: var(--accent); font-weight: 600; padding-top: .1rem; }
.consult-box { margin-top: 2rem; border: 1px solid var(--black); padding: 1.4rem 1.5rem; }
.consult-label { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.consult-box p { font-size: .98rem; color: var(--body); margin-bottom: 1.25rem; }

/* ── FOOTNOTES (two columns, no rule) ── */
.footnotes { margin-top: 2rem; columns: 2; column-gap: var(--gut); }
.footnote { display: grid; grid-template-columns: 1.5rem 1fr; font-size: .82rem; color: var(--grey); line-height: 1.55; margin-bottom: .6rem; break-inside: avoid; }
.fn-num { color: var(--accent); font-weight: 600; }
.footnote a { color: var(--accent); font-weight: 400; }
.fn-ref { color: var(--accent); }
@media (max-width: 560px) { .footnotes { columns: 1; } }

/* ── SIGNATORIES ── */
.signatories-table tr.founding td { border-top: 2px solid var(--black); }
.signatory-name { display: block; font-weight: 600; color: var(--black); font-size: 1rem; }
.signatory-role { display: block; font-size: .88rem; color: var(--muted); margin-top: .2rem; }
.signatory-location, .signatory-date { font-size: .9rem; color: var(--body); }
.founding-badge { font-size: .8rem; color: var(--accent); margin-left: .5rem; vertical-align: baseline; font-weight: 600; }
.founding-badge::before { content: '· '; color: var(--grey); }
.signatories-note { font-size: .9rem; color: var(--grey); margin-top: 1rem; }

/* ═══════════════ RULES (homepage thick + thin black lines) ═══════════════
   Lines align to the content measure. A .rule-wrap centres a standalone line
   to the same max-width + padding as the rest of the page, so no rule ever
   spans the full viewport. */
.hr-thin  { border: none; border-top: 1px solid var(--black); }
.hr-thick { border: none; border-top: 3px solid var(--black); }
.rule-wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.rule-wrap.gap { padding-top: clamp(2rem,4vw,3.5rem); padding-bottom: 0; }

/* ═══════════════ FOOTER (minimal, centred to the measure) ═══════════════ */
footer { max-width: var(--max); margin: 0 auto; padding: 1.5rem var(--px); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-l { display: flex; align-items: center; gap: .55rem; }
.footer-copy { font-size: .72rem; color: var(--grey); letter-spacing: .02em; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; color: var(--accent); font-weight: 600; }
.footer-links a:hover { color: var(--black); }

/* mobile: prevent horizontal overflow + stack footer */
.doc-body { min-width: 0; }
.doc-body pre, pre.schema-code, pre.advisory-code, .schema-block, .doc-body table { max-width: 100%; }
@media (max-width: 768px) {
  footer { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .doc-body table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── generic section + contact ── */
.section-inner { max-width: var(--max); margin: 0 auto; padding: clamp(2.5rem,6vw,5rem) var(--px); }
.contact-section { padding-top: clamp(1rem,2vw,2rem); }
/* headline left, body right, consistent with the doc-section grid */
.contact-section-inner { max-width: var(--max); margin: 0 auto; padding: clamp(2.5rem,6vw,5rem) var(--px); display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gut); row-gap: 1rem; align-items: start; }
.contact-section-inner > h2 { grid-column: 1 / 4; font-size: clamp(1.4rem,2vw,1.85rem); margin: 0; }
.contact-section-inner > :not(h2) { grid-column: 5 / 13; margin: 0; }
.contact-section-sub { font-size: 1.05rem; color: var(--body); line-height: 1.6; max-width: 56ch; }
.contact-section-sub a { color: var(--accent); font-weight: 600; }
@media (max-width: 860px) { .contact-section-inner { grid-template-columns: 1fr; } .contact-section-inner > h2, .contact-section-inner > :not(h2) { grid-column: 1; } }

/* ── generic body lists (how-it-works, privacy prose) ── */
.doc-body ul { list-style: none; margin: .7rem 0 0; }
.doc-body ul li { position: relative; padding: .4rem 0 .4rem 1.3rem; font-size: 1rem; color: var(--body); line-height: 1.65; }
.doc-body ul li::before { content: ''; position: absolute; left: 0; top: .95em; width: 6px; height: 6px; background: var(--accent); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--black); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; padding: 1.1rem 0; font-family: inherit; font-size: 1.05rem; font-weight: 500; color: var(--black); line-height: 1.4; }
.faq-q:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; color: var(--accent); font-weight: 400; font-size: 1.2rem; line-height: 1.2; transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 1600px; }
.faq-a > div, .faq-a-inner { padding: 0 0 1.25rem; }
.faq-a p { font-size: .98rem; color: var(--body); line-height: 1.6; margin-bottom: .85rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--accent); font-weight: 600; }

/* ── NEWS / PRESS ── */
.update-item { padding: 0 0 1.2rem; }
.update-meta { display: flex; gap: 1rem; align-items: baseline; margin-bottom: .5rem; }
.update-type { font-size: .85rem; color: var(--accent); font-weight: 600; }
.update-date { font-size: .85rem; color: var(--grey); }
.update-title { font-size: 1.15rem; font-weight: 600; color: var(--black); margin-bottom: .4rem; letter-spacing: -.01em; }
.update-desc { font-size: .98rem; color: var(--body); line-height: 1.6; margin-bottom: .7rem; }
.update-link { font-size: .9rem; color: var(--accent); font-weight: 600; }
.press-intro { font-size: .98rem; color: var(--body); margin-bottom: 1rem; }
.press-item { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--black); }
.press-item:first-of-type { border-top: 1px solid var(--black); }
.press-outlet { font-size: 1.02rem; font-weight: 600; color: var(--black); margin-bottom: .25rem; }
.press-paywalled { font-size: .8rem; color: var(--grey); margin-left: .45rem; font-weight: 400; }
.press-paywalled::before { content: '· '; }
.press-desc { font-size: .95rem; color: var(--body); line-height: 1.45; }
.press-meta { display: flex; align-items: baseline; gap: 1rem; flex-shrink: 0; text-align: right; }
.press-date { font-size: .85rem; color: var(--grey); white-space: nowrap; }
.press-link { font-size: .9rem; color: var(--accent); font-weight: 600; }

/* ── HOW IT WORKS role blocks ── */
.diagram-wrap { max-width: 720px; margin: 0 0 1.5rem; }
.diagram-label { font-size: .82rem; color: var(--grey); margin-bottom: 1rem; }
.how-item { padding: 1.1rem 0; }
.how-q-audience { display: block; font-size: .88rem; color: var(--accent); font-weight: 600; margin-bottom: .4rem; }
.how-q-action { display: block; font-size: 1.1rem; font-weight: 600; color: var(--black); line-height: 1.35; margin-bottom: .9rem; letter-spacing: -.01em; }
.how-a p { font-size: .98rem; color: var(--body); line-height: 1.6; margin-bottom: .85rem; }
.how-a p:last-child { margin-bottom: 0; }
.advisory-note { border: 1px solid var(--black); margin: 1rem 0; }
.advisory-note summary { cursor: pointer; padding: .75rem 1rem; font-size: .92rem; font-weight: 600; color: var(--black); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.advisory-note summary::after { content: '+'; color: var(--accent); font-size: 1.1rem; }
.advisory-note[open] summary::after { content: '\2212'; }
.advisory-note summary::-webkit-details-marker { display: none; }
.advisory-body { padding: 0 1rem 1rem; border-top: 1px solid var(--black); }
.advisory-body p { font-size: .92rem; color: var(--body); line-height: 1.55; margin: .8rem 0 0; }
.advisory-body ul { margin: .6rem 0 0; }

/* ── SIGN FORM ── */
.sign-cta { display: inline-block; font-size: 1rem; font-weight: 600; color: var(--accent); margin: 1.5rem 0; }
.commitment-list { list-style: none; counter-reset: cm; margin: 1.25rem 0; }
.commitment-item { counter-increment: cm; display: grid; grid-template-columns: 3rem 1fr; gap: 0 1rem; padding: .9rem 0; }
.commitment-num { font-size: 1.4rem; font-weight: 600; color: var(--accent); letter-spacing: -.03em; line-height: 1; }
.commitment-title { font-size: 1.05rem; font-weight: 600; color: var(--black); margin-bottom: .4rem; }
.commitment-text { font-size: .98rem; color: var(--body); line-height: 1.6; }
.sign-signpost { border: 1px solid var(--black); padding: 1.4rem 1.5rem; margin-top: 2rem; }
.sign-signpost-label { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.sign-signpost p { font-size: .96rem; color: var(--body); line-height: 1.55; margin-bottom: .85rem; }
.btn-sign { display: inline-block; margin-top: .5rem; font-size: .92rem; font-weight: 600; color: var(--black); border-bottom: 1px solid var(--black); }
.sign-section { padding-top: clamp(1rem,2vw,2rem); }
.sign-section-inner { max-width: var(--max); margin: 0 auto; padding: clamp(2.5rem,6vw,4.5rem) var(--px); display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gut); row-gap: 1.25rem; align-items: start; }
.sign-section-inner > h2 { grid-column: 1 / 4; font-size: clamp(1.4rem,2vw,1.85rem); margin: 0; }
.sign-section-inner > :not(h2) { grid-column: 5 / 13; margin: 0; }
.sign-section-sub { font-size: 1.02rem; color: var(--body); line-height: 1.6; max-width: 60ch; }
@media (max-width: 860px) { .sign-section-inner { grid-template-columns: 1fr; } .sign-section-inner > h2, .sign-section-inner > :not(h2) { grid-column: 1; } }
.sign-form-wrap { border-top: 2px solid var(--black); max-width: 46rem; }
.sign-form-label { font-size: .85rem; color: var(--grey); padding: .8rem 0; border-bottom: 1px solid var(--line); }
.sign-form { padding: 1.5rem 0 0; }
.sign-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.75rem; margin-bottom: 1.5rem; }
.sign-form-field { display: flex; flex-direction: column; gap: .4rem; }
.sign-form-field-label { font-size: .85rem; color: var(--grey); }
.sign-form-input { font-family: inherit; font-size: 1rem; color: var(--black); padding: .5rem 0; border: none; border-bottom: 1px solid var(--black); background: transparent; width: 100%; }
.sign-form-input::placeholder { color: var(--grey); }
.sign-form-input:focus { outline: none; border-bottom: 2px solid var(--accent); }
.sign-form-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.sign-listing-label { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--body); line-height: 1.5; cursor: pointer; }
.sign-listing-check { margin-top: .2rem; width: 15px; height: 15px; flex-shrink: 0; accent-color: var(--accent); }
.founding-callout { border-left: 3px solid var(--accent); padding-left: 1rem; }
.founding-callout-label { display: block; font-size: .88rem; color: var(--accent); font-weight: 600; margin-bottom: .25rem; }
.founding-callout-text { font-size: .9rem; color: var(--body); line-height: 1.5; }
.sign-form-privacy { font-size: .85rem; color: var(--grey); line-height: 1.55; }
.sign-form-privacy a, .sign-privacy-link { color: var(--accent); font-weight: 600; }
.sign-form-error { font-size: .9rem; color: var(--accent); margin-top: 1rem; }
.sign-form-success { padding: 2rem 1.5rem; text-align: left; }
.sign-success-icon { width: 28px; height: 28px; border: 2px solid var(--accent); margin-bottom: 1rem; position: relative; }
.sign-success-icon::after { content: ''; position: absolute; left: 8px; top: 3px; width: 8px; height: 15px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.sign-success-heading { font-size: 1.2rem; font-weight: 600; color: var(--black); margin-bottom: .6rem; }
.sign-success-body { font-size: .96rem; color: var(--body); line-height: 1.6; }
@media (max-width: 560px) { .sign-form-row { grid-template-columns: 1fr; } }

/* ── PROSE (privacy etc., when used outside doc-body) ── */
.prose { max-width: 70ch; }
.prose h2 { font-size: 1.15rem; font-weight: 600; margin: 2.25rem 0 .65rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.prose h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.prose p { font-size: 1rem; color: var(--body); line-height: 1.62; margin-bottom: .85rem; }
.prose ul { list-style: none; margin: .5rem 0 .85rem; }
.prose li { position: relative; padding-left: 1.3rem; font-size: 1rem; color: var(--body); line-height: 1.65; margin-bottom: .4rem; }
.prose li::before { content: ''; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; background: var(--accent); }
.prose a { color: var(--accent); border-bottom: 1px solid var(--line); }
.prose strong { color: var(--black); font-weight: 600; }
.page-label { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: 1.25rem; display: inline-flex; align-items: center; gap: .5rem; }
.page-label::before { content: ''; width: 9px; height: 9px; background: var(--accent); }
.page-meta { font-size: .9rem; color: var(--grey); margin-bottom: 1.5rem; }

/* ═══════════════ PRINT ═══════════════ */
@media print {
  #site-header, .header-pad, footer, .toc, .consult-box, .consult-banner, .btn-print, .nav-toggle, .skip-link { display: none !important; }
  body { font-size: 10pt; color: #000; }
  .doc, .page-hero { padding: 0; max-width: 100%; }
  .doc-section { display: block; border-top: 1pt solid #000; }
  .doc-section > .doc-body { margin-top: .5rem; }
  a { color: #000; }
  @page { margin: 1.6cm 2cm; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
