App Interface Guideline: Animation — Respect Reduced Motion. Keywords: reduced motion accessibility. Platform: iOS/Android/React Native. Description: Respect OS reduced-motion accessibility setting. Do: Check reduceMotionEnabled and simplify animations. Don't: Ignore user motion preferences. Good Example: if (reduceMotionEnabled) skipAnimation(). Bad Example: Always run complex parallax animations. Severity: Critical.