:root { color-scheme: light; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; --ink: #102f3d; --muted: #5d737c; --green: #0b806c; --line: #dce8e5; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; color: var(--ink); background: radial-gradient(circle at 20% 0%, #def4ed, transparent 36%), #f6faf9; }
main { width: min(820px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0; }
header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 42px; }
header p { color: var(--muted); font-weight: 700; }
.brand { display: flex; gap: 10px; align-items: center; color: var(--ink); text-decoration: none; font-size: 20px; }
.brand span { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--green), #43b49a); font-weight: 900; }
.status-card, .systems { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 24px 65px rgba(16,47,61,.08); }
.status-card { padding: clamp(28px, 6vw, 54px); }
.status-line { display: flex; gap: 14px; align-items: center; }
.status-line h1 { margin: 0; font-size: clamp(30px, 6vw, 52px); letter-spacing: -.04em; }
.dot { width: 18px; height: 18px; border-radius: 50%; background: #21ad83; box-shadow: 0 0 0 8px #dbf6ec; flex: 0 0 auto; }
.status-card p { color: var(--muted); font-size: 17px; line-height: 1.65; margin: 22px 0 0 32px; }
.systems { margin-top: 18px; overflow: hidden; }
.systems div { display: flex; justify-content: space-between; gap: 24px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.systems div:last-child { border-bottom: 0; }
.systems strong { color: var(--green); }
footer { display: flex; justify-content: space-between; gap: 24px; margin-top: 28px; color: var(--muted); font-size: 12px; }
footer a { color: var(--green); font-weight: 800; }
footer span { text-align: right; }
@media (max-width: 620px) { header, footer { align-items: flex-start; flex-direction: column; } footer span { text-align: left; } .status-card p { margin-left: 0; } .status-line { align-items: flex-start; } .systems div { align-items: flex-start; flex-direction: column; gap: 5px; } }

