/* ─────────────────────────────────────────────────────────────────────────────
   splash.css — Splash screen styles
───────────────────────────────────────────────────────────────────────────── */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow: hidden;
}

#splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 99999;
  transition: opacity 0.3s ease;
}

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

#splash-logo {
  width: 196px;
  height: 96px;
  margin-bottom: 28px;
  object-fit: contain;
}

#splash-bar-track {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1F60C7;
}

#splash-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1F60C7, #42A5F5);
  border-radius: 0 2px 2px 0;
  animation: barLoad 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#splash-bar-fill.complete {
  width: 100% !important;
  animation: none;
  transition: width 0.15s ease-out;
}

@keyframes barLoad {
  0%   { width: 0%; }
  50%  { width: 55%; }
  100% { width: 85%; }
}