:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5d6b78;
  --line: #dfe7e3;
  --surface: #ffffff;
  --canvas: #f4f8f6;
  --green: #147a55;
  --green-soft: #e6f5ee;
  --amber-soft: #fff3d6;
  --red: #a33434;
  --red-soft: #fdeaea;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: #116b4a; }
.shell { width: min(760px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.topbar__inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: var(--ink); font-size: 1.25rem; font-weight: 750; text-decoration: none; letter-spacing: -.02em; }
.topbar__link { color: var(--muted); font-size: .92rem; font-weight: 600; text-decoration: none; }
main { padding: 64px 0 72px; }
.eyebrow { margin: 0 0 10px; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2rem, 6vw, 3.25rem); line-height: 1.08; letter-spacing: -.045em; }
.lede { max-width: 650px; margin: 18px 0 30px; color: var(--muted); font-size: 1.05rem; }
.summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(32, 61, 48, .06);
}
.summary__label { margin: 0; font-size: 1.12rem; font-weight: 760; }
.summary__time { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; font-size: .86rem; font-weight: 750; white-space: nowrap; }
.badge::before { width: 9px; height: 9px; border-radius: 50%; content: ""; background: currentColor; }
.badge--operational { background: var(--green-soft); color: var(--green); }
.badge--degraded { background: var(--red-soft); color: var(--red); }
.services { margin-top: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.service { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 20px 24px; }
.service + .service { border-top: 1px solid var(--line); }
.service h2 { margin: 0; font-size: 1rem; }
.service p { margin: 4px 0 0; color: var(--muted); font-size: .88rem; }
.state { font-size: .82rem; font-weight: 750; }
.state--operational { color: var(--green); }
.state--degraded { color: var(--red); }
.note { margin-top: 24px; padding: 18px 20px; border-radius: 12px; background: var(--amber-soft); color: #65410b; font-size: .9rem; }
.support { margin-top: 26px; color: var(--muted); font-size: .92rem; }
footer { padding: 24px 0 36px; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 16px; }

@media (max-width: 600px) {
  main { padding-top: 42px; }
  .summary { align-items: flex-start; flex-direction: column; }
  .service { grid-template-columns: 1fr; gap: 8px; }
}
