.helix-launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f8fbff;
  background:
    linear-gradient(90deg, transparent 0%, rgba(118, 145, 255, 0.06) 50%, transparent 100%),
    linear-gradient(180deg, #05070b 0%, #0a0d13 54%, #040509 100%) !important;
  animation: destiny-overlay-in 280ms ease-out both !important;
}

.helix-launch-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  opacity: 0.5;
  transform: translateX(-100%);
  animation: destiny-sweep 2.15s cubic-bezier(0.55, 0, 0.2, 1) infinite;
}

.helix-launch-stage {
  position: relative;
  z-index: 1;
  width: min(92vw, 26rem);
  display: grid;
  justify-items: center;
  gap: 1.6rem;
  padding: 2rem;
  text-align: center;
}

.helix-vector-mark {
  position: relative !important;
  width: 8rem !important;
  height: 8rem !important;
  display: grid !important;
  place-items: center !important;
  filter: drop-shadow(0 0 34px rgba(118, 145, 255, 0.22));
  animation: destiny-mark-breathe 2.6s ease-in-out infinite !important;
}

.helix-axis,
.helix-frame {
  display: none !important;
}

.helix-core {
  position: relative !important;
  inset: auto !important;
  width: 5.65rem !important;
  height: 5.65rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.helix-core::before,
.helix-core::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.helix-core::before {
  inset: 0;
  display: block;
  border: 0 !important;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 84deg,
    #f8fbff 126deg,
    #88bfff 184deg,
    #7768ff 238deg,
    transparent 304deg,
    transparent 360deg
  );
  animation: destiny-spin 1.15s linear infinite;
}

.helix-core::after {
  inset: 0.55rem;
  background: #06080d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 28px rgba(118, 145, 255, 0.18);
}

.helix-vector-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #f8fbff;
  box-shadow: 0 0 18px rgba(248, 251, 255, 0.7);
  transform: translate(-50%, -50%);
  animation: destiny-pulse 1.7s ease-in-out infinite;
}

.helix-launch-copy {
  display: grid;
  justify-items: center;
  gap: 0.68rem;
}

.helix-launch-kicker {
  color: rgba(248, 251, 255, 0.62) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  animation: destiny-text-in 420ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both !important;
}

.helix-launch-title {
  display: flex !important;
  justify-content: center !important;
  gap: 0.2rem !important;
  color: #ffffff !important;
  font-size: 2.32rem !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 0 24px rgba(118, 145, 255, 0.24);
}

.helix-letter {
  display: inline-block !important;
  opacity: 0;
  transform: translateY(0.65rem);
  animation: destiny-text-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
  animation-delay: var(--helix-letter-delay, 0ms) !important;
}

.helix-launch-subtitle {
  display: flex !important;
  justify-content: center !important;
  gap: 0.34rem !important;
  color: rgba(248, 251, 255, 0.68) !important;
  font-size: 0.92rem !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.helix-word {
  display: inline-block !important;
  opacity: 0;
  transform: translateY(0.5rem);
  animation: destiny-text-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
  animation-delay: var(--helix-word-delay, 0ms) !important;
}

@keyframes destiny-overlay-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes destiny-sweep {
  0% {
    transform: translateX(-100%);
  }

  58%,
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes destiny-mark-breathe {
  0%,
  100% {
    transform: scale(1);
  }

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

@keyframes destiny-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.85);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes destiny-text-in {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .helix-launch-stage {
    width: min(calc(100vw - 2rem), 22rem);
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .helix-vector-mark {
    width: 6.8rem !important;
    height: 6.8rem !important;
  }

  .helix-core {
    width: 4.85rem !important;
    height: 4.85rem !important;
  }

  .helix-launch-title {
    font-size: 1.86rem !important;
  }

  .helix-launch-subtitle {
    font-size: 0.86rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .helix-launch-overlay,
  .helix-launch-overlay::before,
  .helix-vector-mark,
  .helix-core::before,
  .helix-vector-mark::after,
  .helix-launch-kicker,
  .helix-letter,
  .helix-word {
    animation: none !important;
  }

  .helix-letter,
  .helix-word {
    opacity: 1 !important;
    transform: none !important;
  }
}
