:root {
  --ink: #142c29;
  --ink-2: #1f4540;
  --green: #2f7467;
  --green-2: #4b9585;
  --green-soft: #e9f2ee;
  --green-pale: #f4f8f6;
  --sand: #c99558;
  --sand-soft: #f8eee1;
  --cream: #f5f4ef;
  --paper: #ffffff;
  --line: #e1e6e2;
  --line-strong: #c9d3cd;
  --muted: #6e7b75;
  --red: #b85d49;
  --red-soft: #f8e9e5;
  --shadow: 0 16px 40px rgba(20, 44, 41, 0.08);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--cream); font-size: 14px; }
button, input { font: inherit; }
button { color: inherit; }

.app-shell { min-height: 100vh; }
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 244px;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 22px;
  color: #f9faf7;
  background: var(--ink);
}
.brand { display: flex; align-items: center; gap: 11px; padding: 3px 8px 36px; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #dbb879;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}
.brand strong { display: block; font-size: 19px; letter-spacing: 2px; }
.brand small { display: block; margin-top: 2px; color: #aabcb5; font-size: 10px; letter-spacing: .5px; }
.nav-caption { margin: 0 12px 10px; color: #8fa79e; font-size: 11px; letter-spacing: 1px; }
.nav-list { display: grid; gap: 5px; }
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #c8d2ce;
  text-align: left;
  cursor: pointer;
}
.nav-item span { color: #8fa9a0; font-size: 10px; }
.nav-item:hover { background: rgba(255, 255, 255, .06); }
.nav-item.active { background: #2d514d; color: #fff; }
.nav-item.active span { color: #dfc49a; }
.sidebar-role {
  margin: 28px 8px 0;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
}
.sidebar-role small { display: block; color: #d8ba8b; font-size: 9px; letter-spacing: .8px; }
.sidebar-role strong { display: block; margin-top: 7px; font-size: 14px; }
.sidebar-role p { margin: 5px 0 0; color: #aebfb8; font-size: 10px; line-height: 1.55; }
.sidebar-source { display: flex; align-items: center; gap: 8px; margin-top: auto; padding: 8px; color: #95aaa2; font-size: 11px; }
.sidebar-source i { width: 7px; height: 7px; border-radius: 50%; background: #d6ae71; }

.main { width: calc(100% - 244px); min-height: 100vh; margin-left: 244px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 244, 239, .94);
  backdrop-filter: blur(14px);
}
.topbar > div:first-child { display: flex; gap: 9px; align-items: center; font-size: 13px; }
.topbar span { color: var(--muted); }
.topbar b { color: #b7bdb9; font-weight: 400; }
.topbar-meta { display: flex; align-items: center; gap: 14px; font-size: 11px; }
.topbar-meta button {
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 50%;
  background: var(--ink-2);
  color: white;
}

.page { display: none; max-width: 1520px; margin: 0 auto; padding: 38px 48px 68px; }
.page.active { display: block; animation: page-enter .22s ease; }
@keyframes page-enter { from { opacity: .35; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.page-head h1 { margin: 0 0 8px; font-size: 29px; letter-spacing: -.8px; }
.page-head p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.head-actions { display: flex; gap: 9px; }

.primary-button, .outline-button, .text-button, .table-action {
  border-radius: 7px;
  cursor: pointer;
  font-weight: 650;
}
.primary-button, .outline-button { padding: 10px 16px; }
.primary-button { border: 1px solid var(--ink); background: var(--ink); color: white; }
.primary-button:hover { background: var(--ink-2); }
.outline-button { border: 1px solid var(--line-strong); background: transparent; }
.outline-button:hover { border-color: var(--green); color: var(--green); }
.text-button { padding: 5px 0; border: 0; background: transparent; color: var(--green); }
.table-action { padding: 6px 9px; border: 1px solid #b9ccc3; background: transparent; color: var(--green); font-size: 10px; white-space: nowrap; }
.full-button { width: 100%; }

.ai-report {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 26px;
  padding: 30px 32px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.report-label, .clinic-report > div > span {
  color: #dfbf8b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1px;
}
.report-main h2 { max-width: 900px; margin: 12px 0 21px; font-size: 25px; line-height: 1.45; letter-spacing: -.4px; }
.report-evidence { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.report-evidence > div {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  align-items: start;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  background: rgba(255, 255, 255, .045);
}
.report-evidence b { color: #d8b77f; font-size: 9px; line-height: 1.8; }
.report-evidence p { margin: 0; color: #d9e1dd; font-size: 11px; line-height: 1.55; }
.report-side {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
}
.report-side p { margin: 0 0 18px; color: #bacac3; font-size: 10px; line-height: 1.7; }
.report-side .primary-button { border-color: #d8b77f; background: #d8b77f; color: var(--ink); }
.loading { color: #d8e0dc; }

.overview-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.overview-item { min-width: 0; padding: 17px 18px; border-right: 1px solid var(--line); }
.overview-item:last-child { border-right: 0; }
.overview-item span, .overview-item small { display: block; }
.overview-item span { color: var(--muted); font-size: 10px; }
.overview-item strong { display: block; margin: 7px 0 5px; font-size: 20px; letter-spacing: -.3px; }
.overview-item small { overflow: hidden; font-size: 10px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }

.section-block { margin-top: 22px; padding: 24px; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); }
.section-head, .subsection-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.section-head { margin-bottom: 18px; }
.subsection-head { margin: 24px 0 15px; padding-top: 22px; border-top: 1px solid var(--line); }
.section-head h2, .subsection-head h3 { margin: 0 0 5px; letter-spacing: -.2px; }
.section-head h2 { font-size: 19px; }
.subsection-head h3 { font-size: 16px; }
.section-head p, .subsection-head p, .panel-head p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.section-head > span { color: var(--muted); font-size: 10px; }

.data-table-wrap { width: calc(100% + 48px); margin: 0 -24px -24px; overflow-x: auto; }
.data-table { width: 100%; min-width: 1000px; border-collapse: collapse; text-align: left; }
.data-table th {
  padding: 11px 16px;
  background: #f5f7f4;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}
.data-table td { padding: 13px 16px; border-top: 1px solid var(--line); font-size: 11px; line-height: 1.5; vertical-align: middle; }
.data-table tbody tr { transition: background .16s; }
.data-table tbody tr:hover { background: #f7f9f6; }
.data-table tbody tr.selected { background: var(--green-soft); }
.data-table tbody tr.control-row { background: #faf8f4; }
.data-table td strong { font-size: 11px; }
.data-table td small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.table-primary { padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.table-primary strong { display: block; color: var(--ink); }
.district-table, .store-table { min-width: 1100px; }
.band-table { min-width: 1120px; }
.product-table { min-width: 980px; }
.strategy-table { min-width: 1280px; }
.strategy-table td:nth-child(2) { min-width: 190px; white-space: normal; }
.strategy-table td:nth-child(3) { min-width: 170px; white-space: normal; }
.strategy-store-table { min-width: 1240px; }
.strategy-store-table td:nth-child(3) { min-width: 190px; white-space: normal; }
.judgement, .attention-label, .status-label, .decision-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.35;
}
.judgement, .attention-label, .status-label { padding: 5px 8px; background: var(--green-soft); color: var(--green); }
.judgement.watch { background: var(--sand-soft); color: #8d6637; }
.judgement.risk, .status-label.risk { background: var(--red-soft); color: var(--red); }
.judgement.good { background: var(--green-soft); color: var(--green); }

.positive-value { color: var(--green); font-weight: 700; }
.negative-value { color: var(--red); font-weight: 700; }
.neutral-value { color: var(--muted); }
.cell-bar { position: relative; min-width: 88px; padding-bottom: 8px; }
.cell-bar span { position: relative; z-index: 1; }
.cell-bar i { position: absolute; bottom: 0; left: 0; height: 3px; border-radius: 3px; background: var(--green-2); }

.dashboard-grid, .clinic-dashboard-grid, .clinic-action-grid, .strategy-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: 18px;
}
.clinic-dashboard-grid, .clinic-action-grid, .strategy-bottom-grid { margin-top: 20px; }
.clinic-action-grid, .strategy-bottom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.panel { min-width: 0; padding: 21px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.section-block .panel { background: #fdfefd; }
.panel-head { display: flex; justify-content: space-between; gap: 14px; }
.panel-head h3 { margin: 0 0 5px; font-size: 16px; }
.chart-host { min-height: 275px; margin-top: 10px; }
.chart-host svg { width: 100%; height: auto; overflow: visible; }
.chart-host svg text { fill: #7e8983; font-size: 9px; }
.chart-grid { stroke: #e9ece8; stroke-width: 1; }
.line-current, .line-prior, .line-peer { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.line-current { stroke: var(--green); stroke-width: 3; }
.line-prior { stroke: var(--sand); stroke-width: 2.2; stroke-dasharray: 5 4; }
.line-peer { stroke: #879a93; stroke-width: 2; stroke-dasharray: 2 4; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 5px; color: var(--muted); font-size: 10px; }
.chart-legend span { display: flex; align-items: center; gap: 6px; }
.chart-legend i { width: 16px; height: 2px; }
.legend-current { background: var(--green); }
.legend-prior { background: var(--sand); }
.legend-peer { background: #879a93; }
.chart-direct-labels { display: flex; justify-content: flex-end; gap: 18px; margin-top: -5px; color: var(--muted); font-size: 10px; }
.chart-direct-labels span:first-child { color: var(--green); font-weight: 700; }

.quality-list { display: grid; gap: 18px; margin-top: 22px; }
.quality-row > div:first-child { display: flex; justify-content: space-between; gap: 12px; font-size: 11px; }
.quality-row strong { font-size: 12px; }
.quality-track { height: 7px; margin: 8px 0 6px; overflow: hidden; border-radius: 8px; background: #edf0ed; }
.quality-track i { display: block; height: 100%; border-radius: inherit; background: var(--green); }
.quality-track i.risk-fill { background: var(--red); }
.quality-row p { margin: 0; color: var(--muted); font-size: 9px; }
.insight-banner {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--sand);
  background: var(--sand-soft);
}
.insight-banner strong { color: #8d6637; font-size: 11px; }
.insight-banner p { margin: 0; color: #675b49; font-size: 11px; line-height: 1.65; }

.task-summary, .strategy-summary {
  display: grid;
  align-items: center;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}
.task-summary { grid-template-columns: 150px 150px minmax(0, 1fr); margin-bottom: 18px; }
.task-summary > div, .task-summary > p, .strategy-summary > div, .strategy-summary > p { height: 100%; margin: 0; padding: 16px 18px; background: var(--paper); }
.task-summary > div { display: flex; align-items: baseline; gap: 8px; }
.task-summary span, .strategy-summary span { color: var(--muted); font-size: 10px; }
.task-summary strong, .strategy-summary strong { font-size: 22px; }
.task-summary p, .strategy-summary p { display: flex; align-items: center; color: #53675e; font-size: 10px; line-height: 1.55; }
.task-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.task-list { display: grid; gap: 11px; }
.task-card {
  width: 100%;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  text-align: left;
  cursor: pointer;
}
.task-card:hover, .task-card.selected { border-color: #8fb3a5; box-shadow: 0 8px 22px rgba(30, 72, 63, .08); }
.task-card.selected { background: var(--green-pale); }
.task-index { color: #9ca6a1; font-size: 10px; line-height: 2; }
.task-heading { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.task-heading h2 { margin: 0; font-size: 17px; }
.task-heading span { padding: 4px 7px; border-radius: 999px; background: var(--sand-soft); color: #8b6538; font-size: 9px; font-weight: 700; }
.task-metrics { display: flex; flex-wrap: wrap; gap: 7px 16px; margin-top: 11px; }
.task-metrics span { color: var(--muted); font-size: 10px; }
.task-metrics b { margin-right: 5px; color: var(--ink); font-weight: 650; }
.task-action { margin: 11px 0 0; color: #42554d; font-size: 11px; line-height: 1.55; }
.task-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.task-detail {
  position: sticky;
  top: 88px;
  padding: 24px;
  border-radius: 11px;
  background: var(--ink-2);
  color: white;
}
.detail-label { color: #d8ba8b; font-size: 9px; font-weight: 700; letter-spacing: .8px; }
.task-detail h2 { margin: 11px 0 8px; font-size: 22px; }
.task-detail .status-label { margin-bottom: 17px; background: rgba(219, 184, 121, .14); color: #e0c391; }
.detail-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .1); }
.detail-metrics > div { padding: 12px; background: #214a44; }
.detail-metrics span, .detail-metrics strong { display: block; }
.detail-metrics span { color: #a8beb5; font-size: 9px; }
.detail-metrics strong { margin-top: 5px; font-size: 13px; }
.detail-block { margin-top: 17px; }
.detail-block span { color: #d9bd8f; font-size: 9px; font-weight: 700; }
.detail-block p { margin: 5px 0 0; color: #d6dfdb; font-size: 11px; line-height: 1.6; }
.detail-meta { display: grid; gap: 5px; margin: 18px 0; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, .12); color: #a8bbb3; font-size: 9px; }
.task-detail .primary-button { border-color: #d8b77f; background: #d8b77f; color: var(--ink); }

.clinic-report {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 30px;
  border-radius: 13px 13px 0 0;
  background: var(--ink);
  color: white;
}
.clinic-report h2 { max-width: 980px; margin: 11px 0 0; font-size: 22px; line-height: 1.52; }
.clinic-report-meta { min-width: 155px; display: grid; align-content: start; gap: 7px; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .15); }
.clinic-report-meta span { color: #bccac4; font-size: 9px; }
.metric-strip, .clinic-metrics {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.clinic-metrics { margin: 0; border-top: 0; border-radius: 0 0 10px 10px; }
.metric-strip > div, .clinic-metrics > div { min-width: 0; padding: 15px; border-right: 1px solid var(--line); }
.metric-strip > div:last-child, .clinic-metrics > div:last-child { border-right: 0; }
.metric-strip span, .metric-strip small, .clinic-metrics span, .clinic-metrics small { display: block; }
.metric-strip span, .clinic-metrics span { color: var(--muted); font-size: 9px; }
.metric-strip strong, .clinic-metrics strong { display: block; margin: 6px 0 4px; font-size: 17px; letter-spacing: -.25px; }
.metric-strip small, .clinic-metrics small { overflow: hidden; font-size: 9px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.clinic-insights { display: grid; gap: 1px; margin: 14px -21px -21px; background: var(--line); }
.insight-row { display: grid; grid-template-columns: 27px minmax(0, 1fr); gap: 9px; align-items: start; padding: 14px 21px; background: var(--paper); }
.insight-row b { color: var(--sand); font-size: 9px; line-height: 1.7; }
.insight-row span { color: var(--green); font-size: 9px; font-weight: 700; }
.insight-row p { margin: 4px 0 0; color: #53625b; font-size: 10px; line-height: 1.6; }
.strategy-bottom-grid .insight-row p { margin-top: 0; }
.evidence-group { padding: 14px 0; border-bottom: 1px solid var(--line); }
.evidence-group:last-child { border-bottom: 0; }
.evidence-group > span { display: block; margin-bottom: 8px; font-size: 9px; font-weight: 750; }
.evidence-group.fact > span { color: var(--green); }
.evidence-group.hypothesis > span { color: #8d6d3e; }
.evidence-group.verify > span { color: var(--red); }
.evidence-group p, .evidence-group label { display: block; margin: 6px 0; color: #58645e; font-size: 10px; line-height: 1.55; }
.evidence-group p::before { content: "—"; margin-right: 6px; color: #a7afa9; }
.evidence-group input { margin-right: 7px; accent-color: var(--green); }
.adjustment-goal { padding: 13px 14px; background: var(--green-soft); }
.adjustment-goal span, .observation-box span { font-size: 9px; font-weight: 750; }
.adjustment-goal span { color: var(--green); }
.adjustment-goal p { margin: 5px 0 0; color: #425a51; font-size: 10px; line-height: 1.55; }
.prescription-steps { display: grid; gap: 13px; margin: 17px 0; padding: 0; list-style: none; }
.prescription-steps li { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 10px; }
.prescription-steps li > b { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 9px; }
.prescription-steps strong, .prescription-steps span { display: block; }
.prescription-steps strong { font-size: 11px; }
.prescription-steps span { margin-top: 3px; color: var(--green); font-size: 9px; }
.prescription-steps p { margin: 4px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.observation-box { padding: 12px 14px; background: var(--sand-soft); }
.observation-box span { color: #8d6637; }
.observation-box p { margin: 5px 0 0; color: #675b49; font-size: 10px; line-height: 1.5; }

.strategy-summary { grid-template-columns: repeat(5, 130px) minmax(0, 1fr); }
.strategy-summary > div { display: flex; flex-direction: column; justify-content: center; }
.strategy-summary strong { display: block; margin-top: 5px; }
.strategy-list-section { margin-top: 18px; }
.strategy-detail { margin-top: 18px; }
.strategy-result-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.strategy-result-head > div > span { color: var(--green); font-size: 9px; font-weight: 750; letter-spacing: .6px; }
.strategy-result-head h2 { max-width: 950px; margin: 8px 0 0; font-size: 21px; line-height: 1.45; }
.decision-pill { flex: 0 0 auto; padding: 7px 11px; background: var(--sand-soft); color: #8d6637; }
.strategy-result-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; margin: 20px 0; background: var(--line); }
.strategy-result-grid > div { min-width: 0; padding: 14px; background: var(--green-pale); }
.strategy-result-grid span, .strategy-result-grid strong { display: block; }
.strategy-result-grid span { color: var(--muted); font-size: 9px; }
.strategy-result-grid strong { margin-top: 6px; font-size: 16px; }
.strategy-brief-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; }
.strategy-brief-grid span { color: var(--green); font-size: 9px; font-weight: 700; }
.strategy-brief-grid p { margin: 5px 0 0; color: #53625b; font-size: 10px; line-height: 1.55; }
.decision-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 14px; }
.decision-options button { padding: 10px; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); color: var(--muted); font-size: 10px; cursor: pointer; }
.decision-options button:hover, .decision-options button.active { border-color: var(--green); background: var(--green-soft); color: var(--green); font-weight: 700; }
.decision-options + p { margin: 13px 0 0; color: var(--muted); font-size: 10px; }

.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(90px);
  transition: .25s;
}
.toast.show { opacity: 1; transform: none; }
.fatal-error { max-width: 600px; margin: 80px auto; padding: 30px; }

@media (max-width: 1220px) {
  .sidebar { width: 210px; }
  .main { width: calc(100% - 210px); margin-left: 210px; }
  .page, .topbar { padding-left: 28px; padding-right: 28px; }
  .report-evidence { grid-template-columns: 1fr; }
  .clinic-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .clinic-metrics > div:nth-child(4) { border-right: 0; }
  .clinic-metrics > div:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .strategy-summary { grid-template-columns: repeat(5, minmax(100px, 1fr)); }
  .strategy-summary > p { grid-column: 1 / -1; }
  .strategy-brief-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
