:root {
  --bg: #0f172a;
  --panel: #111827;
  --panel-light: #182235;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.2);
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1e3a8a 0, transparent 34%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.topbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .02em; }
.logo {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--line);
}
nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }
main { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }
.hero { padding: 88px 0 72px; max-width: 780px; }
.eyebrow { color: var(--accent); text-transform: uppercase; font-size: 13px; font-weight: 700; letter-spacing: .16em; }
h1 { font-size: clamp(38px, 6vw, 72px); line-height: 1.02; margin: 12px 0 24px; }
.lead { color: var(--muted); font-size: 20px; max-width: 680px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  padding: 12px 18px; border-radius: 12px;
  background: var(--accent); color: #03111f;
  font-weight: 700;
}
.button.secondary { background: var(--panel-light); color: var(--text); border: 1px solid var(--line); }
.panel, .card {
  background: rgba(17, 24, 39, .78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}
.panel { padding: 28px; margin: 24px 0; }
.status { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
h2, h3 { margin: 0 0 10px; }
p { margin: 0; color: var(--muted); }
.badge {
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .12);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, .25);
  font-weight: 700;
  font-size: 14px;
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; }
.card { padding: 24px; }
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
@media (max-width: 760px) {
  .topbar, .status, footer { flex-direction: column; align-items: flex-start; }
  .grid { grid-template-columns: 1fr; }
  nav { flex-wrap: wrap; }
  .hero { padding-top: 48px; }
}
