/* Minimal custom styles on top of Tailwind */

html {
  scroll-behavior: smooth;
}

/* Sticky CTA visibility helpers controlled by JS */
#sticky-cta.show {
  opacity: 1;
  pointer-events: auto;
}

/* Reduce animations for users preferring less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


