:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e8edf2;
  background: #0b0e12;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 15%, rgba(49, 100, 255, .18), transparent 34rem),
    radial-gradient(circle at 88% 84%, rgba(102, 245, 173, .10), transparent 30rem),
    #0b0e12;
}

main {
  width: min(760px, calc(100% - 48px));
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: #7f91a6;
  font: 600 13px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 650;
  line-height: .96;
  letter-spacing: -.055em;
}

.lede {
  margin: 34px 0;
  color: #aab6c3;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.5;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid #26303a;
  border-radius: 999px;
  color: #c8d2dc;
  background: rgba(255, 255, 255, .025);
  font-size: 14px;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66f5ad;
  box-shadow: 0 0 16px rgba(102, 245, 173, .8);
}

footer {
  margin-top: 88px;
  color: #5f6c79;
  font-size: 13px;
}

a { color: #c8d8ff; }
