:root {
  --ink: #111b63;
  --mint: #52ec9e;
  --aqua: #4cf2ed;
  --sky: #39b4dc;
  --white: #f8fbff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(80, 242, 237, 0.12), transparent 31rem),
    linear-gradient(145deg, #101766 0%, var(--ink) 58%, #0a124c 100%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.coming-soon {
  display: grid;
  justify-items: center;
  gap: clamp(1.15rem, 3vw, 1.75rem);
  text-align: center;
}

.logo-mark {
  position: relative;
  width: clamp(7rem, 16vw, 9rem);
  aspect-ratio: 1;
  animation: logo-float 5s ease-in-out infinite;
  filter: drop-shadow(0 1.25rem 1.75rem rgba(3, 10, 42, 0.26));
}

.logo-mark::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 2rem;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.24), transparent 36%);
  opacity: 0;
  transform: translateX(-28%) skewX(-12deg);
  animation: logo-shine 5s ease-in-out infinite;
  pointer-events: none;
}

.logo-dot,
.logo-stem,
.logo-page {
  position: absolute;
  display: block;
  background: linear-gradient(155deg, var(--mint) 0%, var(--aqua) 66%, var(--sky) 100%);
}

.logo-dot {
  top: 0;
  left: 15.5%;
  width: 20.5%;
  aspect-ratio: 1;
  border-radius: 20%;
  z-index: 3;
  animation: logo-pulse 5s ease-in-out infinite;
}

.logo-stem {
  top: 25.5%;
  left: 0;
  width: 31%;
  height: 31%;
  border-radius: 13% 13% 13% 13%;
  z-index: 3;
}

.logo-page {
  right: 0;
  bottom: 0;
  width: 89%;
  height: 74.5%;
  border-radius: 0 17% 0 15%;
  z-index: 1;
}

.logo-page::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 31%;
  height: 31%;
  content: "";
  background: var(--ink);
  border-bottom-right-radius: 38%;
}

.logo-page::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 1;
  content: "";
  background: linear-gradient(135deg, var(--aqua) 0 49.5%, transparent 50%);
  border-top-left-radius: 36%;
}

h1 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: rgba(248, 251, 255, 0.78);
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-0.75rem) rotate(-1deg);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes logo-shine {
  0%,
  38%,
  100% {
    opacity: 0;
    transform: translateX(-28%) skewX(-12deg);
  }

  48% {
    opacity: 0.35;
  }

  62% {
    opacity: 0;
    transform: translateX(32%) skewX(-12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
