body:not(.notenra-app-ready) #root {
  visibility: hidden;
}
#notenra-splash.notenra-splash {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0;
  isolation: isolate;
  background: linear-gradient(
      155deg,
      rgba(238, 242, 255, 0.92) 0%,
      rgba(248, 250, 252, 0.88) 45%,
      rgba(224, 231, 255, 0.9) 100%
    ),
    rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
#notenra-splash .notenra-splash__logo-wrap {
  position: relative;
  width: min(22vw, 120px);
  height: min(22vw, 120px);
  border-radius: 1.25rem;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.12),
    0 18px 40px -12px rgba(37, 99, 235, 0.35);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
}
#notenra-splash .notenra-splash__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: notenra-splash-pulse 1.35s ease-in-out infinite;
}
#notenra-splash .notenra-splash__ring {
  position: absolute;
  inset: -10px;
  border-radius: 1.5rem;
  border: 2px solid transparent;
  border-top-color: rgba(37, 99, 235, 0.55);
  border-right-color: rgba(13, 148, 136, 0.35);
  animation: notenra-splash-spin 0.95s linear infinite;
  pointer-events: none;
}
#notenra-splash .notenra-splash__label {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #475569;
}
#notenra-splash.notenra-splash--exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes notenra-splash-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.97);
    opacity: 0.94;
  }
}
@keyframes notenra-splash-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  #notenra-splash .notenra-splash__logo,
  #notenra-splash .notenra-splash__ring {
    animation: none !important;
  }
  #notenra-splash.notenra-splash--exit {
    transition-duration: 0.15s;
  }
}
