:root {
  --page: #f3f5f7;
  --paper: #ffffff;
  --paper-soft: #f8fafc;
  --ink: #172033;
  --muted: #647084;
  --subtle: #e1e6ee;
  --line: #cfd7e3;
  --brand: #12345b;
  --brand-2: #1f5f8b;
  --accent-teal: #0f9eb4;
  --accent-blue: #2b5fbe;
  --accent-amber: #d89b0d;
  --accent-rose: #d84c8e;
  --success: #18724d;
  --success-bg: #e8f4ef;
  --warning: #9a6400;
  --warning-bg: #fff4dd;
  --risk: #a4343a;
  --risk-bg: #fae9ea;
  --radius: 8px;
  --shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
}

* { box-sizing: border-box; }
html { font-size: 15px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}
button, input, select { font: inherit; }
a { color: var(--brand-2); word-break: break-word; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.03;
  overflow-wrap: anywhere;
}
h2 { margin-bottom: 0; font-size: 1.35rem; line-height: 1.2; }
h3 { margin: 0 0 12px; font-size: 0.96rem; }

.app-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(360px, 640px) auto;
  gap: 20px;
  align-items: center;
  padding: 16px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.brand-block { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.brand-name { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-subtitle { color: var(--muted); font-size: 0.78rem; }

.search-panel { position: relative; }
.search-box {
  display: flex; align-items: center;
  height: 44px;
  padding: 0 8px 0 14px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.search-box:focus-within { border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(31, 95, 139, 0.12); }
.search-box input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.icon-button, .primary-button, .secondary-button, .score-card { border: 0; cursor: pointer; }
.icon-button { width: 32px; height: 32px; border-radius: var(--radius); background: transparent; color: var(--muted); }
.icon-button:hover { background: var(--subtle); color: var(--ink); }
.primary-button, .secondary-button { border-radius: var(--radius); font-weight: 800; white-space: nowrap; }
.primary-button { height: 44px; padding: 0 18px; background: var(--brand); color: #fff; }
.primary-button:hover { background: #0d2949; }
.secondary-button { padding: 8px 12px; background: var(--paper-soft); border: 1px solid var(--line); color: var(--brand); }
.secondary-button:disabled,
.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.hidden-select, .hidden { display: none !important; }

.suggestions-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  max-height: 340px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  z-index: 40;
}
.suggestions-list.active { display: block; }
.suggestion-item {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--subtle);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.suggestion-item:hover { background: var(--paper-soft); }

.notice-banner {
  width: min(1440px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid #f0d28a;
  border-radius: var(--radius);
  background: var(--warning-bg);
  color: var(--warning);
  font-weight: 700;
}
.chapter .notice-banner { width: 100%; margin: 0 0 16px; }

.report-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 28px auto 56px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
}
body.export-mode {
  background: #fff;
}
body.export-mode .app-header,
body.export-mode .toc-panel,
body.export-mode .loading-overlay,
body.export-mode .modal-backdrop,
body.export-mode .status-strip,
body.export-mode .report-gate,
body.export-mode .notice-banner,
body.export-mode .score-action,
body.export-mode .header-actions,
body.export-mode .ai-ops-card {
  display: none !important;
}
body.export-mode .report-shell,
body.export-mode .report-page {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  display: block;
}
body.export-mode .report-cover,
body.export-mode .chapter {
  margin-bottom: 14px;
}
.toc-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  max-height: calc(100vh - 112px);
  overflow: auto;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.toc-title {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.toc-panel a {
  display: block;
  padding: 9px 8px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.toc-panel a:hover, .toc-panel a.active { background: var(--paper-soft); color: var(--brand-2); }
.toc-panel a.active { box-shadow: inset 3px 0 0 var(--brand-2); }
.ai-ops-card {
  width: 100%;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.ai-ops-card:hover {
  border-color: var(--brand-2);
  box-shadow: inset 0 0 0 1px var(--brand-2);
}
.ai-ops-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.ai-ops-card span:not(.field-label), .ai-ops-card small, .ai-ops-card em {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  overflow-wrap: anywhere;
}
.ai-ops-card em {
  color: var(--brand-2);
  font-weight: 900;
}
.ai-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eef5;
}
.ai-progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-2);
  transition: width 0.25s ease;
}
.ai-ops-card.is-running .ai-progress-track i {
  background: repeating-linear-gradient(45deg, var(--brand-2) 0 8px, #2f7eae 8px 16px);
  animation: progress-stripes 0.8s linear infinite;
}
.ai-ops-card.is-failed .ai-progress-track i { background: var(--risk); }
.ai-ops-card.is-complete .ai-progress-track i { background: var(--success); }
@keyframes progress-stripes { to { filter: brightness(1.12); } }

.report-page { min-width: 0; }
.report-cover, .chapter, .status-strip, .metric-card, .report-footer {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.report-page.is-empty .status-strip,
.report-page.is-empty #headlineMetrics,
.report-page.is-empty .report-gate,
.report-page.is-empty .gated-report-section,
.report-page.is-gated .gated-report-section {
  display: none !important;
}
.report-gate {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-2);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.report-gate-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.report-gate-header p,
.report-gate-summary p,
.report-gate-step p {
  margin: 8px 0 0;
  color: var(--muted);
}
.report-gate-progress {
  display: grid;
  gap: 8px;
}
.report-gate-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}
.report-gate-progress-top strong {
  font-size: 0.88rem;
}
.report-gate-progress-top span {
  color: var(--muted);
  font-size: 0.8rem;
}
.report-gate-progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef6;
}
.report-gate-progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-2);
  transition: width 0.3s ease;
}
.report-gate.is-running .report-gate-progress-track i {
  background: repeating-linear-gradient(45deg, var(--brand-2) 0 8px, #2f7eae 8px 16px);
  animation: progress-stripes 0.9s linear infinite;
}
.report-gate-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.report-gate-step {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.report-gate-step-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.report-gate-step strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}
.report-gate-step p {
  font-size: 0.82rem;
}
.report-gate-step small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
}
.report-gate-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}
.report-gate-chip.waiting,
.report-gate-chip.starting {
  background: #eef2f7;
  color: var(--muted);
}
.report-gate-chip.running {
  background: rgba(31, 95, 139, 0.12);
  color: var(--brand-2);
}
.report-gate-chip.completed {
  background: var(--success-bg);
  color: var(--success);
}
.report-gate-chip.gaps {
  background: var(--warning-bg);
  color: var(--warning);
}
.report-gate-chip.failed,
.report-gate-chip.skipped {
  background: var(--risk-bg);
  color: var(--risk);
}
.report-gate-step.is-running,
.report-gate-step.is-starting {
  border-color: rgba(31, 95, 139, 0.28);
  box-shadow: inset 0 0 0 1px rgba(31, 95, 139, 0.18);
}
.report-gate-step.is-completed {
  border-color: rgba(24, 114, 77, 0.22);
}
.report-gate-step.is-gaps {
  border-color: rgba(154, 100, 0, 0.22);
}
.report-gate-step.is-failed,
.report-gate-step.is-skipped {
  border-color: rgba(164, 52, 58, 0.22);
}
.report-gate-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.report-gate-summary {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.report-gate-summary .field-label {
  margin-bottom: 8px;
}
.report-gate-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.report-gate-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--subtle);
  border-radius: 999px;
  background: var(--paper-soft);
  font-size: 0.79rem;
}
.report-gate-fact strong {
  font-size: 0.8rem;
}
.report-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  padding: 22px;
  border-top: 5px solid var(--brand);
  box-shadow: var(--shadow);
}
.cover-main { min-width: 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.address-line { margin-bottom: 18px; color: var(--muted); overflow-wrap: anywhere; }
.identity-grid, .kv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.identity-grid > .kv-grid {
  grid-column: 1 / -1;
}
.identity-grid div, .kv-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.field-label, .identity-grid span, .kv-grid span, .metric-card span, .signal-pill span, .score-summary-grid span, .usage-card dt {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.identity-grid strong, .kv-grid strong { display: block; margin-top: 4px; overflow-wrap: anywhere; }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.score-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfd;
  color: var(--ink);
  text-align: left;
}
.score-card:hover { border-color: var(--brand-2); box-shadow: inset 0 0 0 1px var(--brand-2); }
.score-card strong { font-family: "Source Serif 4", Georgia, serif; font-size: 3rem; line-height: 1; }
.score-tier { color: var(--success); font-weight: 900; }
.score-action { color: var(--brand-2); font-size: 0.82rem; font-weight: 800; }

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 16px 0;
  overflow: hidden;
}
.status-item {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 12px 10px;
  border-right: 1px solid var(--subtle);
}
.status-item:last-child { border-right: 0; }
.status-item > div { min-width: 0; }
.status-item strong,
.status-item span:last-child {
  display: block;
  overflow-wrap: anywhere;
}
.status-item span:last-child { color: var(--muted); font-size: 0.78rem; }
.status-dot { width: 11px; height: 11px; border-radius: 50%; flex: 0 0 auto; background: var(--muted); }
.status-loading { background: var(--brand-2); animation: pulse 1s infinite alternate; }
.status-completed { background: var(--success); }
.status-partial { background: var(--warning); }
.status-failed { background: var(--risk); }
.status-idle { background: var(--line); }
@keyframes pulse { from { opacity: 0.45; } to { opacity: 1; } }

.chapter {
  padding: 26px;
  margin-bottom: 18px;
  scroll-margin-top: 92px;
}
.chapter-header, .chapter-subhead {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--subtle);
}
.chapter-subhead { margin-top: 22px; }

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.metric-card { min-width: 0; padding: 16px; }
.metric-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.metric-card small { display: block; margin-top: 5px; color: var(--muted); min-height: 1.2em; overflow-wrap: anywhere; }

.visual-grid, .detail-grid, .summary-grid, .report-section-grid, .card-list {
  display: grid;
  gap: 16px;
}
.visual-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 16px; }
.summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 14px; }
.report-section-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 18px; }
.wide { grid-column: span 2; }
.visual-card, .detail-card, .summary-card, .signal-card, .source-section-card, .fact-card, .source-card, .usage-card, .score-segment, .list-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.visual-card h3, .detail-card h3, .summary-card h3 { color: var(--brand); }
.insight-note {
  margin: 0 0 18px;
  padding: 13px 14px;
  border-left: 4px solid var(--brand-2);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--muted);
}
.insight-note span { display: inline-block; margin-right: 10px; color: var(--ink); font-weight: 700; }

.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  margin-bottom: 16px;
}
.brief-main {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.brief-score-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.brief-score-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}
.brief-score-card em {
  display: block;
  margin-top: 6px;
  color: var(--success);
  font-style: normal;
  font-weight: 900;
}
.brief-score-card small { display: block; margin-top: 14px; color: var(--muted); }
.conclusion-list {
  display: grid;
  gap: 9px;
}
.conclusion-list div {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.conclusion-list span {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand-2);
}
.conclusion-list p { margin: 0; }
.executive-visuals {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}
.public-snapshot {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.public-snapshot.placeholder-block { background: var(--paper-soft); }
.public-snapshot-head { margin-top: 0; }
.ai-section-status {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.ai-section-status strong { color: var(--brand); }
.ai-section-status span { color: var(--muted); overflow-wrap: anywhere; }
.ai-section-status.success { border-color: #b9d9c9; background: var(--success-bg); }
.ai-section-status.warning { border-color: #efd28d; background: var(--warning-bg); }
.ai-section-status.failed { border-color: #e3b7bb; background: var(--risk-bg); }
.ai-section-status.failed strong, .ai-section-status.failed span { color: var(--risk); }
.ai-operations-log {
  display: grid;
  gap: 14px;
}
.ai-readiness-card, .ai-job-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.ai-readiness-head, .ai-job-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.ai-readiness-head strong, .ai-job-head strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.ai-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ai-event-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.ai-event-list div {
  padding: 9px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
}
.ai-event-list span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}
.ai-event-list p {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}
.ai-warning-list {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}
.ai-warning-list p {
  margin: 0;
  padding: 9px;
  border: 1px solid #efd28d;
  border-radius: var(--radius);
  background: var(--warning-bg);
  color: var(--warning);
  font-weight: 700;
}
.compact-facts ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.compact-facts li {
  display: grid;
  gap: 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--subtle);
}
.compact-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.compact-facts span { color: var(--muted); overflow-wrap: anywhere; }
.public-gap-list { margin-top: 14px; }
.executive-detail {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.executive-detail summary { color: var(--brand); }

.assessment-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-2);
  border-radius: var(--radius);
  background: var(--paper);
}
.assessment-verdict {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: start;
}
.assessment-verdict strong {
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}
.assessment-verdict p { grid-column: 1 / -1; margin: 0; color: var(--muted); }
.assessment-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.method-note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--subtle);
  color: var(--muted);
  font-size: 0.86rem;
}
.analyst-notes {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.narrative-subhead { align-items: flex-start; }
.narrative-definition {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.narrative-group-grid {
  display: grid;
  gap: 14px;
}
.executive-intelligence-panel {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.executive-intelligence-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}
.executive-intelligence-hero h4 {
  margin: 6px 0 8px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}
.executive-intelligence-hero p {
  margin: 0;
  color: var(--muted);
}
.executive-chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}
.executive-chip {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
}
.executive-chip small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.executive-chip strong {
  font-size: 0.98rem;
  line-height: 1.2;
}
.executive-highlights-grid,
.executive-signal-grid,
.executive-note-grid {
  display: grid;
  gap: 14px;
}
.executive-highlights-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.executive-interpretation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.executive-signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.executive-note-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.executive-highlight-card,
.executive-signal-tile,
.executive-note-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.executive-highlight-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.executive-highlight-head span,
.executive-signal-tile small {
  color: var(--muted);
  font-size: 0.78rem;
}
.executive-highlight-card strong,
.executive-signal-tile strong,
.executive-note-card strong {
  display: block;
  line-height: 1.25;
}
.executive-highlight-card p,
.executive-note-card p {
  margin: 10px 0 0;
  color: var(--muted);
}
.executive-signal-tile strong {
  margin-top: 8px;
}
.executive-signal-tile.tone-positive,
.executive-highlight-card.tone-positive,
.executive-note-card.tone-positive {
  border-color: #b8dbd4;
  background: #edf8f6;
}
.executive-signal-tile.tone-watch,
.executive-highlight-card.tone-watch,
.executive-note-card.tone-watch {
  border-color: #efd28d;
  background: #fff8ea;
}
.executive-signal-tile.tone-neutral,
.executive-highlight-card.tone-neutral,
.executive-note-card.tone-neutral {
  border-color: #d9e0ea;
  background: #f7fafc;
}
.executive-note-card {
  border-left: 4px solid var(--accent-blue);
  background: var(--paper);
}
.narrative-score-notes {
  margin-top: -2px;
}
.narrative-group {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.narrative-group h4 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.narrative-card-list {
  display: grid;
  gap: 10px;
}
.narrative-card-list .signal-card {
  background: var(--paper);
}
.narrative-card-list ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.score-compact-head {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.score-compact-list {
  display: grid;
  gap: 10px;
}
.score-compact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.score-compact-row p { margin: 5px 0 0; color: var(--muted); }
.score-mini-bar span, .score-mini-bar small {
  display: block;
  font-weight: 900;
  text-align: right;
}
.score-mini-bar small { color: var(--muted); font-size: 0.74rem; }
.bar-track i {
  display: block;
  height: 100%;
  min-width: 2px;
  border-radius: var(--radius);
  background: var(--brand-2);
}
.score-method-summary {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
}
.score-business-question {
  color: var(--ink) !important;
  font-weight: 700;
}
.terminology-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.term {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  cursor: help;
}
.terminology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.term-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
}
.term-card p { margin: 5px 0 0; color: var(--muted); }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.badge-muted { background: var(--paper-soft); color: var(--muted); border: 1px solid var(--line); }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-risk { background: var(--risk-bg); color: var(--risk); }

.bar-list, .percentile-list, .score-segment-list { display: grid; gap: 10px; }
.bar-row {
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
}
.bar-row-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.bar-row-label strong, .bar-row-label span { overflow-wrap: anywhere; }
.bar-row-label span, .summary-card p, .signal-card p, .source-section-card p, .fact-card p, .list-panel p, .profile-muted {
  color: var(--muted);
}
.bar-track, .percentile-track {
  height: 28px;
  border-radius: var(--radius);
  background: #e9eef5;
  overflow: hidden;
}
.bar-track span, .percentile-track span {
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 2px;
  padding-left: 8px;
  background: var(--brand-2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.buyer-timeline-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.buyer-timeline-filter {
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.buyer-timeline-filter.is-active {
  border-color: var(--brand-2);
  background: rgba(32, 84, 154, 0.08);
  color: var(--brand);
}

.buyer-timeline-note {
  margin-bottom: 12px;
}

.buyer-linkage-table td.cell-money,
.buyer-linkage-table th:last-child {
  white-space: nowrap;
  text-align: right;
}

.buyer-linkage-table td.cell-money {
  font-variant-numeric: tabular-nums;
}

.details-list {
  margin-top: 8px;
}

.details-list summary {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.details-list ul {
  margin-top: 8px;
}

.line-chart {
  width: 100%;
  min-height: 210px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
}
.line-chart polyline {
  fill: none;
  stroke: var(--brand-2);
  stroke-width: 2.6;
  vector-effect: non-scaling-stroke;
}
.line-chart text { fill: var(--muted); font-size: 3px; text-anchor: middle; }

.chart-note {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}
.indexed-chart {
  display: grid;
  gap: 10px;
}
.indexed-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.indexed-bars {
  display: grid;
  gap: 5px;
}
.indexed-track {
  height: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9eef5;
}
.indexed-track span {
  display: flex;
  align-items: center;
  min-width: 2px;
  height: 100%;
  padding-left: 7px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}
.indexed-track.fob span { background: var(--brand-2); }
.indexed-track.qty span { background: var(--success); }
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}
.chart-legend span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 2px;
}
.legend-fob::before { background: var(--brand-2); }
.legend-qty::before { background: var(--success); }
.growth-bridge {
  display: grid;
  gap: 10px;
}
.driver-badge {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.driver-step {
  padding: 12px;
  border: 1px solid var(--subtle);
  border-left: 4px solid var(--muted);
  border-radius: var(--radius);
  background: var(--paper);
}
.driver-step span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.driver-step strong {
  display: block;
  margin-top: 5px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.driver-step.positive { border-left-color: var(--success); }
.driver-step.negative { border-left-color: var(--risk); }
.driver-step.neutral { border-left-color: var(--muted); }
.risk-matrix {
  display: grid;
  gap: 12px;
}
.risk-matrix-grid {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(100, 112, 132, 0.28) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(100, 112, 132, 0.28) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(135deg, #edf5f0 0%, #f8fafc 52%, #fae9ea 100%);
}
.risk-matrix-grid i {
  position: absolute;
  width: 15px;
  height: 15px;
  transform: translate(-50%, 50%);
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}
.risk-matrix .axis {
  position: absolute;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.risk-matrix .top { top: 8px; left: 10px; }
.risk-matrix .bottom { bottom: 8px; left: 10px; }
.risk-matrix .left { bottom: 30px; left: 10px; }
.risk-matrix .right { bottom: 30px; right: 10px; }
.matrix-signal-list {
  display: grid;
  gap: 6px;
}
.matrix-signal-list span {
  padding: 7px 9px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.stacked-chart { display: grid; gap: 10px; }
.stacked-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.stacked-track {
  display: flex;
  height: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9eef5;
}
.stacked-track span { height: 100%; min-width: 2px; }

.heatmap-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.heatmap-legend span {
  padding: 5px 8px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
}
.heatmap {
  display: grid;
  grid-template-columns: repeat(9, minmax(86px, 1fr));
  gap: 8px;
  overflow: auto;
  padding-bottom: 4px;
}
.heat-cell {
  min-height: 72px;
  padding: 9px;
  border-radius: var(--radius);
  border: 1px solid var(--subtle);
  color: var(--ink);
}
.heat-low {
  background: #edf5f9;
  color: var(--ink);
}
.heat-mid {
  background: #a7cbe0;
  color: var(--ink);
  border-color: #7fb0cb;
}
.heat-high {
  background: var(--brand-2);
  color: #fff;
  border-color: var(--brand);
}
.heat-cell strong, .heat-cell span, .heat-cell small { display: block; }
.heat-cell small { color: var(--muted); }
.heat-cell.heat-high small { color: rgba(255, 255, 255, 0.78); }

.gauge {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.gauge-ring {
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--brand-2) 0deg var(--value), #e9eef5 var(--value) 360deg);
  position: relative;
}
.gauge-ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--paper-soft);
}
.gauge-ring strong { position: relative; z-index: 1; }
.gauge span { display: block; color: var(--muted); }

.percentile-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 2fr) 70px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.percentile-row span { display: block; color: var(--muted); }
.percentile-row em { font-style: normal; font-weight: 900; text-align: right; }

.timeline {
  display: grid;
  gap: 10px;
  position: relative;
}
.timeline div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper);
}
.timeline span { color: var(--muted); font-size: 0.78rem; font-weight: 900; }
.timeline strong { overflow-wrap: anywhere; }

.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 10px;
  border-bottom: 1px solid var(--subtle);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
th:not(:first-child), td:not(:first-child) { text-align: right; }
.details-table { margin-top: 10px; }
details summary { cursor: pointer; color: var(--brand-2); font-weight: 800; }
.mini-table-block { margin-top: 14px; }
.mini-table-block h4 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.summary-card ul, .list-panel ul { margin: 0; padding-left: 18px; }
.summary-card li, .list-panel li { margin-bottom: 6px; }
.executive-copy { margin-bottom: 16px; font-size: 1rem; }
.source-section-card > div, .fact-card > div, .score-segment-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.source-section-compact details {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--subtle);
}
.source-section-compact p { margin-bottom: 10px; }
.evidence-overview-card .kv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fact-card, .source-card, .usage-card { margin-bottom: 10px; }
.fact-card a, .source-card a { display: block; margin-top: 8px; font-size: 0.82rem; }
.source-card strong, .source-card span { display: block; overflow-wrap: anywhere; }

.score-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.score-segment-head { margin-bottom: 12px; }
.score-segment-head p { margin: 4px 0 0; color: var(--muted); }
.segment-score { min-width: 130px; text-align: right; }
.segment-score span { display: block; font-size: 1.25rem; font-weight: 900; }
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.signal-pill {
  min-width: 0;
  padding: 9px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--subtle);
}
.signal-pill strong { display: block; overflow-wrap: anywhere; }
.stack-row.simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.stack-row.simple span { color: var(--muted); }

.placeholder-block, .empty, .error-box {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--muted);
}
.error-box { border-color: #e5b2b6; background: var(--risk-bg); color: var(--risk); font-weight: 800; }
.report-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  color: var(--muted);
}
.report-footer strong { color: var(--ink); white-space: nowrap; }

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(243, 245, 247, 0.92);
}
.loading-overlay.active { display: flex; }
.loader {
  width: 36px;
  height: 36px;
  border: 4px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-title { font-weight: 900; }
.loading-subtitle { color: var(--muted); font-size: 0.88rem; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(23, 32, 51, 0.55);
}
.modal-panel {
  width: min(1040px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}
.modal-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
#scoreBreakdownContent { padding: 20px; }
.modal-body { padding: 20px; }

@media (max-width: 1180px) {
  .report-shell { grid-template-columns: 1fr; }
  .toc-panel {
    position: static;
    max-height: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 10px;
    overflow: auto;
  }
  .toc-title { display: none; }
  .toc-panel a { white-space: nowrap; display: inline-block; }
  .toc-panel .ai-ops-card { margin-top: 0; }
  .app-header, .report-cover, .visual-grid, .detail-grid, .report-section-grid, .brief-grid, .executive-visuals, .assessment-columns, .score-compact-head, .score-compact-row, .ai-job-grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .metric-band, .score-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .identity-grid, .kv-grid, .signal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-gate-stepper,
  .report-gate-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .app-header { position: static; padding: 14px; }
  .report-shell, .notice-banner { width: calc(100% - 20px); margin-top: 14px; }
  .report-cover, .chapter { padding: 16px; }
  .report-gate { padding: 16px; }
  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .report-gate-header,
  .report-gate-stepper,
  .report-gate-summary-grid { grid-template-columns: 1fr; }
  .toc-panel { grid-template-columns: 1fr; }
  .identity-grid, .kv-grid, .metric-band, .score-summary-grid, .signal-grid, .summary-grid, .status-strip, .percentile-row, .evidence-overview-card .kv-grid, .terminology-grid {
    grid-template-columns: 1fr;
  }
  .executive-intelligence-hero,
  .executive-highlights-grid,
  .executive-interpretation-grid,
  .executive-signal-grid,
  .executive-note-grid,
  .executive-chip-row {
    grid-template-columns: 1fr;
  }
  .status-item { border-right: 0; border-bottom: 1px solid var(--subtle); }
  .status-item:last-child { border-bottom: 0; }
  .heatmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gauge { grid-template-columns: 1fr; }
  .report-footer { flex-direction: column; }
  th:not(:first-child), td:not(:first-child) { text-align: left; }
}

@media print {
  @page {
    size: auto;
    margin: 14mm 12mm 16mm;
  }
  body { background: #fff; }
  .app-header, .toc-panel, .loading-overlay, .modal-backdrop, .primary-button, .secondary-button, .score-action, .report-gate, .status-strip, .notice-banner {
    display: none !important;
  }
  .report-shell, .report-page {
    width: 100%;
    max-width: none;
    display: block;
    margin: 0;
  }
  .report-cover, .chapter, .metric-card, .report-footer {
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
    border-color: #d8dee8;
  }
  .ai-ops-card { display: none !important; }
  .report-cover,
  .chapter {
    margin-bottom: 14px;
    padding-inline: 18px;
  }
  .metric-band,
  .detail-grid,
  .visual-grid,
  .report-section-grid,
  .brief-grid,
  .executive-visuals,
  .assessment-columns,
  .score-summary-grid,
  .signal-grid,
  .summary-grid {
    gap: 12px;
  }
  .details-list summary,
  .details-table summary,
  details > summary,
  .buyer-timeline-filter-row,
  .buyer-timeline-note {
    display: none !important;
  }
  details {
    display: block !important;
  }
  details > *:not(summary) {
    display: block !important;
  }
  .table-wrap,
  .detail-card,
  .visual-card,
  .metric-card,
  .report-footer,
  .list-panel,
  .score-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .table-wrap table {
    width: 100%;
  }
  .report-page.is-gated .gated-report-section,
  .report-page.is-empty .gated-report-section,
  .report-page.is-empty #headlineMetrics {
    display: block !important;
  }
  a { color: #111; text-decoration: none; }
}

/* Score ring (importer/buyer report) */
.score-ring {
  position: relative;
  width: 160px;
  height: 160px;
}
.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-ring-bg {
  fill: none;
  stroke: #e9eef5;
  stroke-width: 12;
}
.score-ring-fill {
  fill: none;
  stroke: var(--brand-2, #1f5f8b);
  stroke-width: 12;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}
.score-ring-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}
.score-ring-center strong {
  font-size: 1.8rem;
  display: block;
}
.score-ring-center span {
  color: var(--muted, #647084);
  font-size: 0.85rem;
}
