:root { --ink: #050505; --panel: #101311; --panel-light: #171b18; --paper: #f5f3eb; --muted: #8c938d; --line: rgba(255,255,255,.1); --yellow: #ffc31c; --green: #78d997; --red: #ff6868; }
* { box-sizing: border-box; }
html { color-scheme: dark; }
body { min-width: 320px; min-height: 100vh; margin: 0; color: var(--paper); background: var(--ink); font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
.status-header { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 12px max(22px, calc((100vw - 940px) / 2)); border-bottom: 1px solid rgba(255,195,28,.22); background: rgba(7,8,8,.92); backdrop-filter: blur(18px); }
.status-brand { display: inline-flex; align-items: center; gap: 10px; font: 700 1.05rem "Space Grotesk", sans-serif; }
.status-brand img { object-fit: contain; }
.status-brand span { padding-left: 10px; border-left: 1px solid var(--line); color: #858c86; font: 700 .68rem "DM Sans", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.back-link { padding: 9px 12px; border: 1px solid var(--line); border-radius: 5px; color: #b7bcb8; font-size: .73rem; font-weight: 700; }
.back-link:hover { border-color: rgba(255,195,28,.5); color: var(--yellow); }
main { width: min(calc(100% - 40px), 900px); margin: 0 auto; padding: 74px 0 92px; }
.status-summary { display: flex; align-items: flex-start; gap: 22px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,195,28,.24); }
.summary-icon { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(120,217,151,.34); border-radius: 50%; color: #07150c; background: var(--green); font-size: 1.5rem; font-weight: 900; box-shadow: 0 0 28px rgba(120,217,151,.2); }
.status-summary.is-down .summary-icon { border-color: rgba(255,104,104,.38); color: #210707; background: var(--red); box-shadow: 0 0 28px rgba(255,104,104,.18); }
.eyebrow { margin: 0 0 10px; color: var(--yellow); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 11px; font: 700 clamp(2.25rem, 6vw, 4.4rem)/1 "Space Grotesk", sans-serif; }
.status-summary p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.6; }
.live-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 34px 0 82px; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--line); }
.live-metrics > div { display: flex; min-height: 88px; flex-direction: column; justify-content: space-between; gap: 12px; padding: 17px; background: #0d100e; }
.live-metrics span { color: #747c76; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-metrics strong { font: 600 1.2rem "Space Grotesk", sans-serif; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 29px; border-bottom: 1px solid var(--line); }
.section-heading h2 { margin-bottom: 0; font: 700 clamp(1.8rem, 4vw, 2.8rem) "Space Grotesk", sans-serif; }
.section-heading > p { max-width: 330px; margin-bottom: 0; color: #747b75; font-size: .78rem; line-height: 1.6; }
.service { padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.service-heading > div { display: flex; min-width: 0; align-items: center; gap: 12px; }
.service-heading h3 { margin: 0; font: 600 1.1rem "Space Grotesk", sans-serif; }
.service-heading strong { color: var(--green); font: 600 .9rem "Space Grotesk", sans-serif; white-space: nowrap; }
.service-check { display: grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #07150c; background: var(--green); font-size: .75rem; font-weight: 900; }
.service.is-down .service-check { color: #210707; background: var(--red); }
.service.is-down .service-heading strong { color: var(--red); }
.service-detail { margin: 7px 0 18px 37px; color: #6f766f; font-size: .73rem; }
.history { display: grid; grid-template-columns: repeat(30, minmax(3px, 1fr)); gap: 3px; height: 46px; }
.history span { min-width: 0; border-radius: 2px; background: #272b28; }
.history span.is-up { background: var(--green); }
.history span.is-degraded { background: var(--yellow); }
.history span.is-down { background: var(--red); }
.history span.is-today { box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.history-labels { display: flex; justify-content: space-between; margin-top: 9px; color: #747b75; font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.incident-history { padding-top: 70px; }
.incident-history > div { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 10px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.incident-history .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 11px var(--green); }
.incident-history.is-down .status-dot { background: var(--red); box-shadow: 0 0 11px var(--red); }
.incident-history strong { font-size: .86rem; }
.incident-history div span:last-child { justify-self: end; color: #767d77; font-size: .75rem; }
footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; padding: 18px max(22px, calc((100vw - 940px) / 2)); border-top: 1px solid rgba(255,195,28,.2); color: #747b75; font-size: .7rem; }
footer span:first-child { color: #d7dad5; font-weight: 800; }
a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
@media (max-width: 680px) { main { width: min(calc(100% - 30px), 900px); padding-top: 50px; } .status-summary { gap: 15px; padding-bottom: 42px; } .status-summary > div:last-child { min-width: 0; } .summary-icon { width: 42px; height: 42px; font-size: 1.1rem; } h1 { font-size: 2.35rem; overflow-wrap: anywhere; } .live-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 62px; } .live-metrics > div { min-width: 0; min-height: 80px; } .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; } .service { padding-block: 30px; } .history { gap: 2px; height: 40px; } .incident-history div { grid-template-columns: auto 1fr; } .incident-history div span:last-child { grid-column: 2; justify-self: start; } footer { align-items: flex-start; flex-direction: column; } }
@media (max-width: 390px) { .status-brand span { display: none; } .back-link { font-size: .68rem; } .service-heading { align-items: flex-start; } .service-heading h3 { font-size: 1rem; } .service-heading strong { font-size: .78rem; } }
