:root {
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --page: #f6f9fc;
  --navy: #11263a;
  --blue: #347fe5;
  --muted: #5d718a;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 45%, rgb(255 255 255 / 92%) 0 18%, transparent 52%),
    radial-gradient(circle at 4% 42%, rgb(52 127 229 / 7%), transparent 34%),
    radial-gradient(circle at 96% 84%, rgb(52 127 229 / 6%), transparent 36%),
    var(--page);
  color: var(--navy);
}

.coming-soon {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2rem, 7vw, 6rem);
  transform: translateY(-2.5svh);
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(62vw, 52rem);
  height: auto;
  filter: drop-shadow(0 0.9rem 1.6rem rgb(17 38 58 / 7%));
  user-select: none;
}

h1 {
  margin: clamp(1.8rem, 4.25vw, 3.25rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  font-weight: 450;
  letter-spacing: 0.075em;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .coming-soon {
    padding-inline: 1.5rem;
    transform: translateY(-1.5svh);
  }

  .brand-logo {
    width: min(92vw, 34rem);
  }

  h1 {
    margin-top: 2rem;
    font-size: 1.35rem;
    letter-spacing: 0.065em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-logo,
  h1 {
    animation: reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  h1 {
    animation-delay: 90ms;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
