:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0E0E10;
    color: #F4F4F5;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: #0E0E10; }
main { width: min(900px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0; display: grid; gap: 18px; }
header { max-width: 680px; margin-bottom: 10px; }
.eyebrow { margin: 0; color: #A78BFA; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; }
h1 { margin: 8px 0 12px; font-size: clamp(34px, 6vw, 54px); line-height: 1.04; letter-spacing: -.035em; }
h2 { margin: 0 0 10px; font-size: 17px; }
p { margin: 0; color: #A1A1AA; line-height: 1.65; }
.lead { font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card { border: 1px solid #26262B; border-radius: 8px; background: #17171A; padding: 22px; }
.status-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.status { display: inline-flex; align-items: center; gap: 8px; color: #A1A1AA; white-space: nowrap; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #EAB308; }
.dot.ok { background: #10B981; }
.dot.error { background: #EF4444; }
ol { margin: 0; padding-left: 22px; color: #A1A1AA; line-height: 1.75; }
@media (max-width: 720px) { main { padding: 42px 0; } .grid { grid-template-columns: 1fr; } .status-card { align-items: flex-start; } }
