:root {
  --duration-fast: 100ms; /* @kind other */ /* popovers, dialogs */
  --duration-base: 150ms; /* @kind other */ /* hover, colour */
  --duration-slow: 300ms; /* @kind other */ /* workspace dim */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0, 0, 0.2, 1); /* @kind other */
  --transition-colors: color var(--duration-base) var(--ease-standard),
    background-color var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard);
}

@keyframes mia-thinking-dot {
  0%, 80%, 100% { opacity: 0.35; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
@keyframes mia-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .mia-thinking-dot { animation: none !important; opacity: 0.7; }
}
