#screen-splash {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  overflow: hidden;
}

.sp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sp-orb-1 {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -90px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 68%);
}

.sp-orb-2 {
  width: 260px;
  height: 260px;
  bottom: 30px;
  left: -90px;
  background: radial-gradient(circle, rgba(236,72,153,0.16) 0%, transparent 70%);
}

.sp-orb-3 {
  width: 180px;
  height: 180px;
  bottom: -50px;
  right: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.sp-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: spIn 0.72s var(--ease-out) forwards;
}

@keyframes spIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp-logo {
  width: 92px;
  height: 92px;
  background: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.14);
  padding: 16px;
}

.sp-logo svg {
  width: 46px;
  height: 46px;
  color: #0A0A0A;
}

.sp-name {
  font-size: 38px;
  font-weight: 800;
  color: #0A0A0A;
  letter-spacing: -1.2px;
  line-height: 1;
  text-align: center;
}

.sp-tagline {
  font-size: 15px;
  color: rgba(0,0,0,0.45);
  text-align: center;
  max-width: 230px;
  line-height: 1.65;
}

.sp-dots {
  display: flex;
  gap: 7px;
  margin-top: 52px;
}

.sp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  animation: dotPulse 1.35s infinite ease-in-out;
}

.sp-dot:nth-child(2) { animation-delay: 0.19s; }
.sp-dot:nth-child(3) { animation-delay: 0.38s; }

@keyframes dotPulse {
  0%, 100% { background: rgba(0,0,0,0.15); transform: scale(1); }
  50%       { background: var(--primary); transform: scale(1.28); }
}

.sp-footer {
  position: absolute;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1;
}

.sp-powered {
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.4px;
}

.sp-version {
  font-size: 11px;
  color: rgba(0,0,0,0.2);
}

.sp-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
