:root {
  --bg: #0b0f14;
  --panel: #0f1620;
  --text: #e8eef6;
  --muted: #a9b6c6;
  --line: rgba(232, 238, 246, 0.12);
  --max: 920px;
  --r: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); }
a:hover { border-bottom-color: rgba(232, 238, 246, 0.35); }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--panel); padding: 10px 12px; border-radius: 10px;
}
.skip-link:focus { left: 12px; border: 1px solid var(--line); }

.site-header {
  position: sticky; top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 20, 0.75);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; gap: 10px; align-items: center; border-bottom: 0; }
.brand-mark { width: 10px; height: 10px; border-radius: 999px; background: var(--text); display: inline-block; }
.brand-name { font-weight: 650; letter-spacing: 0.2px; }

.nav { display: inline-flex; gap: 14px; }
.nav a { border-bottom: 0; padding: 6px 8px; border-radius: 10px; }
.nav a:hover { background: rgba(232, 238, 246, 0.06); }
.nav a[aria-current="page"] { background: rgba(232, 238, 246, 0.10); }

.hero { padding: 56px 0 22px; }
.hero h1 { margin: 0 0 12px; font-size: 2.2rem; line-height: 1.15; letter-spacing: -0.02em; }
.lead { font-size: 1.05rem; color: var(--muted); margin: 0 0 18px; max-width: 70ch; }

.status { display: flex; gap: 10px; align-items: center; margin: 0; }
.pill {
  display: inline-flex; padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(232, 238, 246, 0.05);
  font-size: 0.9rem;
}
.muted { color: var(--muted); }

.section { padding: 28px 0; border-top: 1px solid var(--line); }
.section.subtle { background: rgba(232, 238, 246, 0.03); }

.section h2 { margin: 0 0 12px; font-size: 1.25rem; letter-spacing: -0.01em; }
.section p { margin: 0 0 12px; max-width: 80ch; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.card {
  background: rgba(232, 238, 246, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
}
.card h3 { margin: 0 0 8px; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); }

.bullets { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.bullets li { margin: 6px 0; }

.page { padding: 36px 0; }
.page h1 { margin: 0 0 12px; font-size: 2rem; letter-spacing: -0.02em; }

.site-footer { border-top: 1px solid var(--line); padding: 18px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-footer .muted { margin: 0; }

@media (max-width: 840px) {
  .cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 42px; }
}
