/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee-track { animation: none; }
  .reveal, .js .msg { opacity: 1; transform: none; }
  .js .gokyuzu:not(.in-view) .ritim-bars i { transform: none; }
  .arc-spark { display: none; } /* SMIL animateMotion CSS ile durmaz */
}
