/* ============================================================
   Nature's Network — lightweight reveal ONLY (emergency-safe).
   - No libraries, no rAF, no mousemove, no WebGL, no filters.
   - GPU-friendly opacity/transform, one-shot animation.
   - DEFAULT STATE IS FULLY VISIBLE  => content can never get stuck.
   - Fully disabled under prefers-reduced-motion.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    @keyframes nnRise {
        from { opacity: 0; transform: translate3d(0, 16px, 0); }
        to   { opacity: 1; transform: translate3d(0, 0, 0); }
    }
    .nn-in {
        animation: nnRise 0.65s cubic-bezier(0.2, 0.6, 0.2, 1) both;
    }
}
