/* ============================================================== *
 *  CAPTNS - verifiable social proof. Self-contained: no external
 *  fonts, no CDN, no trackers. Monochrome + one reserved green
 *  for the Verified state. Light default, dark toggle.
 * ============================================================== */

/* Self-hosted IBM Plex Mono (SIL OFL 1.1) - see assets/fonts/LICENSE.
   Vendored woff2, no Google Fonts / CDN, matches CSP font-src 'self'. */
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-600.woff2") format("woff2");
}

:root {
  --bg: #FFFFFF;
  --paper: #F6F6F2;
  --panel: #FFFFFF;
  --ink: #14140F;
  --ink-2: #56574F;
  --ink-3: #8A8B82;
  --line: #E7E7E0;
  --line-2: #D9D9D1;
  --verified: #12924A;
  --verified-soft: rgba(18, 146, 74, .10);
  --verified-line: rgba(18, 146, 74, .32);
  --shadow: 0 1px 2px rgba(20,20,15,.05), 0 14px 30px rgba(20,20,15,.08);

  --font-ui: system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --font-mono: "IBM Plex Mono",ui-monospace,"SF Mono",Menlo,Consolas,monospace;
  --wrap: 1120px;
  --logo-h: 42px;
  --radius: 14px;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #0D0E0B; --paper: #131410; --panel: #17180F; --panel: #16170F;
  --ink: #F1F1EA; --ink-2: #AEAFA6; --ink-3: #7E7F76;
  --line: rgba(255,255,255,.10); --line-2: rgba(255,255,255,.16);
  --verified: #34D07A; --verified-soft: rgba(52,208,122,.12); --verified-line: rgba(52,208,122,.36);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-ui);
  line-height: 1.55; -webkit-font-smoothing: antialiased; transition: background .2s, color .2s;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--verified);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--verified); }

h1, h2, h3 { font-family: var(--font-ui); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; margin: 0; }

/* ------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(10px) saturate(1.3);
}
.nav-in { display: flex; align-items: center; gap: 16px; height: 64px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { height: var(--logo-h); width: auto; display: block; }
:root[data-theme="dark"] .brand img, :root[data-theme="dark"] .footer .fb img { filter: invert(1) hue-rotate(180deg); }
.nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { padding: 8px 13px; border-radius: 9px; font-size: .92rem; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); background: var(--paper); }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; padding: .4rem;
  border: 1px solid var(--line); border-radius: 6px; background: transparent; color: var(--ink-2);
  cursor: pointer; line-height: 0; }
.theme-toggle:hover { color: var(--ink); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .ico-sun { display: none; } .theme-toggle .ico-moon { display: inline; }
:root[data-theme="dark"] .theme-toggle .ico-sun { display: inline; }
:root[data-theme="dark"] .theme-toggle .ico-moon { display: none; }
.cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 17px; border-radius: 10px;
  font-weight: 650; font-size: .92rem; color: var(--bg); background: var(--ink);
}
.cta:hover { transform: translateY(-1px); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ------------------------------------------------------------ hero */
.hero { padding: clamp(48px, 8vw, 92px) 0 clamp(40px, 6vw, 72px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 { margin-top: 18px; font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -.025em; }
.hero .sub { margin: 20px 0 0; max-width: 40ch; font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; align-items: center; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 11px;
  font-weight: 650; border: 1px solid var(--line-2); color: var(--ink); background: var(--panel); }
.btn-ghost:hover { border-color: var(--ink-3); }
.hero-note { margin-top: 20px; font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); }
.hero-note b { color: var(--verified); }

/* install terminal */
.term { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); background: #12130E; box-shadow: var(--shadow); }
.term-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
.term-bar .d { width: 10px; height: 10px; border-radius: 50%; background: #43443c; }
.term-bar .t { margin-left: 8px; font-family: var(--font-mono); font-size: .72rem; color: #8b8c82; }
.term-body { padding: 15px 17px; font-family: var(--font-mono); font-size: .8rem; line-height: 1.8; color: #D7D8CE; overflow-x: auto; }
.term-body .c { color: #7f8a76; } .term-body .p { color: var(--verified); }

/* the verified card (hero art) */
.vcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.vcard .quote { font-size: 1.05rem; line-height: 1.5; }
.vcard .who { margin-top: 12px; font-size: .9rem; color: var(--ink-2); }
.vbadge { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 6px 11px; border-radius: 999px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600; color: var(--verified);
  background: var(--verified-soft); border: 1px solid var(--verified-line); }
.vbadge svg { width: 14px; height: 14px; }
.vcard .chain { margin-top: 12px; font-family: var(--font-mono); font-size: .68rem; color: var(--ink-3); word-break: break-all; }

/* animated hero: a "verify pulse" - a hash field scanned, a green seal stamping.
   Pure CSS @keyframes, aria-hidden, self-contained. Reduced-motion disables the loop. */
.verify-pulse-wrap { display: grid; place-items: center; }
.verify-pulse { position: relative; width: min(360px, 86%); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden; background: var(--panel);
  border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.verify-pulse .vp-hash { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 0 16%; font-family: var(--font-mono); font-size: .64rem; line-height: 1.9; letter-spacing: .04em;
  color: var(--ink-3); opacity: .32; word-break: break-all; text-align: center; user-select: none; }
.verify-pulse .vp-scan { position: absolute; left: 0; right: 0; height: 30%; z-index: 1;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--verified) 24%, transparent), transparent);
  animation: captns-scan 3.4s ease-in-out infinite; }
@keyframes captns-scan { 0% { transform: translateY(-130%); } 55% { transform: translateY(360%); } 100% { transform: translateY(360%); } }
.verify-pulse .vp-ring { position: absolute; z-index: 2; width: 40%; aspect-ratio: 1; border-radius: 50%;
  border: 2px solid var(--verified); opacity: 0; animation: captns-ping 3.4s ease-out infinite; }
.verify-pulse .vp-ring:nth-of-type(2) { animation-delay: .45s; }
@keyframes captns-ping { 0%, 48% { transform: scale(1); opacity: 0; } 58% { opacity: .55; } 100% { transform: scale(2.3); opacity: 0; } }
.verify-pulse .vp-seal { position: relative; z-index: 3; width: 40%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: var(--verified); transform: scale(1); opacity: 1;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--verified) 42%, transparent);
  animation: captns-stamp 3.4s ease-in-out infinite; }
.verify-pulse .vp-seal svg { width: 50%; height: 50%; }
@keyframes captns-stamp { 0%, 40% { transform: scale(.55); opacity: .28; } 55% { transform: scale(1.08); opacity: 1; } 70%, 100% { transform: scale(1); opacity: 1; } }
.vp-cap { margin-top: 16px; font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); text-align: center; }

/* ---------------------------------------------------------- sections */
.section { padding: clamp(48px, 7vw, 84px) 0; }
.section--paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.head { max-width: 60ch; }
.head h2 { margin-top: 12px; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -.02em; }
.head p { margin-top: 14px; color: var(--ink-2); font-size: 1.05rem; }

/* stat tiles */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.stat .v { font-family: var(--font-ui); font-weight: 600; font-size: 1.9rem; }
.stat .l { margin-top: 6px; color: var(--ink-2); font-size: .92rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; counter-reset: s; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; counter-increment: s; }
.step .n { font-family: var(--font-mono); font-size: .8rem; font-weight: 600; color: var(--verified); }
.step h3 { margin: 10px 0 8px; font-size: 1.22rem; }
.step p { color: var(--ink-2); font-size: .95rem; }
.step .tag { display:inline-block; margin-top:10px; font-family:var(--font-mono); font-size:.64rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-3); border:1px solid var(--line-2); border-radius:999px; padding:3px 9px; }

/* supported-systems pills */
.stacks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.stack-pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: .82rem;
  color: var(--ink); background: var(--panel); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 15px; }
.stack-pill .d { width: 7px; height: 7px; border-radius: 50%; background: var(--verified); flex: 0 0 auto; }

/* verify demo */
.verify { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; align-items: start; }
.vpanel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.vpanel .lbl { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.vpanel textarea { width: 100%; min-height: 96px; resize: vertical; font-family: var(--font-ui); font-size: .95rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; padding: 12px; }
.vrow { font-family: var(--font-mono); font-size: .74rem; color: var(--ink-2); margin: 10px 0; word-break: break-all; }
.vrow b { color: var(--ink); }
.vbtn { padding: 11px 18px; border-radius: 10px; font-weight: 650; color: var(--bg); background: var(--ink); border: 0; }
.vresult { margin-top: 14px; font-family: var(--font-mono); font-size: .82rem; min-height: 22px; }
.vresult.ok { color: var(--verified); } .vresult.bad { color: #C6413A; }

/* ---------------------------------------------------------- proof record (#audit) */
.audit-actions { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.audit-actions .btn-ghost { padding: 10px 16px; }
.audit-actions-note { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); }
.audit { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); background: #12130E; box-shadow: var(--shadow); margin-top: 30px; }
.audit-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
.audit-bar .d { width: 10px; height: 10px; border-radius: 50%; background: #43443c; }
.audit-bar .t { margin-left: 8px; font-family: var(--font-mono); font-size: .72rem; color: #8b8c82; }
.audit-body { padding: 15px 17px; font-family: var(--font-mono); font-size: .8rem; line-height: 1.7; color: #D7D8CE; overflow-x: auto; white-space: pre-wrap; }
.audit-body .h { color: #34D07A; } .audit-body .ok { color: #34D07A; font-weight: 600; } .audit-body .m { color: #7f8a76; }
/* print-only proof-record table (hidden on screen) */
.audit-sample { display: none; }
.audit-sample .cl-head { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); margin-bottom: 12px; }
.audit-sample .cl-head b { color: #D7D8CE; }
.chk-table { width: 100%; border-collapse: collapse; font-size: .74rem; }
.chk-table th, .chk-table td { text-align: left; padding: 7px 9px; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
.chk-table th { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.chk-table td { color: #D7D8CE; }
.chk-table .hash { font-family: var(--font-mono); color: var(--verified); white-space: nowrap; }
.chk-table .why { display: block; margin-top: 3px; color: var(--ink-3); font-weight: 400; font-size: .7rem; line-height: 1.45; }
.chk-table .ck { display: inline-block; width: 14px; height: 14px; border: 1.5px solid #4a5560; border-radius: 3px; position: relative; }
.chk-table .ck.on { background: #12924A; border-color: #12924A; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
.chk-table .ck.on::after { content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* print report chrome (logo-in-header, shows on screen + print) */
.audit-print-foot { display: none; }
.audit-print-head { display: flex; align-items: center; gap: 12px; padding: 12px 16px 11px; border-bottom: 1px solid rgba(255,255,255,.09); color: #D7D8CE; }
.audit-print-head .aph-brand { display: flex; align-items: center; gap: 8px; }
.audit-print-head .aph-brand svg { width: 28px; height: 28px; flex: none; }
.audit-print-head .aph-brand span { font-weight: 600; letter-spacing: .12em; font-size: .9rem; }
.audit-print-head .aph-meta { margin-left: auto; text-align: right; }
.audit-print-head .aph-title { font-weight: 600; font-size: .86rem; }
.audit-print-head .aph-sub { font-family: var(--font-mono); font-size: .66rem; color: #7f8a76; margin-top: 2px; }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.tier { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; }
.tier.pop { border-color: var(--verified-line); }
.tier .name { font-family: var(--font-ui); font-weight: 600; font-size: 1.15rem; }
.tier .price { margin-top: 8px; font-family: var(--font-ui); font-weight: 600; font-size: 1.6rem; }
.tier .price span { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-3); font-weight: 400; }
.tier .desc { margin-top: 10px; color: var(--ink-2); font-size: .9rem; flex: 1; }
.tier .badge-pop { align-self: flex-start; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--verified); background: var(--verified-soft); border: 1px solid var(--verified-line); border-radius: 999px; padding: 3px 9px; margin-bottom: 12px; }
.tiers--two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
.tier-cta { margin-top: 16px; justify-content: center; text-align: center; }
.tier .tier-cta + .tier-cta { margin-top: 10px; }
.tier .bsv-note { margin-top: 10px; font-family: var(--font-mono); font-size: .68rem; color: var(--ink-3); }

/* member capture (Netlify Forms) */
.capture { margin-top: 22px; display: grid; gap: 12px; max-width: 380px; }
.capture .field { display: grid; gap: 5px; }
.capture label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.capture input { width: 100%; font-family: var(--font-ui); font-size: .95rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; padding: 11px 12px; }
.capture input:focus-visible { outline: 2px solid var(--verified); outline-offset: 1px; border-color: var(--verified); }
.capture .cta { justify-content: center; margin-top: 4px; }
.capture .capture-note { font-family: var(--font-mono); font-size: .68rem; color: var(--ink-3); margin: 0; }
.hidden-field { position: absolute; left: -9999px; }

/* roadmap (Section 10 - clearly labelled, not shipped) */
.roadmap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.rm { background: var(--panel); border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 22px; }
.rm-tag { display: inline-block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--line-2); border-radius: 999px; padding: 3px 9px; }
.rm h3 { margin: 12px 0 8px; font-size: 1.15rem; }
.rm p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.rm-foot { margin-top: 24px; font-family: var(--font-mono); font-size: .8rem; color: var(--ink-3); }
.rm-foot b { color: var(--verified); }
.rm-foot .mono { color: var(--ink); }

/* faq */
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { font-family: var(--font-ui); font-weight: 600; font-size: 1.05rem; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 12px 0 0; color: var(--ink-2); }

/* UpLinkd Skills suite strip (shared across all five sites) */
.suite-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(150px, 1fr)); gap:14px; margin-top:28px; }
.suite-card { display:flex; flex-direction:column; gap:5px; padding:20px; background:var(--panel);
  border:1px solid var(--line); border-radius:var(--radius); text-decoration:none;
  transition:border-color .15s ease, transform .15s ease; }
.suite-card:hover { border-color:var(--verified); transform:translateY(-2px); }
.suite-card:hover b { color:var(--verified); }
.suite-card b, .suite-card span { text-decoration:none; }
.suite-card b { font-family:var(--font-ui); font-weight:500; font-size:1.1rem; }
.suite-card span { font-family:var(--font-mono); font-size:.72rem; color:var(--ink-3); }
.suite-card:hover span { color:var(--ink-3); }
.suite-card[aria-current] { border-color:var(--verified); background:var(--verified-soft); }
.suite-hub { margin-top:22px; text-align:center; font-family:var(--font-mono); font-size:.8rem; }
.suite-hub a { color:var(--verified); }
.bundle-note { margin-top:24px; font-family:var(--font-mono); font-size:.8rem; color:var(--ink-3); }
.bundle-note b { color:var(--ink); } .bundle-note a { color:var(--verified); font-weight:600; }
@media (max-width:760px){ .suite-grid{ grid-template-columns:repeat(2,1fr); } }

/* footer */
.footer { border-top: 1px solid var(--line); background: var(--paper); padding: 34px 0; }
.footer-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer .fb { display: flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: .88rem; }
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { color: var(--ink-2); font-size: .9rem; } .footer a:hover { color: var(--verified); }

@media (max-width: 860px) {
  .hero-grid, .verify { grid-template-columns: 1fr; }
  .stats, .steps { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .tiers--two, .roadmap-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .verify-pulse .vp-scan, .verify-pulse .vp-seal, .verify-pulse .vp-ring { animation: none !important; }
  .verify-pulse .vp-scan { display: none; }
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================== *
 *  Print: "Download PDF" of the sample proof record (window.print()).
 *  Self-contained, no external PDF service. The Download PDF button
 *  adds .print-audit to <body>, which isolates + restyles #audit as
 *  a clean light record; afterprint removes it. Mechanics copied from
 *  radhr.io (the @page + #audit padding fix), accent = verified green.
 * ============================================================== */
@media print {
  @page { margin: 0; }
  .no-print { display:none !important; }
  body.print-audit { background:#fff; color:#14140F; color-scheme:light; }
  body.print-audit > header.nav,
  body.print-audit > section.suite,
  body.print-audit > .footer { display:none !important; }
  body.print-audit main > section:not(#audit) { display:none !important; }
  body.print-audit #audit { padding:15mm 14mm !important; background:#fff !important; border:0 !important; }
  body.print-audit #audit .wrap { padding:0 !important; max-width:none !important; }
  body.print-audit #audit .head .eyebrow,
  body.print-audit #audit .head h2,
  body.print-audit #audit .head p,
  body.print-audit #audit .audit-actions,
  body.print-audit #audit .audit-bar { display:none !important; }
  body.print-audit #audit .audit { display:block; background:#fff !important; border:0 !important;
    box-shadow:none !important; margin:0 !important; overflow:visible !important; }
  body.print-audit #audit .audit-print-head { display:flex !important; align-items:center; gap:14px;
    padding:0 0 11px !important; margin-bottom:14px; border-bottom:2px solid #12924A !important; }
  body.print-audit #audit .aph-brand { display:flex; align-items:center; gap:9px; }
  body.print-audit #audit .aph-brand svg { width:30px; height:30px; }
  body.print-audit #audit .aph-brand span { font-family:var(--font-ui); font-weight:600; font-size:1.1rem;
    letter-spacing:.2em; color:#14140F; }
  body.print-audit #audit .aph-meta { margin-left:auto; text-align:right; }
  body.print-audit #audit .aph-title { font-family:var(--font-ui); font-size:1.15rem; color:#14140F; }
  body.print-audit #audit .aph-sub { font-family:var(--font-mono); font-size:.7rem; color:#56574F; }
  body.print-audit #audit .audit-body { display:none !important; }
  body.print-audit #audit .audit-sample { display:block !important; padding:0 !important; border-top:0 !important; }
  body.print-audit #audit .audit-sample .cl-head { color:#56574F !important; }
  body.print-audit #audit .audit-sample .cl-head b { color:#14140F !important; }
  body.print-audit #audit .chk-table { font-size:9.5px; }
  body.print-audit #audit .chk-table th { color:#56574F !important; border-bottom:1px solid #bbb !important; }
  body.print-audit #audit .chk-table td { color:#14140F !important; border-bottom:1px solid #e2e2e2 !important; }
  body.print-audit #audit .chk-table .hash { color:#0B7A3F !important; }
  body.print-audit #audit .chk-table .why { color:#56574F !important; }
  body.print-audit #audit .chk-table .ck { border-color:#333 !important; }
  body.print-audit #audit .chk-table .ck.on { background:#12924A !important; border-color:#12924A !important; -webkit-print-color-adjust:exact; print-color-adjust:exact; }
  body.print-audit #audit .chk-table tr { break-inside:avoid; page-break-inside:avoid; }
  body.print-audit #audit .chk-table thead { display:table-header-group; }
  body.print-audit #audit .chk-table th, body.print-audit #audit .chk-table td { padding:7px 9px !important; }
  body.print-audit #audit .audit-print-foot { display:block !important; margin-top:16px; padding-top:10px;
    border-top:1px solid #C9D3CC; font-family:var(--font-mono); font-size:.66rem; color:#56574F; }
  body.print-audit * { -webkit-print-color-adjust:exact; print-color-adjust:exact; }
}
