:root {
  color-scheme: light dark;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font:
    14px system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  background: linear-gradient(180deg, rgba(168, 67, 42, 0.06), transparent 30%);
}
body > * {
  width: min(1120px, calc(100% - 32px));
}
img {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}

.site-header {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto 18px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 18px 10px;
  backdrop-filter: blur(10px);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ore);
  font-weight: 600;
}
.brand-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--cond);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}
.nav-item {
  position: relative;
}
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rule-2);
  background: var(--surface-2);
  color: var(--ink);
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.nav-button:hover,
.nav-button:focus-visible {
  background: var(--surface);
  border-color: var(--ore);
  box-shadow: 0 8px 22px -14px rgba(168, 67, 42, 0.7);
  transform: translateY(-1px);
}
.nav-button[aria-expanded='true'] {
  background: var(--surface);
  border-color: var(--ore);
  color: var(--ore);
}
.caret {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 0.8rem;
}
.nav-button[aria-expanded='true'] .caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 20;
}
.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-size: 0.93rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--surface-2);
  color: var(--ore);
  transform: translateX(2px);
}
.page-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 32px;
  text-align: center;
  color: var(--ink-2);
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px 8px;
    border-radius: 14px;
  }
  .main-nav {
    justify-content: flex-start;
  }
  .nav-button {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
  }
  .nav-item {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    margin-top: 8px;
    min-width: 100%;
  }
}
:root {
  --paper: #fbfbf9;
  --surface: #ffffff;
  --surface-2: #f4f5f3;
  --ink: #14191f;
  --ink-2: #55606b;
  --ink-3: #8a929b;
  --rule: #e2e5e8;
  --rule-2: #cfd5da;
  --ore: #a8432a;
  --ore-soft: rgba(168, 67, 42, 0.1);
  --good: #0ca30c;
  --warning: #fab219;
  --critical: #d03b3b;
  --age1: #86b6ef;
  --age2: #5598e7;
  --age3: #2a78d6;
  --age4: #1c5cab;
  --age5: #104281;
  --s1: #2a78d6;
  --s2: #eb6834;
  --grid: #e1e0d9;
  --axis: #c3c2b7;
  --shadow:
    0 1px 2px rgba(20, 25, 31, 0.05), 0 8px 24px -12px rgba(20, 25, 31, 0.18);
  --sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --cond: 'IBM Plex Sans Condensed', 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --paper: #0f1216;
    --surface: #171c21;
    --surface-2: #1e242a;
    --ink: #f2f4f6;
    --ink-2: #a9b2bb;
    --ink-3: #79828c;
    --rule: #262d34;
    --rule-2: #333c45;
    --ore: #e08361;
    --ore-soft: rgba(224, 131, 97, 0.14);
    --age1: #184f95;
    --age2: #256abf;
    --age3: #3987e5;
    --age4: #6da7ec;
    --age5: #9ec5f4;
    --s1: #3987e5;
    --s2: #d95926;
    --grid: #2c2c2a;
    --axis: #383835;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px -12px rgba(0, 0, 0, 0.7);
  }
}
:root[data-theme='dark'] {
  --paper: #0f1216;
  --surface: #171c21;
  --surface-2: #1e242a;
  --ink: #f2f4f6;
  --ink-2: #a9b2bb;
  --ink-3: #79828c;
  --rule: #262d34;
  --rule-2: #333c45;
  --ore: #e08361;
  --ore-soft: rgba(224, 131, 97, 0.14);
  --age1: #184f95;
  --age2: #256abf;
  --age3: #3987e5;
  --age4: #6da7ec;
  --age5: #9ec5f4;
  --s1: #3987e5;
  --s2: #d95926;
  --grid: #2c2c2a;
  --axis: #383835;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px -12px rgba(0, 0, 0, 0.7);
}
* {
  box-sizing: border-box;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 2.5px solid var(--ink);
  padding-bottom: 14px;
}
.mh-org {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ore);
  font-weight: 600;
}
.mh-title {
  margin: 6px 0 3px;
  font-family: var(--cond);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  text-wrap: balance;
}
.mh-sub {
  font-size: 13px;
  color: var(--ink-2);
}
.execsum {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 24px;
}
.execsum .es-k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 13px;
}
.execsum ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: es;
}
.execsum li {
  position: relative;
  padding-left: 27px;
  font-size: 13.5px;
  line-height: 1.55;
}
.execsum li::before {
  counter-increment: es;
  content: counter(es, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 0.06em;
}
.execsum b {
  font-family: var(--cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.src {
  padding: 11px 20px 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pbtn {
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--rule-2);
  padding: 8px 15px;
  cursor: pointer;
}
.pbtn:hover {
  background: var(--surface-2);
  border-color: var(--ore);
  color: var(--ore);
}
.pbtn:focus-visible {
  outline: 2px solid var(--ore);
  outline-offset: 2px;
}
#phint {
  flex-basis: 100%;
  font-size: 12px;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--warning);
  border-left: 3px solid var(--warning);
  padding: 10px 14px;
  display: none;
}
#phint.on {
  display: block;
}
#phint kbd {
  font-family: var(--mono);
  font-size: 11px;
  border: 1px solid var(--rule-2);
  padding: 1px 5px;
  background: var(--surface-2);
}

.tblock {
  border: 1.5px solid var(--ink);
  background: var(--surface);
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1.2fr;
}
.tblock > div {
  border-right: 1px solid var(--rule-2);
  padding: 13px 16px;
  min-width: 0;
}
.tblock > div:last-child {
  border-right: 0;
}
.tb-k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 3px;
}
.tb-v {
  font-family: var(--cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.tb-v small {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0;
  margin-top: 2px;
}
.tb-main .tb-v {
  font-size: 21px;
}

.weekbar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--warning);
  padding: 12px 17px;
}
.weekbar .wk {
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.weekbar .wn {
  font-family: var(--cond);
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.weekbar .wl {
  font-size: 12px;
  color: var(--ink-2);
}
.weekbar .wnote {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: var(--mono);
}

.states {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.state {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--bar, var(--rule-2));
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition:
    border-color 0.12s,
    background 0.12s;
}
.state:hover {
  background: var(--surface-2);
}
.state[aria-pressed='true'] {
  border-color: var(--ore);
  border-left-color: var(--ore);
  background: var(--ore-soft);
}
.state:focus-visible {
  outline: 2px solid var(--ore);
  outline-offset: 2px;
}
.state .num {
  font-family: var(--cond);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.state .lab {
  font-size: 12.5px;
  font-weight: 600;
}
.state .sub {
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--mono);
}
.state.muted .num {
  color: var(--ink-3);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.ph {
  padding: 17px 20px;
  border-bottom: 1px solid var(--rule);
}
.ph .phtop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.ph h2 {
  margin: 0;
  font-family: var(--cond);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.ph .note {
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: var(--mono);
  text-align: right;
  white-space: nowrap;
}
.kpi-eyebrow {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ore);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.finding {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--ink-2);
  max-width: 88ch;
  line-height: 1.55;
}
.finding b {
  color: var(--ink);
  font-weight: 600;
}

.mwrap {
  overflow-x: auto;
  padding: 0 20px 6px;
}
table.mx thead th:first-child,
table.mx tfoot td:first-child,
table.mx td.disc {
  padding-left: 0;
}
table.mx thead th:last-child,
table.mx tfoot td:last-child {
  padding-right: 0;
}
table.mx tbody td:last-child .pctbar {
  padding-right: 0;
}
.listwrap {
  padding: 0 20px;
}
table.lst thead th:first-child,
table.lst tbody td:first-child {
  padding-left: 0;
}
table.lst thead th:last-child,
table.lst tbody td:last-child {
  padding-right: 0;
}
table.mx {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px;
}
table.mx th,
table.mx td {
  padding: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
table.mx thead th {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--rule-2);
  vertical-align: bottom;
  white-space: nowrap;
}
table.mx thead th.l,
table.mx td.l {
  text-align: left;
}
table.mx tbody td {
  border-bottom: 1px solid var(--rule);
}
table.mx tbody tr:last-child td {
  border-bottom: 0;
}
table.mx tfoot td {
  border-top: 1.5px solid var(--ink);
  font-weight: 700;
  padding: 18px 20px;
  font-family: var(--cond);
  font-size: 15px;
}
.disc {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.cell {
  width: 100%;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 18px 20px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-family: var(--cond);
  font-weight: 600;
  transition: background 0.12s;
}
.cell:hover {
  background: var(--surface-2);
}
.cell[aria-pressed='true'] {
  background: var(--ore-soft);
  box-shadow: inset 2px 0 0 var(--ore);
}
.cell:focus-visible {
  outline: 2px solid var(--ore);
  outline-offset: -2px;
}
.cell.zero {
  color: var(--ink-3);
  font-weight: 400;
}
.pctbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  justify-content: flex-end;
}
.pctbar .track {
  width: 56px;
  height: 5px;
  background: var(--rule);
  position: relative;
  flex: none;
}
.pctbar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--ink-2);
}
.pctbar span {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 14px;
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: 0;
}
.dot.ring {
  background: transparent !important;
  border: 2px solid var(--good);
  width: 8px;
  height: 8px;
}

.catgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.catcol {
  padding: 20px;
}
.catcol + .catcol {
  border-left: 1px solid var(--rule);
}
.cathd {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 3px;
}
.cathd h3 {
  margin: 0;
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 700;
}
.cathd .n {
  font-family: var(--cond);
  font-size: 27px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.catsub {
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: var(--mono);
  margin-bottom: 16px;
}
.stack {
  display: flex;
  height: 26px;
  border: 1px solid var(--rule-2);
  margin-bottom: 14px;
  overflow: hidden;
}
.stack span {
  display: block;
  height: 100%;
}
.catlegend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catrow {
  display: grid;
  grid-template-columns: 14px 1fr auto auto;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  padding: 4px 0;
  cursor: pointer;
  text-align: left;
}
.catrow:hover {
  color: var(--ore);
}
.catrow:focus-visible {
  outline: 2px solid var(--ore);
  outline-offset: 2px;
}
.catrow .cl {
  font-size: 12.5px;
}
.catrow .cv {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.catrow .cp {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  min-width: 40px;
  text-align: right;
}
.catmoney {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-2);
}
.catmoney b {
  font-family: var(--cond);
  font-size: 15px;
  color: var(--ink);
}

.agegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.agecol {
  padding: 20px;
}
.agecol + .agecol {
  border-left: 1px solid var(--rule);
}
.agehd {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
}
.agehd h3 {
  margin: 0;
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 700;
}
.agehd .n {
  font-family: var(--cond);
  font-size: 23px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.agesub {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-family: var(--mono);
  min-height: 32px;
}
.bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.barrow {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  padding: 2px 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.barrow:hover .btrack {
  background: var(--surface-2);
}
.barrow[aria-pressed='true'] .blab {
  color: var(--ore);
  font-weight: 600;
}
.barrow:focus-visible {
  outline: 2px solid var(--ore);
  outline-offset: 2px;
}
.barrow[disabled] {
  cursor: default;
}
.blab {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  text-align: right;
  white-space: nowrap;
}
.btrack {
  position: relative;
  height: 23px;
  display: flex;
  align-items: center;
  transition: background 0.12s;
}
.bfill {
  height: 23px;
  border-radius: 0 4px 4px 0;
  transition: filter 0.12s;
}
.barrow:hover .bfill {
  filter: brightness(1.08);
}
.bval {
  font-family: var(--cond);
  font-size: 13px;
  font-weight: 600;
  margin-left: 9px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
}
.agefoot {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--rule);
  font-size: 11.5px;
  color: var(--ink-3);
}

.chartbox {
  padding: 20px;
}
.legend {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-2);
}
.legend i {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  display: block;
}
.chartscroll {
  overflow-x: auto;
}
svg.chart {
  display: block;
  width: 100%;
  min-width: 680px;
  height: auto;
}
svg.chart text {
  font-family: var(--mono);
  font-size: 9px;
  fill: var(--ink-3);
}
svg.chart text.val {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 700;
  fill: var(--ink-2);
}
svg.chart .gl {
  stroke: var(--grid);
  stroke-width: 1;
}
svg.chart .ax {
  stroke: var(--axis);
  stroke-width: 1;
}
.chartfoot {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--ink-3);
}

.vgrid {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vrow {
  display: grid;
  grid-template-columns: 152px 1fr;
  align-items: center;
  gap: 13px;
  background: none;
  border: 0;
  padding: 2px 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.vrow:hover .btrack {
  background: var(--surface-2);
}
.vrow[aria-pressed='true'] .vlab {
  color: var(--ore);
  font-weight: 600;
}
.vrow:focus-visible {
  outline: 2px solid var(--ore);
  outline-offset: 2px;
}
.vlab {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-2);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 13px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ore-soft);
  color: var(--ore);
  border: 1px solid var(--ore);
  padding: 4px 11px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}
.chip button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  line-height: 1;
  font-size: 14px;
}
.selbar .count {
  font-size: 12px;
  color: var(--ink-2);
  margin-left: auto;
  font-family: var(--mono);
}
.listwrap {
  max-height: 560px;
  overflow: auto;
}
table.lst {
  border-collapse: collapse;
  width: 100%;
  min-width: 960px;
}
table.lst thead th {
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--rule-2);
  white-space: nowrap;
}
table.lst thead th.r {
  text-align: right;
}
table.lst tbody tr {
  cursor: pointer;
  border-bottom: 1px solid var(--rule);
}
table.lst tbody tr:hover {
  background: var(--surface-2);
}
table.lst tbody tr:focus-visible {
  outline: 2px solid var(--ore);
  outline-offset: -2px;
}
table.lst td {
  padding: 13px 16px;
  vertical-align: top;
}
td.no {
  font-family: var(--mono);
  font-size: 11.5px;
  white-space: nowrap;
  font-weight: 500;
}
td.ds {
  color: var(--ink-2);
  font-size: 12.5px;
  max-width: 300px;
}
td.r {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: var(--mono);
  font-size: 12px;
  white-space: nowrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  padding: 3px 9px;
  border: 1px solid var(--rule-2);
  background: var(--surface);
}
.empty {
  padding: 46px 16px;
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 18, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  z-index: 40;
}
.scrim.on {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(620px, 100%);
  background: var(--paper);
  border-left: 1px solid var(--rule-2);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 41;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px -30px rgba(0, 0, 0, 0.5);
}
.drawer.on {
  transform: translateX(0);
}
.dhead {
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
  flex: none;
}
.dhead .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.dhead h2 {
  margin: 0 0 3px;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 600;
  word-break: break-all;
}
.dhead p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
}
.xbtn {
  background: none;
  border: 1px solid var(--rule-2);
  color: var(--ink-2);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 5px 10px;
  flex: none;
}
.xbtn:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.dmeta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
  flex: none;
}
.dmeta div {
  padding: 11px 14px;
  border-right: 1px solid var(--rule);
}
.dmeta div:last-child {
  border-right: 0;
}
.dmeta .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.dmeta .v {
  font-family: var(--cond);
  font-size: 15px;
  font-weight: 600;
  margin-top: 2px;
}
.dbody {
  overflow: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.dsec h3 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.tl {
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid var(--rule-2);
  margin-left: 5px;
}
.tli {
  position: relative;
  padding: 0 0 15px 21px;
}
.tli:last-child {
  padding-bottom: 0;
}
.tli::before {
  content: '';
  position: absolute;
  left: -5.5px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ev, var(--ink-3));
  border: 2px solid var(--paper);
}
.tli .t {
  font-size: 12.5px;
  font-weight: 600;
}
.tli .d {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}
.cmt {
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 13px 15px;
  margin-bottom: 10px;
}
.cmt .ch {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}
.cmt .who {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.cmt .tx {
  font-size: 12.5px;
  line-height: 1.55;
}
.cmt .rep {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--rule-2);
}
.cmt .rep .who {
  color: var(--ore);
}
.open-flag {
  color: var(--warning);
  font-weight: 600;
}

.foot {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.65;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.foot b {
  color: var(--ink-2);
  font-weight: 600;
}
.mn {
  font-family: var(--mono);
}
.tip {
  position: fixed;
  pointer-events: none;
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  padding: 6px 10px;
  font-family: var(--mono);
  z-index: 60;
  opacity: 0;
  transition: opacity 0.1s;
  white-space: pre;
  line-height: 1.5;
}
.tip.on {
  opacity: 1;
}

@media (max-width: 1000px) {
  .states {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .tblock {
    grid-template-columns: 1fr 1fr;
  }
  .tblock > div {
    border-bottom: 1px solid var(--rule-2);
  }
  .states {
    grid-template-columns: 1fr 1fr;
  }
  .agegrid,
  .catgrid {
    grid-template-columns: 1fr;
  }
  .agecol + .agecol,
  .catcol + .catcol {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .dmeta {
    grid-template-columns: 1fr 1fr;
  }
  .vrow {
    grid-template-columns: 112px 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

@media print {
  :root {
    --paper: #fff;
    --surface: #fff;
    --surface-2: #f6f6f4;
    --ink: #101418;
    --ink-2: #4a5560;
    --ink-3: #7d858e;
    --rule: #dcdfe2;
    --rule-2: #c2c8cd;
    --ore: #a8432a;
    --shadow: none;
    --age1: #86b6ef;
    --age2: #5598e7;
    --age3: #2a78d6;
    --age4: #1c5cab;
    --age5: #104281;
    --s1: #2a78d6;
    --s2: #eb6834;
    --grid: #e1e0d9;
    --axis: #c3c2b7;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  @page {
    size: A4 landscape;
    margin: 10mm;
  }
  body {
    background: #fff;
    font-size: 10px;
  }
  .wrap {
    max-width: none;
    padding: 0;
    gap: 10px;
  }
  .noprint,
  #listpanel,
  .drawer,
  .scrim,
  .tip {
    display: none !important;
  }
  .panel {
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #c8ced3;
  }
  .panel + .panel {
    break-before: page;
    page-break-before: always;
  }
  .masthead,
  .tblock,
  .weekbar,
  .states,
  .execsum,
  .foot {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .execsum {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    padding: 14px 16px;
  }
  .execsum .es-k {
    opacity: 1;
    color: var(--ink-3);
  }
  .execsum li {
    font-size: 10.5px;
  }
  .mh-title {
    font-size: 26px;
  }
  .masthead {
    padding-bottom: 9px;
  }
  .src {
    padding: 8px 16px 10px;
    font-size: 8.5px;
  }
  .foot {
    break-before: page;
    page-break-before: always;
  }
  .states {
    gap: 6px;
  }
  .state .num {
    font-size: 23px;
  }
  .ph {
    padding: 11px 14px;
  }
  .ph h2 {
    font-size: 15px;
  }
  .finding {
    font-size: 11px;
    margin-top: 5px;
  }
  .mwrap {
    overflow: visible;
    padding: 0 16px 6px;
  }
  table.mx,
  table.lst {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }
  table.mx thead th {
    padding: 9px 6px 7px;
    font-size: 7px;
    letter-spacing: 0.04em;
  }
  table.mx thead th .dot {
    display: none;
  }
  .cell,
  .disc,
  .pctbar,
  table.mx tfoot td {
    padding: 9px 6px;
  }
  .cell {
    font-size: 11px;
  }
  .disc {
    font-size: 10.5px;
    white-space: normal;
  }
  table.mx tfoot td {
    font-size: 11px;
  }
  .pctbar {
    gap: 5px;
  }
  .pctbar .track {
    width: 26px;
  }
  .pctbar span {
    font-size: 10.5px;
    min-width: 24px;
  }
  .agecol,
  .catcol,
  .chartbox,
  .vgrid {
    padding: 13px;
  }
  .foot {
    font-size: 9px;
  }
  svg.chart {
    min-width: 0;
  }
}
