/* ---- Splash screen ---- */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
  -webkit-transition: opacity 0.45s ease;
}

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

.splash-wordmark {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 14px;
}

.splash-dot {
  color: var(--orange);
}

.splash-bienvenue {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}

.splash-bar-track {
  width: 180px;
  height: 2px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.splash-bar-fill {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--orange) 45%,
    #fb923c 55%,
    transparent 100%
  );
  border-radius: 100px;
  animation: splash-scan 1.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes splash-scan {
  0%   { left: -60%; }
  100% { left: 100%; }
}
