:root{
  color-scheme:light;
  --bg:#f3f5f8;
  --surface:#ffffff;
  --text:#101827;
  --muted:#667085;
  --border:#e4e7ec;
  --brand:#111827;
  --ok:#16a34a;
  --bad:#dc2626;
  --checking:#d97706;
}
*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:
    radial-gradient(circle at top left,#e7edff 0,transparent 35%),
    var(--bg);
  color:var(--text);
}
.shell{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px;
}
.card{
  width:min(760px,100%);
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:34px;
  box-shadow:0 24px 70px rgba(16,24,39,.12);
}
.eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
}
h1{
  margin:10px 0 8px;
  font-size:clamp(32px,6vw,52px);
  line-height:1.05;
}
.subtitle{
  max-width:620px;
  color:var(--muted);
  line-height:1.65;
}
.status{
  display:flex;
  align-items:center;
  gap:10px;
  margin:24px 0;
  padding:13px 15px;
  border-radius:12px;
  background:#fff7ed;
}
.status .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--checking);
  box-shadow:0 0 0 5px rgba(217,119,6,.12);
}
.status.online{background:#f0fdf4}
.status.online .dot{
  background:var(--ok);
  box-shadow:0 0 0 5px rgba(22,163,74,.12);
}
.status.offline{background:#fef2f2}
.status.offline .dot{
  background:var(--bad);
  box-shadow:0 0 0 5px rgba(220,38,38,.12);
}
.actions{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.action{
  min-height:135px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:18px;
  border:1px solid var(--border);
  border-radius:16px;
  color:var(--text);
  text-decoration:none;
  transition:.18s ease;
}
.action:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(16,24,39,.1);
}
.action.primary{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}
.action span{font-size:18px;font-weight:800}
.action small{line-height:1.45;opacity:.72}
.links{
  display:grid;
  gap:8px;
  margin-top:20px;
}
code{
  overflow:auto;
  padding:10px 12px;
  border-radius:10px;
  background:#f8fafc;
  border:1px solid var(--border);
  color:#344054;
}
footer{
  margin-top:22px;
  color:var(--muted);
  font-size:12px;
}
@media(max-width:700px){
  .card{padding:24px}
  .actions{grid-template-columns:1fr}
  .action{min-height:105px}
}
