What problem does it solve? Designs often ship with accessibility failures — missing labels, keyboard traps, color-only signals, low contrast — because accessibility is treated as a late compliance step rather than a structural property of every screen. This Skill embeds WCAG-based accessibility review into every design task, catching the silent decisions that exclude users with permanent, temporary, or situational impairments. ## Core Features & Use Cases - Four WCAG sub-principle routing: Organizes decisions into Perceivable (alt text, contrast, captions), Operable (keyboard access, focus management, target size, reduced motion), Understandable (labels, error copy, predictable behavior), and Robust (semantic HTML, ARIA, live regions), with routing to dedicated sub-aspect skills. - Practical checklist and worked examples: Provides a per-screen audit checklist plus corrected code patterns for icon-only buttons, inline form errors, accessible dialogs, reduced-motion handling, and non-color status badges. - Testing heuristics and legal context: Covers keyboard-only walkthroughs, screen reader testing (VoiceOver, NVDA, TalkBack), contrast and zoom checks, automated tools (axe, WAVE, Lighthouse), and the WCAG 2.x / ADA / Section 508 / EAA regulatory landscape. - Use Case: While designing a checkout form, apply the checklist to ensure every input has a programmatically associated label, errors are announced via aria-describedby, focus is visible, and touch targets meet 44×44 sizing — before any code ships. ## Quick Start Review this checkout form design for WCAG accessibility issues and fix any keyboard, contrast, labeling, or ARIA problems you find.