:root { color-scheme: light; --ink: #17212b; --muted: #5f6b76; --line: #d9e0e6; --soft: #f4f6f8; --brand: #1261a0; --success: #16794b; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; color: var(--ink); background: #fff; letter-spacing: 0; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { border-bottom: 1px solid var(--line); background: #f8fafb; }
.identity { min-height: 118px; padding: 28px 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.eyebrow { display: block; margin-bottom: 6px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }
h1, h2 { margin: 0; letter-spacing: 0; }
h1 { font-size: 30px; line-height: 1.2; }
h1 span { color: var(--muted); font-weight: 500; }
h2 { font-size: 19px; line-height: 1.3; }
.service-state { display: inline-flex; align-items: center; gap: 9px; color: var(--success); font-size: 14px; font-weight: 700; white-space: nowrap; }
.state-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px #dff3e9; }
main { padding-bottom: 56px; }
section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.metrics { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); padding: 0; background: var(--ink); color: #fff; border: 0; }
.metrics div { min-width: 0; padding: 18px 20px; border-right: 1px solid #3d4650; }
.metrics div:last-child { border-right: 0; }
.metrics span { display: block; margin-bottom: 5px; color: #bec7cf; font-size: 12px; }
.metrics strong { display: block; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.metrics code { color: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.timestamp, .count, .muted, .note { color: var(--muted); font-size: 12px; }
.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
tr:last-child th, tr:last-child td { border-bottom: 0; }
thead th { background: var(--soft); color: #44505c; font-size: 11px; text-transform: uppercase; white-space: nowrap; }
tbody th { width: 130px; background: #fafbfc; color: #44505c; font-size: 12px; white-space: nowrap; }
code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 12px; }
.breakable { overflow-wrap: anywhere; word-break: break-word; }
.kind, .method { display: inline-block; min-width: 48px; color: var(--brand); font-size: 11px; font-weight: 800; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.note { margin: 10px 0 0; line-height: 1.5; }
@media (max-width: 800px) {
  .shell { width: min(100% - 24px, 1180px); }
  .identity { min-height: 100px; align-items: flex-start; }
  h1 { font-size: 24px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metrics div { border-bottom: 1px solid #3d4650; }
  .metrics div:nth-child(2n) { border-right: 0; }
  .metrics div:last-child { border-bottom: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (max-width: 520px) {
  .identity { flex-direction: column; gap: 14px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics div { border-right: 0; }
  th, td { padding: 10px 11px; }
}