:root {
  color-scheme: dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e8edf7;
  background: #0c1220;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 119, 190, 0.18), transparent 42rem),
    #0c1220;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 2rem 1.25rem;
}

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

.status {
  margin: 0 0 1rem;
  color: #78a9f5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 14vw, 5.5rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.divider {
  width: 3rem;
  height: 0.2rem;
  margin: 1.75rem auto;
  border-radius: 999px;
  background: #78a9f5;
}

p {
  margin: 0.75rem auto;
  color: #b8c2d6;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.7;
}

.closing {
  margin-top: 1.75rem;
  color: #e8edf7;
  font-weight: 650;
}

@media (min-width: 48rem) {
  .page-shell {
    padding: 3rem;
  }

  .divider {
    margin-block: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
