/* Synagen LaunchGateScreen coming-soon (apps/Synagen.Engine splash). */
.launch-gate-root {
  position: fixed;
  inset: 0;
  z-index: 20000;
  overflow: hidden;
  background: #0a0a12;
}

.launch-gate-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #0a0a12;
}

.splash-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #0a0a12;
}

.splash-fallback-wordmark {
  font-family: Orbitron, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #6c8cff 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: splash-fallback-pulse 4s ease-in-out infinite;
}

.launch-gate-message {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.5rem;
  padding-bottom: 22vh;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.launch-gate-title {
  color: rgba(255, 255, 255, 0.96);
  font-family: Orbitron, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.34em;
  text-shadow:
    0 0 14px rgba(200, 150, 255, 0.8),
    0 0 38px rgba(168, 85, 247, 0.58),
    0 0 76px rgba(236, 72, 153, 0.32);
  animation: launch-gate-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes launch-gate-rise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splash-fallback-pulse {
  0%, 100% { opacity: 0.8; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .launch-gate-title,
  .splash-fallback-wordmark {
    animation: none;
  }
}
