What problem does it solve? Coordinating multiple animations with chained delays is fragile and hard to maintain. This Skill provides the official GSAP timeline patterns for sequencing tweens in order or in parallel, so animations stay readable, controllable, and easy to adjust. ## Core Features & Use Cases - Timeline Sequencing: Create timelines with gsap.timeline() and place tweens using the position parameter (absolute times, relative offsets, labels, and "<"/">" placement). - Labels, Defaults, and Nesting: Use addLabel() for readable choreography, constructor defaults for shared duration and ease, and nested timelines for modular animation structure. - Playback Control: Play, pause, reverse, restart, seek with time() or progress(), and animate between labels with tweenFromTo(). - Use Case: When building a landing page hero intro where a logo fades in, text slides up, and a button scales in with overlap, define one timeline with labels and position parameters instead of stacking setTimeout or delay values. ## Quick Start Ask the assistant to build a GSAP timeline that fades in a header, slides up a subtitle 0.2 seconds before the header finishes, and then reveals a call-to-action button using labels and the position parameter.