/* Luma voice orb — opt-in per app */

@keyframes luma-voice-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.luma-voice-orb {
  @apply rounded-full flex items-center justify-center;
  background: linear-gradient(135deg, var(--product-accent), var(--luma-brand));
  animation: luma-voice-pulse 2s ease-in-out infinite;
}

.luma-voice-orb-active {
  box-shadow: 0 0 24px rgba(155, 127, 212, 0.4);
}
