:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #efeeef;
  background: #0a0a0a;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(ellipse 72% 42% at 50% -12%, #0d1525 0%, transparent 72%),
    radial-gradient(ellipse 72% 42% at 50% 112%, #0d1525 0%, transparent 72%),
    #0a0a0a;
}

.holding-page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(3rem, 10vh, 7rem) clamp(1.5rem, 6vw, 4rem);
}

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

.brand-mark {
  width: clamp(3.5rem, 8vw, 4.25rem);
  margin: 0 auto 1.75rem;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 1.5rem rgb(69 124 252 / 18%));
}

h1 {
  margin: 0;
  font-size: clamp(3.75rem, 11vw, 6.75rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.headline {
  margin: 2.25rem 0 0;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.supporting-copy {
  max-width: 34rem;
  margin: 1rem auto 0;
  color: rgb(239 238 239 / 65%);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
}

.return-note {
  margin: 2.5rem 0 0;
  color: #457cfc;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 30rem) {
  .holding-page {
    padding-inline: 1.25rem;
  }

  .brand-mark {
    margin-bottom: 1.5rem;
  }

  .headline {
    margin-top: 1.75rem;
  }
}

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