/* Watchroom site — custom styles beyond Tailwind utilities */

/* Smooth scroll for in-page anchors */
html { scroll-behavior: smooth; }

/* Font smoothing */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Subtle tone-out pulse animation override (Tailwind's pulse is too aggressive for our brand dot) */
@keyframes tonePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.4); }
}
.animate-pulse { animation: tonePulse 2.1s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Selection color on brand */
::selection { background: #C8102E; color: #F5F0E6; }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-pulse { animation: none; }
}
