.b40-static-splash {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 119, 6, 0.07), transparent 34%),
    radial-gradient(circle at 20% 85%, rgba(30, 41, 59, 0.72), transparent 36%),
    radial-gradient(circle at 82% 78%, rgba(15, 23, 42, 0.9), transparent 38%),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
  font-family: Inter, 'Segoe UI', Roboto, Arial, Helvetica, sans-serif;
}

.b40-static-splash__grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.b40-static-splash__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.28;
}

.b40-static-splash__orb--one {
  width: 280px;
  height: 280px;
  top: 14%;
  right: 16%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.07), transparent 68%);
}

.b40-static-splash__orb--two {
  width: 340px;
  height: 340px;
  left: 10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 66%);
}

.b40-static-splash__content {
  position: relative;
  width: min(620px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.b40-static-splash__logo-stage {
  position: relative;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.b40-static-splash__outer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.14);
  border-top-color: rgba(217, 119, 6, 0.62);
  border-right-color: rgba(217, 119, 6, 0.42);
  animation: b40-static-splash-rotate 1.35s linear infinite;
  box-shadow:
    0 0 16px rgba(217, 119, 6, 0.08),
    inset 0 0 18px rgba(217, 119, 6, 0.05);
}

.b40-static-splash__inner-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(248, 250, 252, 0.1);
  border-bottom-color: rgba(217, 119, 6, 0.28);
  animation: b40-static-splash-rotate-reverse 2.2s linear infinite;
}

.b40-static-splash__glow {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent 64%);
  animation: b40-static-splash-glow 1.8s ease-in-out infinite;
}

.b40-static-splash__shield {
  position: relative;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(217, 119, 6, 0.18))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.b40-static-splash__brand {
  color: #f8fafc;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 950;
  letter-spacing: -1.2px;
}

.b40-static-splash__tagline {
  color: #f8fafc;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.b40-static-splash__modules {
  margin-top: 8px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.7;
}

.b40-static-splash__message {
  margin-top: 14px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 700;
}

@keyframes b40-static-splash-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes b40-static-splash-rotate-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes b40-static-splash-glow {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.38;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}