#splash {
  z-index: var(--z-splash);
  background: var(--c-bg);
  align-items: center;
  justify-content: center;
}

.splash__glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184,245,61,0.09) 0%,
    rgba(184,245,61,0.03) 50%,
    transparent 72%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  pointer-events: none;
  animation: glowPulse 3.5s ease-in-out infinite;
}

.splash__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.splash__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.splash__icon {
  width: 90px;
  height: 90px;
  border-radius: 26px;
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: iconIn 0.7s var(--ease-spring) 0.2s both;
  box-shadow: var(--shadow-md);
}

.splash__icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 32px;
  border: 1px solid rgba(184,245,61,0.15);
  animation: ringPing 3s ease-out 1.4s infinite;
}

.splash__icon-letter {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--c-accent);
  letter-spacing: -1px;
  line-height: 1;
  user-select: none;
}

.splash__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.6s var(--ease-out) 0.55s both;
}

.splash__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -2.5px;
  color: var(--c-text);
  line-height: 1;
  user-select: none;
}

.splash__name em {
  font-style: normal;
  color: var(--c-accent);
}

.splash__tagline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-muted);
}

.splash__loader {
  position: absolute;
  bottom: 56px;
 

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeUp 0.5s var(--ease-out) 1s both;
}

.splash__bar-track {
  width: 100px;
  height: 1.5px;
  background: var(--c-border2);
  border-radius: var(--r-full);
  overflow: hidden;
}

.splash__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--c-accent);
  border-radius: var(--r-full);
  transition: width 0.1s linear;
}

.splash__status {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-muted2);
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
}

.splash__credit {
  position: absolute;
  bottom: 20px;

  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-muted2);
  white-space: nowrap;
  z-index: 2;
  animation: fadeUp 0.5s var(--ease-out) 1.2s both;
}


@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -58%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -58%) scale(1.1); }
}
@keyframes iconIn {
  from { opacity: 0; transform: scale(0.5) rotate(-12deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes ringPing {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.4); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}