:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17202a;
  background: #f5f7f9;
  --green: #16834a;
  --amber: #a45b00;
  --red: #b42318;
  --grey: #667085;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
a { color: #145da0; }
.site-header { background: #13293d; color: white; padding: 1rem max(1.25rem, calc((100vw - 920px) / 2)); display: flex; gap: 1rem; align-items: center; }
.brand { color: white; font-weight: 800; text-decoration: none; font-size: 1.25rem; }
main { width: min(920px, calc(100% - 2rem)); margin: 2rem auto; flex: 1; }
.summary, .detail, .component { background: white; border: 1px solid #dfe4ea; border-radius: 12px; }
.summary { display: flex; gap: 1rem; padding: 1.5rem; align-items: flex-start; }
.status-dot { width: 1rem; height: 1rem; border-radius: 50%; margin-top: .45rem; background: var(--grey); flex: 0 0 auto; }
.status-dot.operational { background: var(--green); }
.status-dot.degraded { background: var(--amber); }
.status-dot.outage { background: var(--red); }
.status-dot.unknown { background: var(--grey); }
.eyebrow { color: var(--grey); font-size: .78rem; font-weight: 700; letter-spacing: .08em; margin: 0 0 .35rem; text-transform: uppercase; }
h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin: 0 0 .5rem; }
h2 { margin: 2rem 0 .75rem; }
.updated { color: var(--grey); font-size: .9rem; }
.components { display: grid; gap: .75rem; }
.component { padding: 1rem 1.1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.component strong { text-transform: capitalize; }
.component[data-status="operational"] strong { color: var(--green); }
.component[data-status="degraded"] strong { color: var(--amber); }
.component[data-status="outage"] strong { color: var(--red); }
.component[data-status="unknown"] strong { color: var(--grey); }
.detail { padding: 1.25rem; margin-top: 2rem; }
.detail h2 { margin-top: 0; }
footer { padding: 1.5rem; text-align: center; }
.noscript { background: #fff4e5; border: 1px solid #ffc266; padding: 1rem; text-align: center; }
@media (max-width: 520px) { .summary { padding: 1.15rem; } .component { align-items: flex-start; flex-direction: column; gap: .25rem; } }