:root {
  --ink: #231f20;
  --ink-soft: #353132;
  --cyan: #06a6c9;
  --cyan-mid: #41bbd7;
  --cyan-soft: #72cee2;
  --coral: #d85d57;
  --blue: #1f4e79;
  --paper: #ffffff;
  --canvas: #f4f7f9;
  --line: #dfe6eb;
  --muted: #66727b;
  --critical: #cf3f43;
  --warning: #dc8b22;
  --ok: #178b67;
  --info: #3f79a8;
  --shadow: 0 10px 26px rgba(35, 31, 32, 0.08);
  font-family: Calibri, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--canvas); }
body { margin: 0; min-height: 100vh; background: var(--canvas); }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible {
  outline: 3px solid rgba(6, 166, 201, 0.32);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell { display: grid; grid-template-columns: 286px minmax(0, 1fr); min-height: 100vh; }
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(65, 187, 215, 0.10), transparent 30%),
    var(--ink);
  z-index: 30;
}
.brand {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 4px;
}
.brand-grid i { width: 6px; height: 6px; display: block; background: var(--cyan-soft); }
.brand-grid i:nth-child(4), .brand-grid i:nth-child(5) { background: var(--cyan-mid); }
.brand-grid i:nth-child(7) { background: var(--cyan); }
.brand-grid i:nth-child(6), .brand-grid i:nth-child(8), .brand-grid i:nth-child(9) { background: var(--coral); }
.brand-word {
  color: var(--cyan-soft);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.055em;
}
.nav-item {
  margin: 18px 14px 4px;
  padding: 13px 14px;
  border: 0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.78);
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.nav-item:hover, .nav-item.is-active { color: #fff; background: rgba(114, 206, 226, .13); }
.nav-item.is-active { box-shadow: inset 3px 0 0 var(--cyan-mid); }
.nav-icon { font-size: 1.15rem; color: var(--cyan-soft); }
.sidebar-section { min-height: 0; display: flex; flex: 1; flex-direction: column; padding: 18px 14px 0; }
.sidebar-heading {
  display: flex;
  justify-content: space-between;
  padding: 0 10px 10px;
  color: rgba(255,255,255,.48);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.sidebar-total { color: var(--cyan-soft); }
.sidebar-search input {
  width: 100%;
  min-height: 39px;
  padding: 0 12px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
}
.sidebar-search input::placeholder { color: rgba(255,255,255,.42); }
.folder-list { min-height: 0; overflow-y: auto; padding: 10px 0 24px; scrollbar-width: thin; }
.folder-group { margin: 8px 0 2px; }
.folder-group-title {
  padding: 9px 10px 5px;
  color: rgba(255,255,255,.40);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.folder-button {
  width: 100%;
  padding: 8px 9px;
  border: 0;
  border-radius: 5px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px;
  color: rgba(255,255,255,.72);
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.folder-button:hover, .folder-button.is-active { color: #fff; background: rgba(255,255,255,.07); }
.folder-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .88rem; }
.folder-count {
  min-width: 25px;
  padding: 2px 6px;
  border-radius: 10px;
  color: rgba(255,255,255,.64);
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  text-align: center;
}
.folder-count.has-alerts { color: #ffd9d6; background: rgba(216, 93, 87, .22); }
.sidebar-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 24px;
  color: rgba(255,255,255,.52);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .76rem;
}
.restricted-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

.main { min-width: 0; }
.topbar {
  min-height: 92px;
  padding: 18px clamp(20px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.topbar-left { display: flex; align-items: center; gap: 12px; }
.eyebrow, .panel-kicker, .scope-kicker {
  margin: 0 0 4px;
  color: var(--cyan);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.topbar h1 { margin: 0; font-size: 1.42rem; line-height: 1.15; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.freshness {
  min-height: 39px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  font-size: .82rem;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(23,139,103,.1); }
.button, .icon-button {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.button { padding: 0 16px; }
.button-primary { color: #fff; background: var(--cyan); border-color: var(--cyan); }
.button-primary:hover { background: #078eac; border-color: #078eac; }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.button-secondary:hover { border-color: var(--cyan-mid); color: var(--blue); }
.icon-button { width: 40px; padding: 0; background: #fff; border-color: var(--line); }
.mobile-menu { display: none; }

.control-strip {
  min-height: 68px;
  padding: 12px clamp(20px, 3vw, 44px);
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.control-label { color: var(--muted); font-size: .82rem; font-weight: 700; white-space: nowrap; }
.time-options {
  min-width: 0;
  display: flex;
  flex: 1;
  gap: 2px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: thin;
}
.time-options button {
  min-width: 43px;
  min-height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 5px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .81rem;
  font-weight: 700;
}
.time-options button:hover { color: var(--blue); background: #eff7fa; }
.time-options button.is-active { color: #fff; background: var(--blue); }
.severity-options { display: flex; gap: 5px; }
.severity-chip {
  min-height: 34px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-size: .78rem;
}
.severity-chip span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.severity-chip:not(.is-on) { opacity: .42; filter: grayscale(1); }
.severity-chip.critical { color: var(--critical); }
.severity-chip.warning { color: var(--warning); }
.severity-chip.ok { color: var(--ok); }
.severity-chip.info { color: var(--info); }

.loading-state {
  min-height: calc(100vh - 160px);
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--muted);
}
.loading-state[hidden] { display: none !important; }
.loader { width: 34px; height: 34px; border: 3px solid #d7e6eb; border-top-color: var(--cyan); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.dashboard { padding: 26px clamp(20px, 3vw, 44px) 48px; }
.scope-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.scope-row h2 { margin: 0; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.scope-row p { margin: 6px 0 0; color: var(--muted); }
.snapshot-time { text-align: right; color: var(--muted); font-size: .75rem; }
.snapshot-time span, .snapshot-time strong { display: block; }
.snapshot-time strong { margin-top: 3px; color: var(--ink); font-size: .88rem; }
.context-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 12px 15px;
  color: #495963;
  border: 1px solid #cfe5ed;
  border-left: 4px solid var(--cyan);
  background: #f4fbfd;
  font-size: .84rem;
  line-height: 1.45;
}
.context-note p { margin: 0; }
.context-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--cyan);
  font-size: .72rem;
  font-weight: 700;
}

.kpi-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; margin-bottom: 16px; }
.kpi-card, .panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 3px 12px rgba(35,31,32,.035);
}
.kpi-card { min-height: 140px; padding: 17px 18px 15px; border-top: 3px solid #dfe6eb; }
.kpi-card:first-child { border-top-color: var(--cyan); }
.kpi-head { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: .79rem; font-weight: 700; }
.kpi-card strong { display: block; margin: 16px 0 8px; font-size: clamp(1.75rem, 2.6vw, 2.35rem); line-height: .9; letter-spacing: -.045em; }
.kpi-card small { color: var(--muted); font-size: .75rem; line-height: 1.35; }
.status-pip { width: 10px; height: 10px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(23,139,103,.10); }
.status-pip.warning { background: var(--warning); box-shadow: 0 0 0 4px rgba(220,139,34,.12); }
.status-pip.critical { background: var(--critical); box-shadow: 0 0 0 4px rgba(207,63,67,.11); }
.metric-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; font-size: .75rem; }
.metric-icon.critical { color: var(--critical); background: rgba(207,63,67,.10); }
.metric-icon.warning { color: var(--warning); background: rgba(220,139,34,.11); }
.metric-icon.unread { color: var(--blue); background: rgba(31,78,121,.09); }
.metric-icon.volume { color: var(--cyan); background: rgba(6,166,201,.10); }

.analytics-grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(290px, .75fr); gap: 16px; margin-bottom: 16px; }
.panel { min-width: 0; padding: 19px; border-radius: 2px; }
.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.panel-head h3 { margin: 0; font-size: 1.06rem; }
.panel-meta { color: var(--muted); font-size: .76rem; }
.legend { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; color: var(--muted); font-size: .72rem; }
.legend span { display: flex; align-items: center; gap: 5px; }
.legend i { width: 7px; height: 7px; display: inline-block; border-radius: 50%; }
.legend-critical { background: var(--critical); }
.legend-warning { background: var(--warning); }
.legend-ok { background: var(--ok); }
.legend-info { background: var(--info); }
.chart { min-height: 250px; }
.chart svg { width: 100%; height: 250px; display: block; overflow: visible; }
.chart-empty, .empty-block {
  min-height: 190px;
  display: grid;
  place-content: center;
  color: var(--muted);
  text-align: center;
  font-size: .86rem;
}
.axis-label { fill: #7b8891; font-size: 10px; }
.grid-line { stroke: #e9eef1; stroke-width: 1; }
.distribution { min-height: 250px; display: grid; place-items: center; }
.donut-wrap { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 14px; width: 100%; }
.donut { position: relative; width: 145px; height: 145px; }
.donut svg { width: 145px; height: 145px; transform: rotate(-90deg); }
.donut-center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.donut-center strong { font-size: 1.5rem; }
.donut-center span { color: var(--muted); font-size: .7rem; }
.distribution-list { display: grid; gap: 10px; }
.distribution-row { display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 7px; font-size: .78rem; }
.distribution-row i { width: 8px; height: 8px; border-radius: 50%; }
.distribution-row span { color: var(--muted); }

.folder-ranking { display: grid; gap: 11px; }
.rank-row { display: grid; grid-template-columns: minmax(135px, 1.15fr) minmax(180px, 2.6fr) 62px; align-items: center; gap: 12px; }
.rank-name { min-width: 0; border: 0; padding: 0; color: var(--blue); background: transparent; cursor: pointer; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 700; font-size: .82rem; }
.rank-track { height: 8px; display: flex; overflow: hidden; border-radius: 5px; background: #edf1f3; }
.rank-track i { display: block; height: 100%; }
.rank-critical { background: var(--critical); }
.rank-warning { background: var(--warning); }
.rank-ok { background: var(--ok); }
.rank-info { background: var(--info); }
.rank-value { color: var(--muted); font-size: .76rem; text-align: right; }
.finding-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.finding-item { padding: 12px; background: #fff; }
.finding-top { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 5px; }
.finding-top strong { font-size: .8rem; line-height: 1.3; }
.finding-count { flex: 0 0 auto; color: var(--critical); font-weight: 700; font-size: .78rem; }
.finding-item p { margin: 0; color: var(--muted); font-size: .73rem; }

.events-panel { padding: 0; overflow: hidden; }
.events-head { padding: 19px 19px 0; }
.event-controls { display: flex; gap: 8px; }
.event-controls input, .event-controls select, .field input {
  min-height: 39px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}
.event-controls input { width: min(36vw, 330px); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .8rem; }
th { padding: 10px 12px; color: var(--muted); background: #f7f9fa; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; font-size: .71rem; letter-spacing: .04em; text-transform: uppercase; }
td { padding: 12px; border-bottom: 1px solid #edf1f3; vertical-align: top; }
tr:hover td { background: #fbfdfe; }
.event-time { white-space: nowrap; color: var(--muted); }
.severity-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 7px; border-radius: 3px; font-size: .7rem; font-weight: 700; }
.severity-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.severity-badge.Critical { color: var(--critical); background: rgba(207,63,67,.09); }
.severity-badge.Warning { color: var(--warning); background: rgba(220,139,34,.10); }
.severity-badge.OK { color: var(--ok); background: rgba(23,139,103,.10); }
.severity-badge.Info { color: var(--info); background: rgba(63,121,168,.10); }
.event-folder { max-width: 190px; color: var(--blue); }
.event-subject { min-width: 270px; max-width: 520px; font-weight: 700; line-height: 1.35; }
.event-subject button { padding: 0; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-weight: inherit; }
.event-subject button:hover { color: var(--blue); text-decoration: underline; }
.state-unread { font-weight: 700; color: var(--blue); }
.open-link { color: var(--cyan); text-decoration: none; font-weight: 700; white-space: nowrap; }
.table-foot { min-height: 62px; padding: 11px 18px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .78rem; }

.detail-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(490px, 100vw);
  height: 100vh;
  padding: 34px 30px;
  overflow-y: auto;
  color: var(--ink);
  background: #fff;
  box-shadow: -20px 0 44px rgba(35,31,32,.16);
  transform: translateX(105%);
  transition: transform .23s ease;
  z-index: 60;
}
.detail-drawer.is-open { transform: translateX(0); }
.drawer-close, .dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: #f2f5f7;
  cursor: pointer;
  font-size: 1.45rem;
}
.drawer-title { margin: 12px 0 20px; font-size: 1.38rem; line-height: 1.25; }
.drawer-grid { display: grid; grid-template-columns: 115px 1fr; gap: 11px 14px; margin: 22px 0; font-size: .84rem; }
.drawer-grid dt { color: var(--muted); }
.drawer-grid dd { margin: 0; font-weight: 700; word-break: break-word; }
.drawer-summary { padding: 15px; color: #45545d; background: #f5f8fa; border-left: 3px solid var(--cyan); line-height: 1.55; font-size: .86rem; }
.drawer-actions { display: flex; gap: 10px; margin-top: 22px; }

.report-dialog {
  width: min(590px, calc(100vw - 28px));
  padding: 28px;
  border: 0;
  border-top: 5px solid var(--cyan);
  box-shadow: 0 24px 70px rgba(35,31,32,.28);
}
.report-dialog::backdrop { background: rgba(35,31,32,.58); }
.report-dialog h2 { margin: 0 0 7px; }
.report-dialog > p { color: var(--muted); line-height: 1.45; }
.field { display: grid; gap: 6px; margin-top: 20px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.field input { color: var(--ink); font-size: .95rem; }
.report-summary { margin: 17px 0; padding: 13px; background: #f5f8fa; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 9px; }
.print-report { display: none; }
.sidebar-scrim { display: none; }

@media (max-width: 1180px) {
  .kpi-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .analytics-grid { grid-template-columns: 1fr; }
  .severity-chip { padding: 0 7px; font-size: 0; }
  .severity-chip span { width: 9px; height: 9px; }
}

@media (max-width: 820px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: 0; transform: translateX(-103%); transition: transform .23s ease; width: min(286px, 86vw); }
  .sidebar.is-open { transform: translateX(0); }
  .sidebar-scrim { position: fixed; inset: 0; background: rgba(35,31,32,.5); z-index: 25; }
  .sidebar-scrim.is-open { display: block; }
  .mobile-menu { display: inline-grid; place-items: center; }
  .topbar { align-items: flex-start; }
  .topbar-actions .freshness, .topbar-actions .button-secondary { display: none; }
  .control-strip { flex-wrap: wrap; }
  .time-options { order: 3; flex-basis: 100%; }
  .severity-options { margin-left: auto; }
  .kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px) {
  .topbar { min-height: 78px; padding: 14px 15px; }
  .topbar h1 { font-size: 1.12rem; }
  .topbar-actions .button-primary { padding: 0 10px; font-size: .78rem; }
  .control-strip { padding: 10px 15px; }
  .dashboard { padding: 20px 15px 36px; }
  .scope-row { align-items: flex-start; }
  .snapshot-time { display: none; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .kpi-card { min-height: 122px; padding: 14px; }
  .kpi-card strong { font-size: 1.65rem; }
  .kpi-card:first-child { grid-column: 1 / -1; }
  .panel { padding: 15px; }
  .panel-head { display: block; }
  .legend { justify-content: flex-start; margin-top: 10px; }
  .donut-wrap { grid-template-columns: 1fr; justify-items: center; }
  .rank-row { grid-template-columns: minmax(110px,1fr) 1.5fr 48px; gap: 8px; }
  .events-head { padding: 15px 15px 0; }
  .event-controls { margin-top: 12px; display: grid; grid-template-columns: 1fr 120px; }
  .event-controls input { width: 100%; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions .button { width: 100%; }
}

@page { size: A4; margin: 0; }
@media print {
  body > *:not(.print-report) { display: none !important; }
  body { margin: 0; background: #fff; }
  .print-report { display: block !important; color: #000; background: #fff; }
  .report-page {
    position: relative;
    width: 210mm;
    min-height: 297mm;
    margin: 0;
    overflow: hidden;
    page-break-after: always;
    background: #fff;
  }
  .report-page:last-child { page-break-after: auto; }
  .report-cover-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .report-cover-content { position: absolute; inset: 0; z-index: 2; font-family: Calibri, Arial, sans-serif; }
  .report-cover-title { position: absolute; top: 82mm; left: 24mm; width: 92mm; text-align: center; font-size: 22pt; font-weight: 700; line-height: 1.25; }
  .report-cover-date { position: absolute; top: 121mm; left: 24mm; width: 92mm; text-align: center; font-size: 11pt; font-weight: 700; }
  .report-cover-prepared-for { position: absolute; top: 137mm; left: 24mm; width: 92mm; text-align: center; font-size: 10pt; }
  .report-cover-client { position: absolute; top: 157mm; left: 24mm; width: 92mm; text-align: center; font-size: 10pt; font-style: italic; }
  .report-cover-prepared-by { position: absolute; top: 181mm; left: 24mm; width: 92mm; text-align: center; font-size: 10pt; }
  .report-cover-author { position: absolute; top: 194mm; left: 24mm; width: 92mm; text-align: center; font-size: 10pt; font-weight: 700; }
  .report-body { padding: 31mm 13mm 25mm; font-family: Calibri, Arial, sans-serif; font-size: 9.5pt; }
  .report-header { position: absolute; top: 10mm; left: 13mm; right: 13mm; height: 15mm; padding: 0 10mm; display: flex; align-items: center; justify-content: space-between; color: #fff; background: #231f20; }
  .report-header-brand { color: #72cee2; font-size: 17pt; font-weight: 300; letter-spacing: -.06em; }
  .report-header-title { font-size: 10.5pt; }
  .report-footer { position: absolute; bottom: 7mm; left: 13mm; right: 13mm; display: grid; grid-template-columns: 1.2fr 1.15fr .55fr 1.1fr .75fr; border: .5pt solid #000; font-size: 7pt; font-weight: 700; text-transform: uppercase; text-align: center; }
  .report-footer span { padding: 3mm 1.5mm; border-right: .5pt solid #000; }
  .report-footer span:last-child { border-right: 0; }
  .report-body h1, .report-body h2, .report-body h3 { color: #1f4e79; }
  .report-body h1 { margin: 0 0 8mm; font-size: 17pt; }
  .report-body h2 { margin: 7mm 0 3mm; font-size: 13pt; }
  .report-metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3mm; margin-bottom: 7mm; }
  .report-metric { padding: 4mm; border: .5pt solid #bdc6cc; }
  .report-metric span { display: block; color: #68747b; font-size: 7.5pt; }
  .report-metric strong { display: block; margin-top: 2mm; font-size: 15pt; }
  .report-body table { font-size: 7.5pt; }
  .report-body th { color: #fff; background: #1f4e79; }
  .report-body th, .report-body td { padding: 2.2mm; border: .5pt solid #aeb8be; }
  .report-note { padding: 3mm; border-left: 2mm solid #06a6c9; background: #eef8fb; line-height: 1.4; }
}
