/* V101: distinctive PNSS AI diamond mascot and restrained waiting motion. */
.ai-launcher {
  filter: drop-shadow(0 12px 18px rgba(1, 19, 46, 0.22));
  isolation: isolate;
}

.ai-robot-stage {
  animation: pnssAiWait 4.8s ease-in-out infinite !important;
  transform-origin: 50% 92% !important;
}

.ai-launcher-robot {
  animation: pnssAiLook 7.2s ease-in-out infinite !important;
  object-position: center bottom !important;
  transform-origin: 50% 61% !important;
}

.ai-robot-stage::after {
  animation: pnssAiPulse 3.6s ease-in-out infinite;
  background: radial-gradient(circle, rgba(50, 215, 255, 0.34), transparent 68%);
  border-radius: 50%;
  content: "";
  height: 40%;
  left: 23%;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 39%;
  width: 56%;
  z-index: 1;
}

@keyframes pnssAiWait {
  0%, 20%, 100% { transform: translateY(0); }
  45% { transform: translateY(-2px); }
  60% { transform: translateY(0); }
}

@keyframes pnssAiLook {
  0%, 28%, 68%, 100% { transform: translateX(0); }
  38% { transform: translateX(-1.4px); }
  48% { transform: translateX(1.4px); }
  56% { transform: translateX(0); }
}

@keyframes pnssAiPulse {
  0%, 35%, 100% { opacity: 0; transform: scale(0.92); }
  50% { opacity: 0.38; transform: scale(1); }
  65% { opacity: 0; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .ai-robot-stage,
  .ai-launcher-robot,
  .ai-robot-stage::after {
    animation: none !important;
  }
}
