/* beryllium-animations.css */

/* Trois points qui pulsent pour "Oranea reflechit" */
.beryllium-thinking {
  display: flex;
  align-items: center;
  gap: 4px;
}

.beryllium-thinking .dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background-color: var(--bery-text-muted);
  animation: beryllium-dot-pulse 1s infinite ease-in-out;
}

.beryllium-thinking .dot-2 {
  animation-delay: 0.15s;
}

.beryllium-thinking .dot-3 {
  animation-delay: 0.3s;
}

@keyframes beryllium-dot-pulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
