:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --background: #f5f5f7;
  --text: #1d1d1f;
  --blue: #0071e3;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  background: var(--background);
}

body {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 2rem;
  overflow-x: clip;
  overflow-y: auto;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 16%, rgba(90, 200, 250, 0.3), transparent 34rem),
    radial-gradient(circle at 88% 82%, rgba(175, 82, 222, 0.16), transparent 32rem),
    linear-gradient(145deg, #ffffff 0%, var(--background) 52%, #eef6ff 100%);
}

body::before,
body::after {
  position: fixed;
  z-index: 0;
  content: "";
  pointer-events: none;
  filter: blur(3.5rem);
}

body::before {
  top: -24rem;
  right: -13rem;
  width: clamp(28rem, 58vw, 52rem);
  aspect-ratio: 1.25;
  border-radius: 38% 62% 55% 45% / 48% 36% 64% 52%;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.3), rgba(90, 200, 250, 0.22));
  transform: rotate(-14deg);
}

body::after {
  bottom: -28rem;
  left: -16rem;
  width: clamp(30rem, 62vw, 56rem);
  aspect-ratio: 1.3;
  border-radius: 61% 39% 45% 55% / 42% 58% 42% 58%;
  background: linear-gradient(145deg, rgba(175, 82, 222, 0.18), rgba(0, 113, 227, 0.2));
  transform: rotate(18deg);
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
}

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

.wordmark {
  margin: 0 0 clamp(1.75rem, 5vw, 3rem);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 14vw, 8.5rem);
  font-weight: 700;
  font-optical-sizing: auto;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

h1 span {
  color: var(--blue);
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

@media (prefers-reduced-transparency: reduce) {
  body::before,
  body::after {
    opacity: 0.32;
    filter: none;
  }
}

@media (prefers-contrast: more) {
  body::before,
  body::after {
    opacity: 0.18;
  }
}
