:root {
  --cyan: #15e1f5;
  --blue: #315cff;
  --violet: #873cff;
  --pink: #f12ccf;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #040407;
}

body {
  color: #f8f8ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(48, 74, 255, 0.09), transparent 31%),
    linear-gradient(145deg, #030306 0%, #070711 52%, #030305 100%);
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(94vw, 1080px);
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: reveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo {
  width: clamp(230px, 28vw, 360px);
  height: auto;
  margin-bottom: clamp(52px, 8vh, 92px);
  filter: drop-shadow(0 0 30px rgba(46, 121, 255, 0.15));
}

h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 104px);
  font-weight: 490;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 strong {
  display: block;
  color: transparent;
  background: linear-gradient(
    105deg,
    #fff 5%,
    #9ae8fb 34%,
    #7672ff 63%,
    #ef62dc 94%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: inherit;
}

.status {
  display: inline-flex;
  margin: clamp(42px, 7vh, 72px) 0 0;
  align-items: center;
  gap: 13px;
  color: #bfc0cc;
  font: 500 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.status::before,
.status::after {
  content: "";
  width: clamp(30px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24));
}

.status::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent);
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  animation: pulse 2.2s ease-in-out infinite;
}

.glow {
  position: absolute;
  z-index: 0;
  width: 36vw;
  min-width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
}

.glow-blue {
  top: 15%;
  left: -16%;
  background: var(--blue);
}

.glow-pink {
  right: -18%;
  bottom: -5%;
  background: var(--pink);
  opacity: 0.12;
}

.orbital {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(86vw, 820px);
  aspect-ratio: 1;
  translate: -50% -50%;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  animation: orbit-in 1.6s ease-out both;
}

.orbital::before,
.orbital::after,
.orbital span {
  content: "";
  position: absolute;
  border: 1px solid rgba(104, 93, 255, 0.075);
  border-radius: 50%;
}

.orbital::before {
  inset: 8%;
  transform: rotate(52deg) scaleY(0.42);
}

.orbital::after {
  inset: 13%;
  border-color: rgba(28, 220, 244, 0.07);
  transform: rotate(-38deg) scaleY(0.36);
}

.orbital span:nth-child(1) {
  inset: 23%;
  border-style: dashed;
  animation: spin 34s linear infinite;
}

.orbital span:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 12%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbital span:nth-child(2) {
  inset: 31%;
}

.orbital span:nth-child(3) {
  inset: 40%;
  border-color: rgba(235, 61, 218, 0.08);
}

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

@keyframes orbit-in {
  from {
    opacity: 0;
    scale: 0.88;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 36px 20px;
  }

  .logo {
    width: min(66vw, 280px);
    margin-bottom: 54px;
  }

  h1 {
    font-size: clamp(43px, 13.2vw, 64px);
    line-height: 1;
  }

  .status {
    margin-top: 46px;
    gap: 9px;
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .status::before,
  .status::after {
    width: 24px;
  }

  .orbital {
    width: 128vw;
  }
}

@media (max-height: 650px) {
  .logo {
    width: 220px;
    margin-bottom: 34px;
  }

  .status {
    margin-top: 30px;
  }
}

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