:root {
  --ink: #05060a;
  --paper: #f7f8ff;
  --muted: #a6a8b3;
  --red: #ff202e;
  --blue: #1718a8;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 56px 24px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(36, 38, 57, 0.46), transparent 34%),
    linear-gradient(145deg, #07080c 0%, #030408 48%, #07070b 100%);
}

.grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.glow {
  position: absolute;
  z-index: -2;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  animation: drift 10s ease-in-out infinite alternate;
}

.glow--blue {
  top: -20vw;
  left: -10vw;
  background: var(--blue);
}

.glow--red {
  right: -14vw;
  bottom: -22vw;
  background: var(--red);
  animation-delay: -5s;
}

.hero {
  display: flex;
  width: min(100%, 900px);
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: reveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d8d9e0;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand__line {
  width: clamp(24px, 4vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.brand__line:last-child {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.logo-stage {
  position: relative;
  display: grid;
  width: clamp(250px, 32vw, 390px);
  aspect-ratio: 1.18;
  margin: clamp(24px, 4vh, 42px) 0 8px;
  place-items: center;
}

.logo-stage > img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.45));
  animation: logo-float 5s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  z-index: 1;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.26;
  filter: blur(55px);
}

.logo-glow--blue {
  left: 8%;
  background: var(--blue);
}

.logo-glow--red {
  right: 8%;
  background: var(--red);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #c6c7d0;
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.95;
  background: linear-gradient(110deg, #ffffff 15%, #aeb0be 50%, #ffffff 84%);
  background-clip: text;
  color: transparent;
}

.intro {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.status {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #dedee5;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
}

.status-wrap {
  display: grid;
  width: min(280px, 82vw);
  justify-items: center;
  gap: 14px;
}

.progress {
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #5658ff 48%, var(--red));
  box-shadow: 0 0 16px rgba(255, 32, 46, 0.6);
  animation: progress-move 3.2s ease-in-out infinite alternate;
}

.status__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57e293;
  box-shadow: 0 0 0 0 rgba(87, 226, 147, 0.4);
  animation: pulse 2s infinite;
}

footer {
  position: absolute;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666874;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.footer__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes progress-move {
  from { transform: translateX(0); }
  to { transform: translateX(138%); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(87, 226, 147, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 226, 147, 0); }
}

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

@keyframes drift {
  to { transform: translate3d(5vw, 3vw, 0) scale(1.12); }
}

@media (max-height: 760px) and (min-width: 700px) {
  .logo-stage {
    width: 250px;
    margin: 12px 0 2px;
  }

  h1 {
    font-size: 4.8rem;
  }

  .intro {
    margin: 16px 0 20px;
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding: 34px 20px 70px;
  }

  .brand {
    gap: 9px;
    letter-spacing: 0.16em;
  }

  .logo-stage {
    width: min(290px, 82vw);
    margin-top: 28px;
  }

  .eyebrow {
    letter-spacing: 0.11em;
  }

  .intro br {
    display: none;
  }
}

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