What problem does it solve? Writing correct GSAP animations requires knowing the right tween methods, transform aliases, easing names, and accessibility patterns; this Skill provides the official core API guidance so generated animation code follows GSAP best practices. ## Core Features & Use Cases - Core Tween Methods: Covers gsap.to(), from(), fromTo(), and set() with duration, delay, ease, stagger, repeat, yoyo, and callback vars. - Transforms & CSS: Documents transform aliases (x, y, scale, rotation), autoAlpha, CSS variables, svgOrigin, and directional rotation suffixes. - Responsive & Accessible Animation: Uses gsap.matchMedia() for breakpoints and prefers-reduced-motion handling with automatic revert. - Use Case: When a user asks to animate a list of cards fading in with staggered timing on desktop but disabled for reduced-motion users, this Skill produces the correct gsap.to() call with stagger and a matchMedia conditions block. ## Quick Start Use GSAP to animate the elements with class .card fading in with a 0.1 second stagger and respect prefers-reduced-motion.