/* THRESHOLD::BREATH::v1 */
.breathe {
  animation: thresholdBreath 4s ease-in-out infinite;
}

@keyframes thresholdBreath {
  0% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
  .breathe {
    animation: none;
  }
}