:root {
  color-scheme: light;
  --canvas: #f8f8f6;
  --ink: #111214;
  --muted: #65686d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  display: grid;
  min-height: 100svh;
  padding: 32px;
  place-items: center;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

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

@media (prefers-contrast: more) {
  :root {
    --muted: #383a3e;
  }
}
