:root { color-scheme: light dark; }
* { box-sizing: border-box; }
body { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; margin: 0; background: #fafafa; color: #1f2937; }
main { max-width: 720px; margin: 0 auto; padding: 32px 24px; }
.overall { padding: 24px; border-radius: 12px; background: white; border-top: 4px solid var(--overall, #6b7280); margin-bottom: 24px; }
.overall h1 { margin: 0 0 4px; font-size: 1.5rem; }
.overall .banner { margin: 0; font-weight: 600; color: var(--overall, #6b7280); }
.overall .ts { margin: 8px 0 0; font-size: 0.75rem; color: #6b7280; }
.services { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.svc { background: white; padding: 12px 16px; border-radius: 8px; display: grid; grid-template-columns: 12px 1fr auto; gap: 12px; align-items: center; }
.svc .dot { width: 10px; height: 10px; border-radius: 50%; background: #6b7280; }
.svc--pass .dot { background: #10b981; }
.svc--warn .dot { background: #f59e0b; }
.svc--fail .dot { background: #ef4444; }
.svc .status { font-size: 0.875rem; color: #6b7280; }
.incidents { margin-top: 32px; }
.incidents h2 { font-size: 1rem; margin: 0 0 12px; }
.inc { background: white; padding: 12px 16px; border-radius: 8px; border-left: 4px solid #f97316; margin-bottom: 8px; }
.inc--info { border-left-color: #3b82f6; }
.inc--warning { border-left-color: #f59e0b; }
.inc--critical { border-left-color: #ef4444; }
@media (prefers-color-scheme: dark) {
  body { background: #0f172a; color: #e2e8f0; }
  .overall, .svc, .inc { background: #1e293b; }
}