* {
  box-sizing: border-box;
  font-variant-ligatures: none !important;
  -webkit-font-feature-settings: "liga" 0, "clig" 0, "ss01", "cv11" !important;
  font-feature-settings: "liga" 0, "clig" 0, "ss01", "cv11" !important;
}

:root {
  --bg: #FAFAF7;
  --bg-sunk: #F4F3EE;
  --paper: #FFFFFF;
  --ink: #111211;
  --ink-2: #2A2B28;
  --muted: #6B6B64;
  --muted-2: #8A8A82;
  --line: #E6E4DC;
  --line-2: #D8D6CC;
  --line-3: #EFEDE5;
  --accent: #B8700E;
  --accent-soft: #F4E9D2;
  --accent-ink: #6D4207;
  --suppress: #9A2A2A;
  --suppress-soft: #F4E1DD;
  --review: #8A5A0B;
  --review-soft: #F2E6CC;
  --nomatch: #456852;
  --nomatch-soft: #E3EBE3;
  --radius: 6px;
  --radius-lg: 10px;
  --font-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --shadow-sm: 0 1px 0 rgba(17,18,17,0.04), 0 1px 2px rgba(17,18,17,0.03);
  --shadow-md: 0 1px 0 rgba(17,18,17,0.04), 0 8px 24px -12px rgba(17,18,17,0.10);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: none !important;
  -webkit-font-feature-settings: "liga" 0, "clig" 0, "ss01", "cv11" !important;
  font-feature-settings: "liga" 0, "clig" 0, "ss01", "cv11" !important;
}

a { color: inherit; }
::selection { background: var(--accent-soft); color: var(--accent-ink); }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.wrap-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

section:first-of-type { border-top: 0; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,250,247,0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--bg);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-tag .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 6px;
  vertical-align: 1px;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  color: var(--ink-2);
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 5px;
}

.lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow .bar {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--muted);
  vertical-align: middle;
  margin-right: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

.btn-ghost:hover { background: var(--bg-sunk); }

.page-hero {
  padding-top: 64px;
  padding-bottom: 80px;
}

.page-hero h1 {
  margin-top: 20px;
  max-width: 12.5ch;
}

.page-hero .lede {
  margin-top: 24px;
}

.page-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.page-meta {
  margin-top: 24px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}

.page-meta .item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-meta .item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-2);
}

.trust {
  background: var(--bg-sunk);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trust-card {
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 168px;
}

.trust-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-card .num {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  text-align: center;
  line-height: 16px;
  font-size: 10.5px;
  color: var(--ink);
}

.trust-card h3 { font-size: 17px; }
.trust-card p { font-size: 14.5px; line-height: 1.5; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.proof-card {
  background: var(--paper);
  padding: 26px;
  min-height: 238px;
}

.proof-card .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.proof-card h3 {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.proof-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

.how-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  overflow: hidden;
}

.how-step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.how-step h3 {
  font-size: 17px;
  letter-spacing: -0.015em;
}

.how-step p {
  font-size: 14.5px;
  line-height: 1.55;
}

.report-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.report-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.report-header .left { max-width: 620px; }

.report-tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.report-tab {
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  font: inherit;
}

.report-tab.active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.report {
  margin-top: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.report-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  gap: 18px;
  flex-wrap: wrap;
}

.report-toolbar .file {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.doc {
  width: 14px;
  height: 16px;
  border: 1.25px solid var(--ink);
  border-radius: 2px;
  position: relative;
  display: inline-block;
}

.doc::before,
.doc::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 1.25px;
  background: var(--ink);
}

.doc::before { top: 4px; }
.doc::after { top: 8px; }

.report-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.report-summary .cell {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.report-summary .cell:last-child { border-right: 0; }

.report-summary .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.report-summary .v {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.report-summary .v small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.tbl thead th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 12px 16px;
  background: var(--bg-sunk);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.tbl tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line-3);
  vertical-align: top;
}

.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: var(--bg-sunk); }
.tbl td.sku { font-family: var(--font-mono); font-size: 12px; color: var(--ink); white-space: nowrap; }
.tbl td.title { color: var(--ink); font-weight: 500; max-width: 320px; }
.tbl td.title .sub { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 3px; font-family: var(--font-mono); }
.tbl td.reason { color: var(--ink-2); font-size: 13px; max-width: 300px; line-height: 1.5; }
.tbl td.action { color: var(--ink-2); font-size: 13px; max-width: 320px; line-height: 1.5; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px 4px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.status-pill .sdot { width: 6px; height: 6px; border-radius: 50%; }
.status-pill.suppress { color: var(--suppress); background: var(--suppress-soft); border-color: #E8CFCA; }
.status-pill.suppress .sdot { background: var(--suppress); }
.status-pill.review { color: var(--review); background: var(--review-soft); border-color: #E5D3A8; }
.status-pill.review .sdot { background: var(--review); }
.status-pill.nomatch { color: var(--nomatch); background: var(--nomatch-soft); border-color: #CDDBCD; }
.status-pill.nomatch .sdot { background: var(--nomatch); }

.conf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  min-width: 110px;
}

.conf-bar {
  position: relative;
  flex: 1;
  height: 4px;
  background: var(--line-3);
  border-radius: 2px;
  overflow: hidden;
}

.conf-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--ink);
  border-radius: 2px;
  width: var(--w, 0%);
}

.conf.na { color: var(--muted); }
.conf.na .conf-bar { background: repeating-linear-gradient(90deg, var(--line-3) 0 4px, transparent 4px 8px); }
.conf.na .conf-bar::after { display: none; }

.hazard-chip {
  display: inline-block;
  padding: 3px 8px;
  background: var(--bg-sunk);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  white-space: nowrap;
}

.hazard-chip.none { color: var(--muted); }

.src-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  text-decoration: none;
  margin-top: 8px;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.src-link:hover {
  color: var(--ink);
  border-color: var(--line-2);
}

.report-cards {
  display: none;
  padding: 8px;
  gap: 8px;
}

.report-cards.show { display: grid; }

.r-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper);
  display: grid;
  gap: 10px;
}

.r-card .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.r-card .sku { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); }
.r-card .title { font-weight: 500; margin-top: 2px; }
.r-card .kv { display: grid; grid-template-columns: 88px 1fr; gap: 8px; font-size: 13px; }
.r-card .kv .k { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; padding-top: 2px; }

.report-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.legend { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.legend .li { display: inline-flex; align-items: center; gap: 6px; }
.legend .li .d { width: 6px; height: 6px; border-radius: 50%; }

.data-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.data-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.data-card .head,
.content-card .head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--bg-sunk);
}

.data-card .head h3,
.content-card .head h3 {
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}

.tag.send,
.tag.good {
  background: var(--nomatch-soft);
  color: var(--nomatch);
}

.tag.dont,
.tag.warn {
  background: var(--suppress-soft);
  color: var(--suppress);
}

.data-card .body,
.content-card .body {
  padding: 20px;
}

.content-card .body {
  display: grid;
  gap: 14px;
}

.benchmark-list {
  display: grid;
  gap: 16px;
}

.benchmark-row .body {
  gap: 16px;
}

.kv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}

.kv-grid .k {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kv-grid p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
}

.content-card ul,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.content-card li,
.clean-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

.content-card li::before,
.clean-list li::before {
  content: "";
  margin-top: 10px;
  width: 10px;
  height: 1px;
  background: var(--ink);
}

.dont-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dont-list li {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  color: var(--ink-2);
  background: var(--bg);
  text-decoration: line-through;
  text-decoration-color: var(--suppress);
  text-decoration-thickness: 1px;
}

.data-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.csv {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.8;
  background: var(--bg);
  border: 1px dashed var(--line-2);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink-2);
  overflow-x: auto;
  white-space: nowrap;
}

.csv .h { color: var(--ink); font-weight: 500; }
.csv .row { color: var(--muted); }

.template-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 12.5px;
}

.template-table th {
  background: var(--bg-sunk);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .045em;
  text-transform: uppercase;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.template-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line-3);
  vertical-align: top;
  overflow-wrap: anywhere;
}

.template-table tr:last-child td { border-bottom: 0; }

.demo-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.demo-toolbar {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 20px;
  margin-top: 34px;
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
}

.demo-control-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: grid;
  gap: 18px;
}

.demo-control-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.demo-control-head h3 {
  margin-top: 10px;
  max-width: 26ch;
}

.demo-sample-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.demo-sample-buttons .btn {
  min-height: 40px;
  padding: 0 14px;
}

.demo-sample-buttons .btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.demo-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-textarea {
  width: 100%;
  min-height: 136px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  font: 12.5px/1.55 var(--font-mono);
  padding: 14px;
}

.demo-textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.prep-textarea {
  min-height: 236px;
}

.demo-actions {
  margin-top: 0;
}

.demo-alert {
  display: none;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.5;
}

.demo-alert.show {
  display: block;
}

.demo-alert.good {
  background: var(--nomatch-soft);
  border-color: #CDDBCD;
  color: var(--nomatch);
}

.demo-alert.warn {
  background: var(--suppress-soft);
  border-color: #E8CFCA;
  color: var(--suppress);
}

.demo-input-table {
  min-width: 860px;
}

.demo-input {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  font: 13px/1.35 var(--font-body);
  padding: 8px 9px;
}

.demo-input:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.demo-results {
  padding: 12px;
}

.demo-audit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.prep-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.prep-preview {
  margin-top: 16px;
}

.audit-item {
  background: var(--bg);
  padding: 16px 18px;
}

.audit-item .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.audit-item .v {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.audit-item p {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

.audit-item.blocked {
  grid-column: 1 / -1;
  background: var(--suppress-soft);
  color: var(--suppress);
}

.audit-item.blocked p,
.audit-item.blocked .k {
  color: var(--suppress);
}

.demo-result-card {
  border-left: 4px solid var(--line-2);
}

.demo-result-card.suppress { border-left-color: var(--suppress); }
.demo-result-card.review { border-left-color: var(--review); }
.demo-result-card.nomatch { border-left-color: var(--nomatch); }

.demo-sub {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.45;
}

.callout {
  background: var(--accent-soft);
  border: 1px solid #E6CF9F;
  border-radius: 10px;
  padding: 22px;
}

.callout p {
  color: var(--accent-ink);
}

.pdf-preview {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.pdf-shot {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  box-shadow: var(--shadow-md);
}

.pdf-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.packet-hero h1 {
  max-width: 13.5ch;
}

.packet-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.packet-strip .cell {
  background: var(--paper);
  padding: 22px;
}

.packet-strip .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.packet-strip .v {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.03em;
}

.packet-shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.packet-shot {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.packet-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}

.packet-shot .copy {
  padding: 20px;
}

.packet-shot .copy h3 {
  font-size: 17px;
}

.packet-shot .copy p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

.packet-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.packet-flow .how-step {
  min-height: 0;
}

.packet-note {
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 24px;
}

.packet-note p {
  max-width: 76ch;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
}

.final {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--ink);
}

.final h2 {
  color: var(--bg);
  max-width: 22ch;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
}

.final p {
  color: #C9C8BF;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.55;
  margin-top: 18px;
}

.final .btn-primary {
  background: var(--bg);
  color: var(--ink);
}

.final .btn-primary:hover { background: #fff; }
.final .btn-ghost { color: var(--bg); border-color: #3A3B37; }
.final .btn-ghost:hover { background: #1B1C19; }

.legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #2A2B28;
  color: #9A9990;
  font-size: 13px;
  line-height: 1.55;
  max-width: 72ch;
}

.legal .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C9C8BF;
  margin-right: 8px;
}

footer.foot {
  padding: 32px 0 56px;
  color: var(--muted);
  font-size: 13px;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.foot .mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-family: var(--font-display);
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(17,18,17,.25);
}

@media (max-width: 900px) {
  .tbl { display: none; }
  .report-cards { display: grid; }
  .pdf-preview { grid-template-columns: 1fr; }
  .demo-toolbar { grid-template-columns: 1fr; }
  .prep-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .demo-audit { grid-template-columns: 1fr 1fr; }
  .packet-shot-grid,
  .packet-flow {
    grid-template-columns: 1fr;
  }
  .kv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  section { padding: 72px 0; }
  .trust-grid,
  .how-grid,
  .data-grid,
  .proof-grid,
  .demo-audit,
  .prep-summary,
  .packet-strip {
    grid-template-columns: 1fr;
  }
  .kv-grid {
    grid-template-columns: 1fr;
  }
  .report-summary {
    grid-template-columns: 1fr 1fr;
  }
  .report-summary .cell {
    border-bottom: 1px solid var(--line);
  }
  .report-summary .cell:nth-child(even) {
    border-right: 0;
  }
  .report-summary .cell:last-child {
    border-bottom: 0;
  }
  .template-table {
    font-size: 11px;
  }
  .template-table th,
  .template-table td {
    padding: 10px 6px;
  }
}

@media print {
  .nav,
  footer.foot,
  .page-actions {
    display: none !important;
  }

  body {
    background: var(--bg);
  }

  section {
    padding: 42px 0;
    break-inside: avoid;
  }

  .packet-shot,
  .trust-card,
  .how-step,
  .content-card,
  .packet-note {
    break-inside: avoid;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    height: auto;
    min-height: 72px;
    padding: 14px 0;
    gap: 10px;
  }
  .nav-links {
    display: none;
  }
  .nav-tag {
    font-size: 10px;
  }
}
