:root {
  color-scheme: dark;
  --bg: #07110e;
  --panel: #0d1b16;
  --line: rgba(222, 255, 234, 0.12);
  --text: #eef8f1;
  --muted: #91a99a;
  --green: #66f29a;
  --yellow: #f5c55b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 120, 76, 0.2), transparent 35rem),
    linear-gradient(145deg, #07110e, #081510 55%, #050b09);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header, footer, main { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; gap: 12px; align-items: center; font-size: 15px; letter-spacing: .02em; }
.brand strong { color: var(--green); }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(102, 242, 154, .55); border-radius: 11px;
  color: var(--green); font-size: 12px; font-weight: 800;
  box-shadow: inset 0 0 24px rgba(102, 242, 154, .08);
}

nav { display: flex; gap: 28px; color: var(--muted); font-size: 14px; }
nav a { padding: 10px 0; border-bottom: 1px solid transparent; }
nav a:hover, nav a.active { color: var(--text); border-color: var(--green); }

.hero { padding: 100px 0 72px; }
.eyebrow { margin: 0 0 18px; color: var(--green); font-weight: 750; letter-spacing: .2em; font-size: 12px; }
h1 { max-width: 800px; margin: 0; font-size: clamp(52px, 8vw, 100px); line-height: .94; letter-spacing: -.065em; }
h1 span { color: var(--green); }
.lead { max-width: 640px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.status-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 15px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px;
}
#status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
#status-dot.online { background: var(--green); box-shadow: 0 0 14px rgba(102,242,154,.8); }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.metrics article { padding: 30px; display: flex; flex-direction: column; gap: 12px; background: rgba(255,255,255,.025); }
.metrics article + article { border-left: 1px solid var(--line); }
.metrics span { color: var(--muted); font-size: 13px; }
.metrics strong { font-size: 30px; letter-spacing: -.04em; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 72px 0 100px; }
.card, .document-card { padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; }
.card-number { color: var(--green); font-size: 12px; font-weight: 800; }
.card h2, .document-card h2 { margin: 34px 0 12px; font-size: 20px; }
.card p:last-child, .document-card p { color: var(--muted); line-height: 1.65; }

.document { padding: 90px 0 100px; }
.document h1 { font-size: clamp(48px, 7vw, 82px); }
.about-subtitle { margin: 18px 0 0; color: var(--green); font-size: clamp(20px, 3vw, 30px); font-weight: 750; }
.document-card { max-width: 760px; margin-top: 56px; padding: 40px; }
.document-card h2:first-child { margin-top: 0; }
.legal-copy h2 { margin-top: 34px; }
.language-divider { margin: 48px 0 34px; border-top: 1px solid var(--line); }

footer { min-height: 90px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

@media (max-width: 700px) {
  .site-header { align-items: flex-start; padding: 20px 0; gap: 18px; }
  .site-header, footer { flex-direction: column; justify-content: center; }
  nav { gap: 16px; }
  .hero { padding-top: 70px; }
  .metrics, .info-grid { grid-template-columns: 1fr; }
  .metrics article + article { border-left: 0; border-top: 1px solid var(--line); }
  .info-grid { padding-top: 30px; }
  footer { align-items: flex-start; gap: 8px; }
}
