:root{
  --bg1:#0f172a;
  --bg2:#0b1220;
  --card:#ffffff;
  --accent:#ff6b6b;
  --muted:#6b7280;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;line-height:1.4;color:#0b1220}
body{
  background:linear-gradient(120deg,var(--bg1) 0%, var(--bg2) 100%);
  display:flex;align-items:center;justify-content:center;padding:32px;
}
.card{
  width:100%;max-width:980px;background:linear-gradient(180deg,rgba(255,255,255,0.98),rgba(255,255,255,0.96));
  border-radius:16px;box-shadow:0 10px 30px rgba(2,6,23,0.6);padding:40px;display:grid;grid-template-columns:1fr 360px;gap:24px;align-items:center;
}
.brand{display:flex;gap:16px;align-items:center}
.logo{width:72px;height:72px;border-radius:12px;background:linear-gradient(135deg,var(--accent),#ffb86b);display:flex;align-items:center;justify-content:center;color:white;font-weight:700;font-size:20px}
h1{margin:0;font-size:22px;color:#061226}
p.lead{margin:10px 0 0;color:var(--muted);font-size:15px}
.meta{margin-top:20px;color:var(--muted);font-size:14px}
.actions{margin-top:22px;display:flex;gap:12px}
a.button{display:inline-block;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:600}
a.primary{background:linear-gradient(90deg,var(--accent),#ff8e8e);color:white}
a.ghost{background:transparent;border:1px solid #e6e9ee;color:#334155}
.right{background:linear-gradient(180deg,#fbfdff,#f6f8fb);border-radius:12px;padding:20px;box-shadow:inset 0 1px 0 rgba(255,255,255,0.6)}
.status{display:flex;align-items:center;gap:12px}
.dot{width:12px;height:12px;border-radius:50%}
.dot.up{background:#10b981}
.dot.maintenance{background:#f59e0b}
.small{font-size:13px;color:var(--muted)}
footer{grid-column:1/-1;margin-top:18px;border-top:1px dashed #e6e9ee;padding-top:16px;color:var(--muted);font-size:13px;display:flex;justify-content:space-between;align-items:center}
@media(max-width:880px){.card{grid-template-columns:1fr;max-width:760px}.right{order:-1}}
