:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --panel: #ffffff;
  --ink: #15212b;
  --muted: #61717f;
  --line: #dfe6ec;
  --soft: #eef7f6;
  --accent: #0f766e;
  --accent-2: #1d4ed8;
  --ok: #12805c;
  --warn: #b7791f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 14px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 720;
  font-size: 18px;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
}

.links a:hover {
  color: var(--ink);
}

.hero {
  padding: 70px 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  color: var(--accent);
  background: var(--soft);
  border: 1px solid #c9ebe6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(18, 128, 92, .12);
}

h1 {
  margin: 22px 0 16px;
  max-width: 760px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: start;
}

.console {
  background: #0d1620;
  color: #d5e6f3;
  border: 1px solid #1c3143;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 42, 58, .16);
}

.console-head {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid #1c3143;
  color: #8ea7b8;
  font-size: 12px;
}

.console-head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24c69a;
}

.console pre {
  margin: 0;
  padding: 18px;
  white-space: pre-wrap;
  font: 12px/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.section {
  padding: 26px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card,
.wide-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card {
  padding: 18px;
}

.card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

.card p,
.wide-panel p {
  margin: 0;
  color: var(--muted);
}

.wide-panel {
  padding: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric {
  background: var(--panel);
  padding: 18px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric b {
  display: block;
  margin-top: 6px;
  font-size: 21px;
  letter-spacing: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.table th,
.table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.table tr:last-child td {
  border-bottom: 0;
}

.status-ok {
  color: var(--ok);
  font-weight: 700;
}

.footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: var(--muted);
  font-size: 12px;
}

code {
  padding: 2px 5px;
  background: #edf2f7;
  border-radius: 5px;
  font: 12px ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

@media (max-width: 820px) {
  .links {
    gap: 12px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .cards,
  .metric-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 34px;
  }
}
