:root {
  color-scheme: dark;
  --bg: #0f1115;
  --bg-soft: #181d26;
  --panel: rgba(18, 23, 31, 0.84);
  --stroke: rgba(255, 255, 255, 0.09);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.72);
  --accent: #7dd3fc;
  font-family: "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.18), transparent 28rem),
    linear-gradient(135deg, #0d1014 0%, #141922 45%, #0f1115 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--text);
}

code {
  padding: 0.16rem 0.38rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.shell {
  width: min(980px, calc(100vw - 28px));
}

.hero {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 52ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.status article {
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.status span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.status strong {
  font-size: 1.08rem;
}

@media (max-width: 720px) {
  .status {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.6rem);
  }
}
