:root {
  --brand-purple: #9b72cb;
  --brand-teal: #8cd3c7;
  --ink: #14121a;
  --muted: #5c5668;
  --surface: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: #ddd0f0;
  overflow-x: hidden;
}

.coming-soon {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.coming-soon__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 90% 70% at 20% 15%,
      color-mix(in srgb, var(--brand-purple) 48%, transparent),
      transparent 55%
    ),
    radial-gradient(
      ellipse 80% 60% at 85% 80%,
      color-mix(in srgb, var(--brand-teal) 32%, transparent),
      transparent 52%
    ),
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--brand-purple) 38%, #ebe4f7),
      color-mix(in srgb, var(--brand-purple) 28%, #ddd0f0) 50%,
      color-mix(in srgb, var(--brand-purple) 42%, #d4c4ea)
    );
}

.coming-soon__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.14) 100%
  );
  pointer-events: none;
}

.coming-soon__orb {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--brand-purple) 55%, transparent);
  opacity: 0.55;
  animation: orb-drift 18s ease-in-out infinite;
  pointer-events: none;
}

.coming-soon__orb--1 {
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}

.coming-soon__orb--2 {
  width: clamp(32px, 5vw, 48px);
  height: clamp(32px, 5vw, 48px);
  top: 22%;
  right: 12%;
  border-color: color-mix(in srgb, var(--brand-teal) 60%, transparent);
  animation-delay: -4s;
  animation-duration: 22s;
}

.coming-soon__orb--3 {
  width: clamp(56px, 9vw, 88px);
  height: clamp(56px, 9vw, 88px);
  bottom: 18%;
  left: 14%;
  border-color: rgba(12, 8, 22, 0.35);
  animation-delay: -8s;
  animation-duration: 20s;
}

.coming-soon__orb--4 {
  width: clamp(40px, 6vw, 60px);
  height: clamp(40px, 6vw, 60px);
  bottom: 28%;
  right: 10%;
  animation-delay: -12s;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(12px, -18px);
  }
  66% {
    transform: translate(-10px, 14px);
  }
}

.coming-soon__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-purple) 18%, transparent);
  border-radius: 24px;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--brand-purple) 14%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.coming-soon__logo {
  width: min(260px, 72vw);
  height: auto;
  margin: 0 auto 1.75rem;
  object-fit: contain;
}

.coming-soon__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-purple);
  background: color-mix(in srgb, var(--brand-purple) 12%, var(--surface));
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-purple) 22%, transparent);
}

.coming-soon__title {
  margin: 0 0 0.75rem;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.coming-soon__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.2vw, 1.08rem);
  line-height: 1.65;
  color: var(--muted);
}

.coming-soon__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.coming-soon__pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-teal) 55%, transparent);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-teal) 50%, transparent);
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.coming-soon__contact {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.coming-soon__contact a {
  color: var(--brand-purple);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}

.coming-soon__contact a:hover {
  text-decoration: underline;
}

.coming-soon__footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 5vw, 3rem);
  font-size: 0.8rem;
  color: var(--muted);
}

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

  .coming-soon__pulse {
    animation: none;
  }
}
