:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8f7fb;
  color: #17151c;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 20%, rgba(91, 20, 219, 0.09), transparent 28rem),
    radial-gradient(circle at 85% 82%, rgba(124, 58, 237, 0.08), transparent 30rem),
    #f8f7fb;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
}

.coming-soon::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(23, 21, 28, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 28, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #6d28d9;
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
}

.ambient--top {
  top: -19rem;
  right: -8rem;
}

.ambient--bottom {
  bottom: -21rem;
  left: -7rem;
}

.content {
  width: min(100%, 62rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid rgba(29, 24, 38, 0.07);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 2rem 5rem rgba(37, 26, 58, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  text-align: center;
  animation: reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo {
  display: block;
  width: min(100%, 44rem);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1px;
  margin: clamp(2.25rem, 7vw, 4rem) auto clamp(2rem, 6vw, 3.25rem);
  background: linear-gradient(90deg, transparent, rgba(23, 21, 28, 0.13), transparent);
}

.divider span {
  width: 2.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.65);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 9vw, 5.75rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

p {
  margin: 1.25rem 0 0;
  color: #6f6978;
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .coming-soon {
    padding: 1rem;
  }

  .content {
    padding: 2rem 1.35rem 2.4rem;
  }

  .logo {
    width: min(100%, 22rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }
}
