/* ==========================================================================
   C.R.E.E.D. Institute — Reduced Motion Preferences
   Respects prefers-reduced-motion for accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    /* Disable all animations and transitions globally */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Aurora background animation */
    .aurora::before,
    .aurora::after {
        animation: none;
        opacity: 0.15;
    }

    /* Cursor glow follows pointer — disable entirely */
    .cursor-glow {
        display: none;
    }

    /* Particle canvas (hero__canvas) — hide */
    .hero__canvas {
        display: none;
    }

    /* Dot grid decorative element — static */
    .dot-grid {
        animation: none;
        opacity: 0.3;
    }

    /* Magnetic hover effect buttons — disable */
    .magnetic {
        transform: none !important;
        transition: none !important;
    }

    /* Glass panels — no hover lift */
    .glass-panel {
        transition: none !important;
    }

    /* Terminal blinking cursor --- disable */
    .terminal::after {
        animation: none;
        opacity: 1;
    }

    /* Gradient text shimmer — static */
    .gradient-text {
        animation: none;
        background-position: 0 0;
    }
}
