:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090a0d;
  color: #f7f7f4;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 34rem),
    linear-gradient(145deg, #090a0d 0%, #121318 54%, #08090b 100%);
  color: #f7f7f4;
}

.site-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 3rem 1.25rem;
}

.hero {
  width: min(100%, 46rem);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(3.6rem, 14vw, 8.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
}

.subtitle {
  margin: 1.4rem auto 0;
  max-width: 34rem;
  color: #d9d7cf;
  font-size: clamp(1rem, 3.4vw, 1.45rem);
  font-weight: 400;
  line-height: 1.5;
}

.status {
  margin: 2rem 0 0;
  color: #b9b8b1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

@media (max-width: 36rem) {
  .site-shell {
    padding: 2rem 1rem;
  }
}
