* { box-sizing: border-box; }

:root {
  color-scheme: dark;
  --bg: #080b12;
  --text: #f4f6fb;
  --muted: #8d96a8;
  --line: rgba(255,255,255,.09);
  --accent: #9eff6b;
  --card: rgba(255,255,255,.035);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 15%, rgba(158,255,107,.10), transparent 30rem),
    radial-gradient(circle at 15% 85%, rgba(103,132,255,.10), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.shell { width: min(1120px, calc(100% - 40px)); margin: auto; }

.hero {
  min-height: 82vh;
  padding: 34px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--accent);
}

.hero-copy { max-width: 820px; padding: 90px 0 60px; }

.eyebrow {
  color: var(--accent);
  font: 700 11px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
}

h1 {
  margin: 18px 0 24px;
  font-size: clamp(54px, 9vw, 112px);
  line-height: .91;
  letter-spacing: -.065em;
}

h1 span { color: var(--muted); }

.lead {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, background .2s;
}

.button:hover { transform: translateY(-2px); }

.primary { background: var(--accent); color: #091008; }
.secondary { color: var(--text); border: 1px solid var(--line); background: rgba(255,255,255,.03); }

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #697385;
  font: 700 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .13em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

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

.card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}

.number {
  color: var(--accent);
  font: 700 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.card h2 { margin: 52px 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }

footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  display: flex;
  justify-content: space-between;
  color: #596273;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); }
  .hero { min-height: 88vh; padding-top: 22px; }
  .hero-copy { padding: 70px 0 50px; }
  .info { grid-template-columns: 1fr; padding-bottom: 60px; }
  .card { min-height: 170px; }
  .card h2 { margin-top: 35px; }
}
