:root {
  --ink: #10202b;
  --ink-2: #172f40;
  --navy: #0b2340;
  --navy-2: #12355b;
  --blue: #2467d1;
  --blue-soft: #eaf2ff;
  --orange: #ff6b00;
  --orange-dark: #d94f00;
  --orange-soft: #fff1e7;
  --green: #0f766e;
  --green-soft: #e8f7f4;
  --red: #b42318;
  --red-soft: #fff0ee;
  --cream: #fffaf5;
  --paper: #ffffff;
  --surface: #f4f7fa;
  --surface-2: #eaf0f5;
  --line: #d9e2e9;
  --muted: #5d6c78;
  --muted-2: #7d8a94;
  --shadow: 0 18px 55px rgba(11, 35, 64, 0.12);
  --shadow-soft: 0 10px 32px rgba(11, 35, 64, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 10px; z-index: 9999; padding: 10px 14px;
  background: var(--orange); color: #fff; border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(16, 32, 43, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.header-shell {
  width: min(var(--max), calc(100% - 36px)); margin: 0 auto; min-height: 82px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; display: block; }
.primary-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-group { position: relative; }
.nav-trigger, .nav-link {
  display: inline-flex; align-items: center; min-height: 42px; padding: 9px 10px;
  color: #f8fbfd; text-decoration: none; border: 0; background: transparent; cursor: pointer;
  border-radius: 8px; font-size: 0.89rem; font-weight: 650; white-space: nowrap;
}
.nav-trigger::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 8px; margin-top: -4px; }
.nav-trigger:hover, .nav-link:hover, .nav-trigger:focus-visible, .nav-link:focus-visible { background: rgba(255,255,255,0.1); outline: none; }
.nav-panel {
  position: absolute; top: calc(100% + 10px); left: 0; width: 350px; padding: 10px;
  border-radius: 14px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: 160ms ease;
}
.nav-panel-right { left: auto; right: 0; }
.nav-panel-grid { width: 680px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nav-trigger[aria-expanded="true"] + .nav-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-panel a { display: block; padding: 12px; text-decoration: none; border-radius: 10px; }
.nav-panel a:hover, .nav-panel a:focus-visible { background: var(--surface); outline: none; }
.nav-panel strong { display: block; color: var(--ink); font-size: 0.94rem; }
.nav-panel span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.78rem; line-height: 1.38; }
.nav-panel .nav-view-all { grid-column: 1 / -1; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; margin-top: 2px; }
.header-cta { flex: 0 0 auto; font-size: 0.86rem; padding: 11px 15px; }
.menu-toggle { display: none; margin-left: auto; width: 42px; height: 42px; border: 0; border-radius: 8px; background: rgba(255,255,255,0.1); padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: #fff; margin: 5px 0; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 18px; border-radius: 10px; text-decoration: none; border: 1px solid transparent;
  font-weight: 750; line-height: 1.15; transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--orange); box-shadow: 0 8px 20px rgba(255,107,0,0.22); }
.button-primary:hover { background: var(--orange-dark); }
.button-secondary { color: var(--navy); background: #fff; border-color: var(--line); }
.button-secondary:hover { box-shadow: var(--shadow-soft); }
.button-dark { color: #fff; background: var(--navy); }
.button-light { color: var(--navy); background: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 750; text-decoration: none; }
.text-link::after { content: "→"; }
.text-link:hover { text-decoration: underline; }

.shell { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 62px 0; }
.section-surface { background: var(--surface); }
.section-navy { background: var(--navy); color: #fff; }
.section-ink { background: var(--ink); color: #fff; }
.section-cream { background: var(--cream); }
.section-orange-soft { background: var(--orange-soft); }
.section-blue-soft { background: var(--blue-soft); }
.section-border { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 15px;
  color: var(--orange-dark); text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.76rem; font-weight: 850;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--orange); }
.section-navy .eyebrow, .section-ink .eyebrow, .hero .eyebrow { color: #ffb176; }
.display { margin: 0; font-size: clamp(2.55rem, 6vw, 5.2rem); line-height: 0.98; letter-spacing: -0.055em; max-width: 900px; }
h1, h2, h3, h4 { line-height: 1.14; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.9rem); margin: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); margin: 0; }
h3 { font-size: 1.33rem; margin: 0; }
h4 { font-size: 1rem; margin: 0; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 790px; }
.section-navy .lead, .section-ink .lead, .hero .lead { color: rgba(255,255,255,0.78); }
.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading p:last-child { margin-bottom: 0; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }

.hero { position: relative; overflow: hidden; background: linear-gradient(125deg, #0a2137 0%, #10202b 45%, #173e61 100%); color: #fff; padding: 94px 0 84px; }
.hero::before { content: ""; position: absolute; width: 530px; height: 530px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; right: -180px; top: -220px; }
.hero::after { content: ""; position: absolute; width: 330px; height: 330px; background: radial-gradient(circle, rgba(255,107,0,0.16), transparent 68%); right: 7%; bottom: -180px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); gap: 64px; align-items: center; }
.hero-copy .lead { margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.badge { display: inline-flex; align-items: center; min-height: 31px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.88); font-size: 0.76rem; font-weight: 700; }
.hero-card { position: relative; background: rgba(255,255,255,0.98); color: var(--ink); border-radius: 22px; box-shadow: 0 24px 70px rgba(0,0,0,0.28); padding: 24px; }
.hero-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(255,255,255,0.55); pointer-events: none; }
.hero-card-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: var(--muted); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-card-label span:last-child { color: var(--orange-dark); }

.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcrumb .shell { padding-top: 12px; padding-bottom: 12px; display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 0.78rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.subhero { padding: 76px 0 70px; background: linear-gradient(135deg, var(--ink), var(--navy-2)); color: #fff; }
.subhero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 50px; align-items: center; }
.subhero .lead { margin-top: 22px; }
.subhero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.subhero-side { padding: 24px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); border-radius: var(--radius); }
.subhero-side h2 { font-size: 1.25rem; margin-bottom: 15px; }
.subhero-side ul { margin: 0; padding-left: 19px; color: rgba(255,255,255,.8); }
.subhero-side li + li { margin-top: 7px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card-stack { display: grid; gap: 24px; }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 62px; align-items: center; }
.split-reverse { grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr); }
.stack > * + * { margin-top: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 27px; box-shadow: var(--shadow-soft); }
.section-navy .card, .section-ink .card { color: var(--ink); }
.card-flat { box-shadow: none; }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card .kicker { display: block; color: var(--orange-dark); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 11px; }
.card-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--navy); background: var(--orange-soft); font-weight: 850; margin-bottom: 17px; }
.card-dark { background: var(--navy); color: #fff; border-color: rgba(255,255,255,.08); }
.card-dark p { color: rgba(255,255,255,.72); }
.card-accent { border-top: 4px solid var(--orange); }
.card-link { text-decoration: none; transition: transform 130ms ease, box-shadow 130ms ease; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-link .text-link { margin-top: 15px; }

.stat-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: #fff; padding: 24px; }
.stat strong { display: block; font-size: 1.8rem; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: .88rem; }

.callout { border-left: 5px solid var(--orange); padding: 22px 24px; background: var(--orange-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.callout strong { display: block; margin-bottom: 6px; }
.callout p:last-child { margin-bottom: 0; }
.callout-blue { border-left-color: var(--blue); background: var(--blue-soft); }
.callout-green { border-left-color: var(--green); background: var(--green-soft); }
.callout-dark { border-left-color: var(--orange); background: rgba(255,255,255,.07); color: #fff; }
.callout-dark p { color: rgba(255,255,255,.76); }

.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { display: inline-flex; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink-2); font-size: .82rem; font-weight: 700; }

.integrity-map { display: grid; gap: 12px; }
.map-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: stretch; }
.map-box { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 58px; padding: 10px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); font-size: .82rem; font-weight: 750; }
.map-box.orange { color: #fff; background: var(--orange); border-color: var(--orange); }
.map-box.navy { color: #fff; background: var(--navy); border-color: var(--navy); }
.map-box.blue { color: #fff; background: var(--blue); border-color: var(--blue); }
.map-arrow { display: grid; place-items: center; color: var(--orange-dark); font-size: 1.35rem; }
.map-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; align-items: stretch; }
.map-flow .map-box { position: relative; min-height: 72px; }
.map-flow .map-box:not(:last-child)::after { content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: var(--orange-dark); z-index: 2; }
.map-note { padding: 13px; border-radius: 10px; background: var(--orange-soft); color: var(--orange-dark); text-align: center; font-size: .82rem; font-weight: 800; }

.timeline { position: relative; display: grid; gap: 20px; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 24px; bottom: 24px; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 18px; }
.timeline-number { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: #fff; font-weight: 850; box-shadow: 0 0 0 7px #fff; }
.timeline-copy { padding: 8px 0 18px; }
.timeline-copy h3 { margin-bottom: 6px; }
.timeline-copy p { color: var(--muted); margin: 0; }
.section-surface .timeline-number { box-shadow: 0 0 0 7px var(--surface); }

.comparison { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; vertical-align: top; padding: 16px 18px; border-bottom: 1px solid var(--line); }
th { background: var(--surface); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
tr:last-child td { border-bottom: 0; }
td:first-child { font-weight: 760; color: var(--navy); }

.check-list, .plain-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .plain-list li { position: relative; padding-left: 28px; }
.check-list li + li, .plain-list li + li { margin-top: 10px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plain-list li::before { content: "•"; position: absolute; left: 7px; color: var(--orange); font-weight: 900; }

.quote { padding: 28px; border-radius: var(--radius); background: var(--navy); color: #fff; }
.quote blockquote { margin: 0; font-size: 1.36rem; line-height: 1.35; letter-spacing: -.02em; }
.quote cite { display: block; margin-top: 17px; color: rgba(255,255,255,.68); font-style: normal; font-size: .85rem; }

.scorecard { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.score-top { display: flex; align-items: center; gap: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.score-circle { flex: 0 0 auto; width: 100px; height: 100px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--orange) 0 68%, var(--surface-2) 68% 100%); position: relative; }
.score-circle::after { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #fff; }
.score-circle strong { position: relative; z-index: 1; font-size: 2rem; color: var(--navy); }
.score-metrics { margin-top: 22px; display: grid; gap: 14px; }
.metric { display: grid; grid-template-columns: 160px 1fr 48px; gap: 12px; align-items: center; font-size: .82rem; }
.metric-track { height: 9px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.metric-fill { height: 100%; background: var(--blue); border-radius: inherit; }
.metric:nth-child(2n) .metric-fill { background: var(--orange); }

.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 12px; background: #fff; }
summary { cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 780; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--orange-dark); font-size: 1.25rem; }
details[open] summary::after { content: "–"; }
details > div { padding: 0 20px 20px; color: var(--muted); }

.form-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label { font-weight: 740; font-size: .86rem; }
input, select, textarea { width: 100%; border: 1px solid #bcc9d3; border-radius: 9px; padding: 12px 13px; color: var(--ink); background: #fff; }
textarea { min-height: 125px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(36,103,209,.16); border-color: var(--blue); }
.form-note { color: var(--muted); font-size: .78rem; }
.form-status { margin-top: 16px; padding: 13px 14px; background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: 8px; }
.form-status.is-success { background: var(--green-soft); border-left-color: var(--green); color: var(--green); }
.form-status.is-error { background: var(--red-soft); border-left-color: var(--red); color: var(--red); }
button[type="submit"]:disabled { opacity: .62; cursor: not-allowed; }

.cta-band { padding: 58px 0; background: linear-gradient(120deg, var(--orange), #e95400); color: #fff; }
.cta-band .shell { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 740px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 720px; margin-top: 12px; }
.cta-band .button { flex: 0 0 auto; }

.site-footer { background: #0b1a25; color: #fff; padding: 66px 0 0; }
.footer-shell { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; display: grid; grid-template-columns: 1.5fr .65fr .65fr .95fr; gap: 40px; }
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer-brand p, .footer-action p { color: rgba(255,255,255,.68); max-width: 430px; }
.footer-column h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: #ffb176; margin-bottom: 16px; }
.footer-column a:not(.button) { display: block; color: rgba(255,255,255,.72); text-decoration: none; margin: 8px 0; font-size: .9rem; }
.footer-column a:not(.button):hover { color: #fff; }
.footer-action { padding: 22px; border-radius: 14px; background: rgba(255,255,255,.06); }
.footer-bottom { margin-top: 52px; padding: 20px max(18px, calc((100vw - var(--max)) / 2)); border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.52); font-size: .76rem; }

@media (max-width: 1080px) {
  .header-shell { min-height: 72px; }
  .brand img { width: 165px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 72px); overflow-y: auto; background: var(--ink); padding: 14px 18px 24px; border-top: 1px solid rgba(255,255,255,.08); }
  .menu-open .primary-nav { display: block; }
  .nav-link, .nav-trigger { width: 100%; justify-content: space-between; padding: 13px 12px; }
  .nav-panel, .nav-panel-grid, .nav-panel-right { position: static; width: auto; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: rgba(255,255,255,.06); margin: 0 0 8px; grid-template-columns: 1fr; }
  .nav-trigger[aria-expanded="true"] + .nav-panel { display: grid; }
  .nav-panel a { color: #fff; }
  .nav-panel strong { color: #fff; }
  .nav-panel span { color: rgba(255,255,255,.62); }
  .nav-panel a:hover, .nav-panel a:focus-visible { background: rgba(255,255,255,.08); }
  .nav-panel .nav-view-all { grid-column: auto; }
  .hero-grid, .subhero-grid, .split, .split-reverse { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-flow { grid-template-columns: repeat(3, 1fr); }
  .map-flow .map-box:nth-child(3)::after { display: none; }
  .footer-shell { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .section-tight { padding: 50px 0; }
  .hero { padding: 70px 0 62px; }
  .subhero { padding: 58px 0 54px; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .hero-card { padding: 18px; }
  .map-row { grid-template-columns: 1fr; }
  .map-arrow { transform: rotate(90deg); }
  .map-flow { grid-template-columns: 1fr; }
  .map-flow .map-box::after { display: none !important; }
  .score-top { align-items: flex-start; }
  .metric { grid-template-columns: 105px 1fr 38px; }
  .cta-band .shell { align-items: flex-start; flex-direction: column; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Company and review-specific components */
.profile-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.profile-card-wide { min-height: 100%; }
.profile-initials { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 850; letter-spacing: .04em; }
.profile-card h3 { margin: 5px 0 12px; }
.profile-card p { color: var(--muted); }
.page-privacy .subhero, .page-terms .subhero { background: linear-gradient(120deg, #0f2433, #183b4e); }

@media print {
  .site-header, .site-footer, .cta-band, .breadcrumb, .button { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .hero, .subhero { padding: 28px 0; }
  .card, .profile-card, .quote, .callout, .comparison { box-shadow: none; break-inside: avoid; }
}

.draft-banner {
  display: flex; justify-content: center; align-items: center; gap: 12px; padding: 8px 18px;
  background: #fff4e8; border-bottom: 1px solid #ffd1ac; color: #7b3100; font-size: .76rem;
}
.draft-banner strong { text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 720px) { .draft-banner { align-items: flex-start; flex-direction: column; gap: 2px; } }

/* Evidence artifact illustration */
.artifact-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.artifact-top { display: flex; justify-content: space-between; gap: 18px; padding: 18px 20px; background: var(--navy); color: #fff; }
.artifact-top span { color: rgba(255,255,255,.65); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.artifact-card dl { margin: 0; }
.artifact-card dl div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 13px 20px; border-bottom: 1px solid var(--line); }
.artifact-card dt { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.artifact-card dd { margin: 0; font-weight: 730; overflow-wrap: anywhere; }
.artifact-card > p { margin: 0; padding: 16px 20px; color: var(--muted); font-size: .78rem; }
.result-escalate { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: .76rem; font-weight: 850; }
/* Prevent accountability-chain labels from forcing the final box outside its card. */
.map-flow { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.map-flow .map-box { min-width: 0; overflow-wrap: anywhere; }
.hero-card .map-flow .map-box { padding-left: 6px; padding-right: 6px; font-size: .76rem; }

.hero-card .map-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-card .map-flow .map-box:nth-child(3)::after { display: none; }
