:root{
  --grad: linear-gradient(135deg, #67e8f9 0%, #7c3aed 50%, #0ea5e9 100%);
  --bg:#0a0f1a; --card:#111827; --ghost:#1f2937; --ink:#e5e7eb; --muted:#9aa3b2;
  --brand:#7c3aed;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "SF Pro Text";
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:1120px; margin:0 auto; padding:24px}
.brand{display:flex; gap:10px; align-items:center}
.brand-mark{width:30px; height:30px; border-radius:8px; background:var(--grad)}
.brand-text{font-weight:700; letter-spacing:0.2px}
.nav{display:flex; justify-content:space-between; align-items:center; gap:16px}
.links a{opacity:.9}
.links a + a{margin-left:16px}
.btn, .btn-ghost{
  display:inline-block; padding:10px 16px; border-radius:10px; font-weight:600;
}
.btn{ background:var(--grad); color:#0b1020; }
.btn-ghost{ background:var(--ghost); color:var(--ink); }
.hero{ padding:72px 0 36px; }
.badge{ display:inline-block; padding:6px 10px; border-radius:999px; background:rgba(124,58,237,.15); color:#c4b5fd; font-weight:600; }
h1{ font-size: clamp(36px, 4.4vw, 64px); line-height:1.05; margin:18px 0 12px; letter-spacing:-0.02em;}
.lead{ font-size: clamp(16px,1.6vw,20px); color:var(--muted); max-width:780px}
.grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px; margin:36px 0 }
.card{ background:linear-gradient(180deg, #0b1220 0%, #0a0f1a 35%), var(--grad); background-blend-mode: overlay; border:1px solid #192338; border-radius:16px; padding:18px; }
.card h3{margin:0 0 8px}
.kv{ display:grid; grid-template-columns: 1fr auto; gap:12px; align-items:center }
.kv span{color:var(--muted)}
.table{ width:100%; border-collapse:collapse; background:#0b1220; border:1px solid #192338; border-radius:12px; overflow:hidden;}
th,td{ padding:10px 12px; border-bottom:1px solid #192338; text-align:left }
.badge-ok{ color:#10b981; }
.badge-warn{ color:#f59e0b; }
.badge-err{ color:#ef4444; }
footer{ margin:28px 0 10px; font-size:13px; color:#8b95a5}
.center{ text-align:center }