/* Static splash - shows before React hydrates */
#static-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 154, 208, 0.08), transparent 34%),
    #000000;
  transition: opacity 0.4s ease-out;
}

#static-splash.hidden {
  opacity: 0;
  pointer-events: none;
}

#static-splash .static-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

#static-splash .static-logo-container {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 2rem;
  width: 100%;
}

#static-splash .static-wordmark {
  width: min(72vw, 420px);
  height: auto;
  aspect-ratio: 5714 / 1926;
  filter: drop-shadow(0 0 28px rgba(0, 154, 208, 0.32));
  animation: static-pulse 2s ease-in-out infinite;
}

#static-splash .static-progress-container {
  width: 100%;
  padding: 0 1rem;
  visibility: hidden;
}

#static-splash .static-progress-track {
  width: 100%;
  height: 4px;
}

#static-splash .static-tips-placeholder {
  min-height: 48px;
  visibility: hidden;
}

@keyframes static-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #static-splash .static-wordmark {
    animation: none;
  }
}
