:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0c0d10;
  background: #ef4e93;
}

* {
  box-sizing: border-box;
}

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

body.splash-page {
  min-height: 100vh;
  min-height: 100svh;
  background: #ef4e93;
  overflow-x: hidden;
}

.splash-page > main {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(24px, 6vh, 64px) clamp(18px, 7vw, 96px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.splash-page > main::before,
.splash-page > main::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border: clamp(22px, 4vw, 52px) solid rgba(12, 13, 16, 0.08);
  border-radius: 50%;
}

.splash-page > main::before {
  top: -30%;
  right: -16%;
}

.splash-page > main::after {
  bottom: -38%;
  left: -18%;
}

.splash-hero {
  width: min(100%, 1120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  text-align: center;
}

.splash-logo {
  width: auto;
  max-width: 100%;
  max-height: 64svh;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 0 rgba(12, 13, 16, 0.12));
}

.splash-tagline {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 600px) {
  .splash-page > main {
    padding: 24px 18px;
  }

  .splash-hero {
    gap: 18px;
  }

  .splash-logo {
    width: min(100%, 520px);
    max-height: none;
  }

  .splash-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
}

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