What problem does it solve? Migrating an existing brand-locked website to fluid responsive typography normally risks changing the approved visual design. This Skill converts hard-pixel font sizes and spacing into clamp() tokens whose max equals the current desktop value and min equals the current small-screen value, so the site renders pixel-identical at both anchor widths while gaining smooth interpolation in between. ## Core Features & Use Cases - Identity-anchored clamp generation: A bundled Python script computes the exact rem + vw fluid term through two anchor points, always keeping the rem term for WCAG 1.4.4 zoom compliance. - Print and accessibility guardrails: Paste-ready ISO-216/A4 print stylesheet, ch-based measure, focus-visible, scroll-padding, and prefers-reduced-motion blocks. - Review checklist and reference tokens: A canonical shipped :root block and a verification checklist ensure no per-breakpoint font-size overrides survive the migration. - Use Case: You maintain a static HTML/CSS site with hard-coded pixel sizes and media queries. Run the clamp generator per role, replace values with var() tokens, collapse the media query to layout-only rules, and verify identical rendering at 360px and 1280px. ## Quick Start Ask the AI to migrate your stylesheet to fluid typography using the fluid-scale protocol, generating clamp tokens with scripts/clamp.py for each type and spacing role.