/* === SPLASH === */
.splash {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(1000px 600px at 50% 30%, rgba(255,255,255,0.08), rgba(0,0,0,0.75));
  z-index: 1000;
  transition: opacity .6s ease, visibility .6s ease;
}

.splash.is-finishing { opacity: 0; }

.splash.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.splash__inner {
  display: grid;
  place-items: center;
  justify-items: center;
  gap: 14px;
  padding: 28px 22px;
  text-align: center;
  width: min(420px, 90vw);
}

.status {
  font-size: 14px;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

.splash__label {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.75;
}

.splash__sub {
  font-size: 12px;
  opacity: 0.7;
  max-width: 34ch;
}

/* Halo ring */
.halo { width: 140px; height: 140px; }
.halo svg { width: 100%; height: 100%; }

.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 3;
}

.ring-etch {
  fill: none;
  stroke: rgba(255,215,120,0.85);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  animation: ringDraw 1.8s ease-in-out infinite;
}

.ring-complete {
  fill: none;
  stroke: rgba(255,215,120,0.25);
  stroke-width: 3;
  stroke-dasharray: 314;
  stroke-dashoffset: 0;
}

@keyframes ringDraw {
  0%   { stroke-dashoffset: 314; opacity: 0.65; }
  40%  { stroke-dashoffset: 140; opacity: 1; }
  70%  { stroke-dashoffset: 60;  opacity: 0.9; }
  100% { stroke-dashoffset: 314; opacity: 0.65; }
}
