/* React Bits GlowCursor 的静态项目移植层：仅作用于首页开屏遮罩。 */
.customer-theme .splash-glow-cursor {
  position: absolute;
  inset: 0;
  /* 轨迹需要跨过视频暗角、Logo 和入口按钮；画布不接收指针事件。 */
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
}

.customer-theme .splash-content {
  z-index: 2;
}

.customer-theme .splash.glow-cursor-unavailable::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(103, 232, 249, 0.08), transparent 32%);
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .customer-theme .splash-glow-cursor {
    display: none;
  }
}
