/* =========================================================
   Variant Lab — Location Change Obligation Map
   Token system
   ========================================================= */

:root {
  /* Color */
  --bg-page: #F6F7F9;
  --bg-panel: #FFFFFF;
  --bg-subtle: #F0F2F5;
  --navy: #101B33;
  --navy-soft: #48566B;
  --navy-faint: #8994A6;
  --border: #E3E7EE;
  --border-strong: #D2D8E2;

  --teal: #0F766E;
  --teal-soft: #14958A;
  --teal-tint: #E9F5F3;

  --red: #A32A21;
  --red-tint: #FBEBE9;
  --red-border: #EFC9C4;

  --amber: #92600A;
  --amber-tint: #FBF1DE;
  --amber-border: #EFDBAE;

  --blue: #1D4E89;
  --blue-tint: #E9F0FA;
  --blue-border: #C9DAF0;

  --gray: #4B5565;
  --gray-tint: #EEF0F3;
  --gray-border: #D9DEE5;

  --green: #1E7A4C;
  --green-tint: #E9F6EE;
  --green-border: #C5E5D3;

  /* Type */
  --font-sans: -apple-system, "Segoe UI", "Helvetica Neue", "Inter", Arial, sans-serif;
  --font-mono: ui-monospace, "IBM Plex Mono", "SF Mono", "Cascadia Mono", Consolas, monospace;

  /* Spacing / shape */
  --radius-sm: 5px;
  --radius-md: 8px;
  --shadow-sm: 0 1px 2px rgba(16, 27, 51, 0.06);
  --shadow-md: 0 2px 10px rgba(16, 27, 51, 0.07);
  --content-max: 1300px;
}

@media (prefers-reduced-motion: no-preference) {
  :root { --transition-fast: 140ms ease; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

h1, h2, h3 { margin: 0; color: var(--navy); font-weight: 650; letter-spacing: -0.015em; }

p { margin: 0; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark { flex-shrink: 0; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.brand-tagline {
  font-size: 11.5px;
  color: var(--navy-soft);
  letter-spacing: 0.01em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   Buttons & badges
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition-fast, 140ms ease), border-color var(--transition-fast, 140ms ease);
}

.btn-ghost {
  background: var(--bg-panel);
  color: var(--navy);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-subtle); }

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: #1a2946; }

.btn-large {
  padding: 11px 20px;
  font-size: 14.5px;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 650;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-sample {
  background: var(--amber-tint);
  color: var(--amber);
  border: 1px solid var(--amber-border);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid transparent;
}

.status-atrisk { background: var(--red-tint); color: var(--red); border-color: var(--red-border); }
.status-upcoming { background: var(--amber-tint); color: var(--amber); border-color: var(--amber-border); }
.status-pending { background: var(--blue-tint); color: var(--blue); border-color: var(--blue-border); }
.status-notstarted { background: var(--gray-tint); color: var(--gray); border-color: var(--gray-border); }
.status-complete { background: var(--green-tint); color: var(--green); border-color: var(--green-border); }

/* =========================================================
   Report shell
   ========================================================= */

.report-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 32px 28px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.panel-heading {
  font-size: 16.5px;
  margin-bottom: 4px;
}

.panel-heading-row {
  margin-bottom: 18px;
}

.panel-subheading {
  font-size: 13px;
  color: var(--navy-soft);
  margin-top: 3px;
}

/* Report identity */

.report-identity {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px 22px;
  box-shadow: var(--shadow-sm);
}

.identity-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 8px;
}

.report-identity h1 {
  font-size: 27px;
  margin-bottom: 8px;
}

.report-subtitle {
  font-size: 14.5px;
  color: var(--navy-soft);
  max-width: 46ch;
}

.identity-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.meta-label { color: var(--navy-faint); }
.meta-value { color: var(--navy); font-weight: 600; }

.disclaimer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--navy-soft);
  font-style: italic;
  line-height: 1.6;
}

/* Event summary */

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-item-wide { grid-column: span 2; }

.summary-label {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-faint);
}

.summary-value {
  font-size: 14px;
  color: var(--navy);
  font-weight: 550;
}

.tag-fictional {
  display: inline-block;
  margin-left: 8px;
  font-size: 10.5px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy-faint);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 100px;
  vertical-align: middle;
}

/* Metrics */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-card-alert {
  border-color: var(--red-border);
  background: var(--red-tint);
}

.metric-value {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.metric-card-alert .metric-value { color: var(--red); }

.metric-label {
  font-size: 12.5px;
  color: var(--navy-soft);
}

/* Alert */

.alert {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--red-border);
  background: var(--red-tint);
}

.alert-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-body h3 {
  font-size: 15px;
  color: var(--red);
  margin-bottom: 6px;
}

.alert-body p {
  font-size: 13.5px;
  color: #6E241C;
  line-height: 1.6;
}

.alert-recommend {
  margin-top: 10px;
}

.alert-recommend span {
  font-weight: 700;
}

/* =========================================================
   Obligation table
   ========================================================= */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.obligation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 880px;
}

.obligation-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-soft);
  background: var(--bg-subtle);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.obligation-table tbody td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--navy);
}

.obligation-table tbody tr:last-child td { border-bottom: none; }
.obligation-table tbody tr:hover { background: var(--bg-subtle); }

.payer-name {
  display: block;
  font-weight: 650;
}

.payer-type {
  display: block;
  font-size: 11.5px;
  color: var(--navy-faint);
  margin-top: 2px;
}

.deadline-rule {
  display: block;
  color: var(--navy-soft);
}

.deadline-date {
  display: block;
  margin-top: 3px;
  font-weight: 600;
}

.evidence-cite {
  color: var(--teal);
  background: var(--teal-tint);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}

/* =========================================================
   Accordions
   ========================================================= */

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  cursor: pointer;
  list-style: none;
  background: var(--bg-panel);
  font-weight: 600;
  font-size: 14px;
  user-select: none;
}

.accordion-trigger::-webkit-details-marker { display: none; }

.accordion-title { flex-grow: 1; }

.accordion-priority {
  font-size: 11px;
  font-weight: 650;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.priority-high { background: var(--red-tint); color: var(--red); }
.priority-medium { background: var(--amber-tint); color: var(--amber); }
.priority-low { background: var(--gray-tint); color: var(--gray); }

.chev {
  color: var(--navy-faint);
  transition: transform var(--transition-fast, 140ms ease);
  flex-shrink: 0;
}

.accordion-item[open] .chev { transform: rotate(180deg); }

.accordion-body {
  padding: 4px 18px 20px;
  border-top: 1px solid var(--border);
}

.evidence-clause {
  font-size: 14px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  padding: 14px 16px;
  margin-top: 14px;
  background: var(--bg-subtle);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.evidence-note-fictional {
  font-size: 11.5px;
  color: var(--navy-faint);
  margin-top: 8px;
}

.evidence-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 18px 0 0;
}

.evidence-detail-grid dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-faint);
  margin-bottom: 4px;
}

.evidence-detail-grid dd {
  margin: 0;
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.55;
}

/* =========================================================
   Checklist
   ========================================================= */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}

.checklist li:nth-last-child(-n+2) label { border-bottom: none; }

.checklist input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  flex-shrink: 0;
}

.checklist input:checked + span {
  color: var(--navy-faint);
  text-decoration: line-through;
}

.checklist-progress {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--navy-soft);
  font-weight: 600;
}

/* =========================================================
   Action plan
   ========================================================= */

.action-plan {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.action-plan li {
  display: flex;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.action-plan li:last-child { border-bottom: none; }

.action-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 1px;
}

.action-text {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
  padding-top: 2px;
}

.ownership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.ownership-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.ownership-role {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
}

.ownership-scope {
  font-size: 12.5px;
  color: var(--navy-soft);
}

/* =========================================================
   How it works
   ========================================================= */

.how-it-works { background: var(--bg-subtle); }

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

.how-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
}

.how-step p {
  font-size: 13.5px;
  color: var(--navy-soft);
  line-height: 1.6;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-panel {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-panel h2 {
  color: #fff;
  font-size: 22px;
  max-width: 32ch;
}

.cta-panel p {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  max-width: 52ch;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-panel .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.cta-panel .btn-ghost:hover { background: rgba(255,255,255,0.08); }

.cta-panel .btn-primary { background: var(--teal); }
.cta-panel .btn-primary:hover { background: var(--teal-soft); }

.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 28px 40px;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--navy-faint);
}

.brand-name-small {
  font-weight: 700;
  color: var(--navy-soft);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-item-wide { grid-column: span 2; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .ownership-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 720px) {
  .header-inner { padding: 12px 16px; }
  .brand-tagline { display: none; }
  .report-shell { padding: 20px 16px 48px; }
  .panel, .report-identity { padding: 20px; }

  .identity-top { flex-direction: column; }
  .identity-meta { width: 100%; }
  .report-identity h1 { font-size: 22px; }

  .summary-grid { grid-template-columns: 1fr; }
  .summary-item-wide { grid-column: span 1; }

  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .metric-value { font-size: 20px; }

  .evidence-detail-grid { grid-template-columns: 1fr; }

  .checklist { grid-template-columns: 1fr; }
  .checklist li:nth-last-child(-n+2) label { border-bottom: 1px solid var(--border); }
  .checklist li:last-child label { border-bottom: none; }

  .ownership-grid { grid-template-columns: 1fr; }

  .cta-panel { padding: 30px 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Table -> stacked cards */
  .table-wrap { border: none; overflow: visible; }
  .obligation-table { min-width: 0; }
  .obligation-table thead { display: none; }
  .obligation-table, .obligation-table tbody, .obligation-table tr, .obligation-table td {
    display: block;
    width: 100%;
  }
  .obligation-table tr {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--bg-panel);
  }
  .obligation-table td {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .obligation-table tr:hover { background: var(--bg-panel); }
  .obligation-table td:last-child { border-bottom: none; }
  .obligation-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy-faint);
    margin-bottom: 5px;
  }
}

@media (max-width: 400px) {
  .header-actions { width: 100%; justify-content: space-between; }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  @page { size: letter; margin: 0.4in; }

  body { background: #fff; font-size: 8.6px; line-height: 1.4; }

  .site-header .header-actions .btn,
  .skip-link { display: none !important; }

  .site-header {
    position: static;
    backdrop-filter: none;
    border-bottom: 1.5px solid var(--navy);
  }
  .header-inner { padding: 6px 0; }
  .brand-mark { width: 20px; height: 20px; }
  .brand-name { font-size: 11px; }
  .brand-tagline { font-size: 8px; }

  .badge-sample { border: 1px solid var(--amber); padding: 2px 7px; font-size: 8px; }

  .report-shell { padding: 8px 0 0; gap: 8px; }

  .panel, .report-identity {
    box-shadow: none;
    padding: 10px 12px;
    border-color: var(--border-strong);
  }

  .report-identity h1 { font-size: 16px; margin-bottom: 4px; }
  .report-subtitle { font-size: 9px; }
  .eyebrow { font-size: 8px; margin-bottom: 4px; }
  .disclaimer { margin-top: 8px; padding-top: 8px; font-size: 8px; }
  .identity-meta { gap: 3px; }
  .meta-row { font-size: 8.5px; gap: 10px; }

  .panel-heading { font-size: 11px; }
  .panel-heading-row { margin-bottom: 8px; }
  .panel-subheading { font-size: 8px; margin-top: 1px; }

  .summary-grid { gap: 8px 20px; grid-template-columns: repeat(4, 1fr); }
  .summary-label { font-size: 7.5px; }
  .summary-value { font-size: 9px; }

  .metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .metric-card { padding: 8px 10px; box-shadow: none; break-inside: avoid; gap: 2px; }
  .metric-value { font-size: 15px; }
  .metric-label { font-size: 8px; }

  .alert { padding: 8px 12px; break-inside: avoid; gap: 8px; }
  .alert-icon { width: 13px; height: 13px; }
  .alert-body h3 { font-size: 9.5px; margin-bottom: 3px; }
  .alert-body p { font-size: 8.5px; }
  .alert-recommend { margin-top: 5px; }

  .table-wrap { border: 1px solid var(--border-strong); overflow: visible; }
  .obligation-table { font-size: 7.3px; min-width: 0; width: 100%; table-layout: fixed; }
  .obligation-table th:nth-child(3), .obligation-table td:nth-child(3) { width: 19%; }
  .obligation-table th:nth-child(5), .obligation-table td:nth-child(5) { width: 12%; }
  .obligation-table thead { display: table-header-group; }
  .obligation-table tr { display: table-row; }
  .obligation-table td { display: table-cell; padding: 7px 8px; }
  .obligation-table thead th { padding: 6px 6px; font-size: 6.6px; white-space: normal; line-height: 1.25; }
  .obligation-table tbody td { padding: 7px 6px; }
  .obligation-table td::before { content: none; }
  .obligation-table tr { break-inside: avoid; }
  .payer-type, .evidence-note-fictional { font-size: 7.5px; }
  .evidence-cite { font-size: 7.5px; padding: 1px 5px; }

  .accordion-list { gap: 5px; }
  .accordion-item { break-inside: avoid; border-color: var(--border-strong); }
  .accordion-trigger { padding: 6px 10px; font-size: 9px; }
  .accordion-priority { font-size: 7px; padding: 2px 6px; }
  details { break-inside: avoid; }
  details:not([open]) { display: block; }
  .accordion-body,
  details:not([open]) .accordion-body {
    display: block !important;
    content-visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    padding: 2px 10px 8px;
  }
  .accordion-trigger { cursor: default; }
  .chev { display: none; }
  .evidence-clause { font-size: 8.5px; padding: 6px 8px; margin-top: 6px; }
  .evidence-note-fictional { margin-top: 4px; }
  .evidence-detail-grid { gap: 6px 16px; margin-top: 8px; }
  .evidence-detail-grid dt { font-size: 7px; margin-bottom: 1px; }
  .evidence-detail-grid dd { font-size: 8.5px; line-height: 1.4; }

  .checklist { gap: 0; grid-template-columns: repeat(2, 1fr); }
  .checklist label { padding: 3px 4px; font-size: 8.5px; }
  .checklist input[type="checkbox"] { width: 10px; height: 10px; }
  .checklist-progress { display: none; }

  .action-plan { margin-bottom: 8px; }
  .action-plan li { padding: 4px 4px; gap: 8px; }
  .action-num { width: 14px; height: 14px; font-size: 7.5px; }
  .action-text { font-size: 8.5px; padding-top: 0; }

  .ownership-grid { gap: 6px; padding-top: 8px; }
  .ownership-item { padding: 6px 8px; }
  .ownership-role { font-size: 8px; }
  .ownership-scope { font-size: 8px; }

  .how-it-works { background: #fff; border: 1px solid var(--border-strong); }
  .how-grid { gap: 10px; margin-top: 8px; }
  .how-label { font-size: 7.5px; }
  .how-step p { font-size: 8.5px; }

  .cta-panel {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--border-strong);
    padding: 10px 12px;
    gap: 4px;
  }
  .cta-panel h2 { font-size: 12px; }
  .cta-panel p { font-size: 8.5px; }
  .cta-panel h2, .cta-panel p, .cta-note { color: var(--navy); }
  .cta-panel .btn { display: none; }
  .cta-note { font-size: 7.5px; }

  a[href]::after { content: none; }

  .site-footer { border-top: 1px solid var(--border-strong); padding: 6px 0; }
  .footer-inner { font-size: 7.5px; }
}
