#splash-screen {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9999;
  opacity: 1;
  transition: opacity 400ms ease;
}

#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

#splash-screen.hidden {
  display: none;
}

.splash-logo-wrap {
  opacity: 0;
  transform: scale(0.85);
  animation: splashFadeIn 600ms ease forwards;
  animation-delay: 100ms;
}

.splash-logo {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  object-fit: cover;
}

.splash-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  color: #737373;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: splashFadeIn 600ms ease forwards;
  animation-delay: 400ms;
  margin: 0;
}

@keyframes splashFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
