:root {
  --bg: #0b1220;
  --panel: #111a2b;
  --panel-2: #0f1726;
  --line: #22304a;
  --text: #e8eef9;
  --muted: #9eb0cc;
  --accent: #7db2ff;
  --accent-2: #b8d3ff;
  --ok: #12311d;
  --ok-line: #24583a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #09101c 0%, #0b1220 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(9, 16, 28, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 10;
}

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

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2c6cff, #77a7ff);
  color: white;
  font-weight: 800;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 12ch;
}

h2 {
  font-size: 30px;
  margin: 0 0 10px;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

h4 {
  margin: 0 0 10px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 62ch;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #2c6cff, #77a7ff);
  border: none;
  color: white;
  font-weight: 600;
}

.meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-text {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 0 24px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.stats {
  display: grid;
  gap: 16px;
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label,
.card p,
.clean-list,
.muted {
  color: var(--muted);
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

.status.ok {
  background: linear-gradient(180deg, rgba(18,49,29,0.85), rgba(18,49,29,0.55));
  border-color: var(--ok-line);
}

.small {
  font-size: 13px;
}

.footer {
  padding: 28px 0 48px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
}

.footer-brand {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    padding: 12px 0;
    flex-direction: column;
  }

  h1 {
    max-width: none;
  }
}
