:root {
  color-scheme: dark;
  --background: hsl(220 15% 12%);
  --foreground: hsl(220 10% 92%);
  --muted-foreground: hsl(220 10% 58%);
  --quiet-foreground: hsl(220 10% 43%);
  --border: hsl(220 15% 26%);
  --brand: hsl(160 70% 45%);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, hsl(160 70% 45% / 0.055), transparent 30rem),
    var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(2rem, 7vw, 5rem);
}

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

h1,
p {
  margin: 0;
}

h1 {
  color: var(--foreground);
  letter-spacing: -0.055em;
  font-size: clamp(3.2rem, 11vw, 7.8rem);
  font-weight: 650;
  line-height: 0.92;
}

h1::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin: 1.45rem auto 0;
  background: var(--brand);
  opacity: 0.72;
}

.lede {
  max-width: 30rem;
  margin: 1.2rem auto 0;
  color: var(--muted-foreground);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.soon {
  display: inline-block;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status {
  margin-top: 1.25rem;
  color: var(--quiet-foreground);
  font-size: 0.9rem;
  letter-spacing: 0.015em;
}

@media (max-width: 42rem) {
  .page {
    padding-inline: 1.4rem;
  }

  .soon {
    margin-top: 2.4rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .presence {
    animation: settle 700ms ease-out both;
  }

  @keyframes settle {
    from {
      opacity: 0;
      transform: translateY(0.4rem);
    }
  }
}
