:root {
  color-scheme: dark;
  --bg: #08151a;
  --panel: #102129;
  --text: #f3fafb;
  --muted: #a9bec5;
  --line: #26414a;
  --accent: #61e4b9;
  --accent-2: #ffd36b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 18%, rgba(97, 228, 185, 0.18), transparent 30rem),
    linear-gradient(135deg, #08151a 0%, #102634 52%, #08151a 100%);
  color: var(--text);
}

a {
  color: inherit;
}

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

.hero {
  min-height: 56vh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 48px 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

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

.actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 800;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.status-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 33, 41, 0.78);
  padding: 22px;
}

.status-grid span {
  color: var(--accent-2);
  font-weight: 900;
}

.status-grid h2 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.status-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 36px;
  }

  .hero {
    min-height: 52vh;
    padding: 32px 0;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}
