:root {
  --bg: #0b0d10;
  --panel: #11151a;
  --panel-2: #161b22;
  --text: #eef2f6;
  --muted: #9aa6b2;
  --line: #26313d;
  --accent: #d6dde5;
  --ok: #a9ddb8;
  --max: 1160px;
}
* { 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;
  color: var(--text);
  background:
    radial-gradient(circle at 85% -10%, rgba(255,255,255,.08), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(11,13,16,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 700; letter-spacing: .02em; }
.mark { width: 28px; height: 28px; border: 1px solid #65717e; border-radius: 7px; display: grid; place-items: center; }
.mark::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 18px rgba(169,221,184,.55); }
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }
.hero { padding: 110px 0 72px; }
.eyebrow { color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; }
h1 { font-size: clamp(44px, 7vw, 88px); line-height: .98; letter-spacing: -.045em; max-width: 900px; margin: 18px 0 26px; }
.lede { max-width: 760px; font-size: clamp(18px, 2.2vw, 24px); color: #c2cad2; }
.statusbar {
  margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px;
}
.pill {
  border: 1px solid var(--line); background: rgba(255,255,255,.025);
  padding: 9px 13px; border-radius: 999px; color: var(--muted); font-size: 13px;
}
.dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; margin-right: 8px; background: var(--ok); }
section { padding: 70px 0; border-top: 1px solid rgba(255,255,255,.07); }
.section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 36px; margin-bottom: 36px; }
.section-head h2 { margin: 0; font-size: 30px; letter-spacing: -.02em; }
.section-head p { margin: 0; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  border: 1px solid var(--line); border-radius: 18px; padding: 26px; min-height: 210px;
}
.card h3 { margin: 0 0 12px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.metric { font-size: 32px; letter-spacing: -.03em; margin: 18px 0 6px; }
.small { color: var(--muted); font-size: 13px; }
.ops {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 0; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 500; width: 38%; }
footer { padding: 38px 0 56px; color: var(--muted); font-size: 13px; }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
code { font-family: "SFMono-Regular", Consolas, monospace; }
@media (max-width: 800px) {
  nav { display: none; }
  .hero { padding-top: 78px; }
  .section-head, .grid, .ops { grid-template-columns: 1fr; }
  h1 { font-size: clamp(42px, 13vw, 68px); }
}
