:root {
  --bg: #0b1220;
  --panel: #121a2b;
  --text: #e8eefc;
  --muted: #93a0b8;
  --accent: #3d8bfd;
  --ok: #2fbf71;
  --line: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(61, 139, 253, 0.25), transparent 60%),
    radial-gradient(900px 400px at 90% 0%, rgba(47, 191, 113, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px 8px;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}
nav { display: flex; gap: 18px; font-size: 14px; }

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 24px 48px;
}

.hero { padding: 28px 0 10px; }
.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
h1 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; }
.lead { margin: 0; max-width: 62ch; color: var(--muted); line-height: 1.55; }

.panel, .grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 18px;
}
h2, h3 { margin: 0 0 12px; font-size: 18px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.grid article { margin-top: 0; }
.grid p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 14px; }

.status-list { list-style: none; margin: 0; padding: 0; }
.status-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.status-list li:last-child { border-bottom: 0; }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
  flex: 0 0 auto;
}
.dot.ok { background: var(--ok); box-shadow: 0 0 0 3px rgba(47, 191, 113, 0.18); }

.muted-box p { color: var(--muted); line-height: 1.55; }
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: #c9d6ef;
}

footer {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .top { flex-direction: column; align-items: flex-start; gap: 12px; }
  footer { flex-direction: column; }
}
