What problem does it solve? GSAP animations can cause jank, dropped frames, and layout thrashing when they animate layout-heavy properties or create too many simultaneous tweens. This Skill provides the official GSAP performance guidelines so your animations stay smooth at 60fps. ## Core Features & Use Cases - Compositor-Friendly Properties: Guides you to animate transform and opacity instead of width, height, top, or left to avoid layout and paint costs. - Efficient Update Patterns: Recommends gsap.quickTo() for frequently updated properties like mouse followers, and stagger instead of many manual tweens. - ScrollTrigger Tuning: Covers pin promotion, scrub values, and debounced ScrollTrigger.refresh() calls to reduce scroll-related work. - Use Case: When a user reports that a scroll-driven page animation stutters on low-end devices, apply this Skill to replace layout-property tweens with transforms, add will-change hints, and clean up off-screen animations. ## Quick Start Review my GSAP animation code and optimize it for smooth 60fps performance.