Brent Haskins / Applied AI
Accessibility Is a Product Requirement Now — Ship Like It
As of June 2026, WCAG 2.2 is the de facto legal standard for web accessibility under ADA Title III, with enforcement accelerating. Most teams still treat accessibility as a post-launch audit or a moral appeal. This post argues that accessibility is a product requirement with real engineering tradeoffs — and that shipping accessible interfaces requires the same judgment, systems thinking, and prioritization as any other feature. Written for product engineers who want to build defensible, inclusive products without slowing down.
The short answer
Accessibility is no longer a nice-to-have or a moral argument. As of June 2026, WCAG 2.2 Level AA is the baseline legal standard for websites and mobile apps under ADA Title III. Courts are citing it. Lawsuits are rising. And the Department of Justice has signaled that enforcement will only increase.
Most product teams still treat accessibility as a post-launch audit — a checklist run by a third-party vendor or a single QA specialist. That approach is broken. It produces expensive retrofits, inconsistent experiences, and legal exposure. The teams that ship accessible products treat it as a design constraint from the first wireframe, not a compliance gate at the end.
I've shipped SaaS products, real-time dashboards, and AI-powered mortgage systems. In every case, the teams that moved fastest on accessibility were the ones that embedded it into their component API design, their CI pipeline, and their definition of done. The teams that treated it as a separate workstream always fell behind.
Key takeaways
- WCAG 2.2 is the legal floor. ADA Title III applies to any website that qualifies as a public accommodation. Courts consistently reference WCAG 2.2 Level AA. If you ship to US users, this is the standard.
- Automated tools catch maybe 30% of issues. They miss focus management, screen reader context, motion sensitivity, and cognitive load. Manual testing with real assistive technology is non-negotiable.
- Accessibility is a design constraint, not a QA phase. Include keyboard navigation, focus order, and color contrast in component specs before any code is written. The cost of fixing a defect in design is hours. In production, it's weeks.
- Treat accessibility as a product requirement. It has tradeoffs, prioritization, and technical debt like any other feature. If you don't budget for it, you'll ship inaccessible interfaces and pay later.
- AI can help, but it cannot replace judgment. AI-generated alt text, ARIA labels, and testing are useful accelerants, but they require human review. Never ship AI-generated accessibility fixes without manual validation.
What most teams miss
The biggest mistake is treating accessibility as a binary pass/fail. A page can pass an automated audit and still be unusable for someone who relies on a screen reader, keyboard navigation, or reduced motion. The gap between compliance and usability is where real product quality lives.
The second mistake is assuming accessibility only affects a small user base. It doesn't. Temporary disabilities, situational impairments, and aging affect everyone. A well-designed accessible interface is faster and more reliable for all users. It reduces support tickets, improves conversion, and increases retention.
How this looks in a shipped product
In the AI-powered mortgage system I shipped, we built accessibility into the component API from day one. Every interactive component accepted aria-describedby, aria-label, and role as props. Focus management was handled by a custom hook that tracked the last focused element before a modal opened. Error states included both visual indicators and screen reader announcements.
We also ran automated checks in CI for every pull request. If a change introduced a color contrast violation or missing alt text, the build failed. Manual audits happened every two weeks, focused on the most complex interactions: multi-step forms, data tables, and drag-and-drop widgets.
The result? We shipped faster, not slower. The component API made it easy for engineers to add accessibility without thinking about it. The CI checks caught regressions before they reached production. And the manual audits gave us confidence that the product actually worked for people who used assistive technology.
Tradeoffs and when the conventional wisdom breaks
Accessibility is not free. It requires engineering time, design effort, and ongoing maintenance. The tradeoff is between shipping fast and shipping inclusively. But the conventional wisdom that accessibility slows you down is wrong — if you embed it early.
The real cost is retrofitting. Fixing an inaccessible modal after launch requires rewriting the focus management, updating the ARIA attributes, and retesting with screen readers. That takes days, not hours. The same work done during initial development takes minutes.
There are also edge cases where accessibility requirements conflict with other constraints. For example, a real-time dashboard with frequent updates may need to balance screen reader announcements with cognitive load. The solution is not to skip accessibility but to design for it: batch announcements, provide a pause button, and let users control the update frequency.
What to evaluate and watch for
When evaluating a product's accessibility, look beyond the automated score. Test with a screen reader. Navigate with the keyboard only. Check focus order and focus indicators. Verify that error messages are announced. Test with reduced motion enabled.
Watch for these common failure modes:
- Modals that trap focus incorrectly. Focus should move into the modal and return to the trigger element when closed.
- Dynamic content that isn't announced. Screen readers need live regions to announce updates without losing context.
- Custom components with missing ARIA roles. A custom select or slider needs the correct role, state, and keyboard interaction.
- Color-only indicators. Error states, active states, and required fields must be communicated with more than color.
Closing
Accessibility is a product requirement. It has legal, business, and engineering implications. The teams that treat it as a design constraint, embed it in their component API, and test with real assistive technology will ship better products. The teams that treat it as a compliance checkbox will ship legal exposure.
Start today. Pick one component — a modal, a form, a data table — and make it fully accessible. Then do the next one. That's how you build a product that works for everyone.
FAQ
Questions people ask about this topic.
What is the current legal standard for web accessibility in 2026?
WCAG 2.2 Level AA is the baseline enforced under ADA Title III for public accommodations. The Department of Justice has not issued a formal rule for state/local government sites under Title II, but courts consistently reference WCAG 2.2. The HHS extended its Section 504 deadline by a year, but private-sector lawsuits continue to rise.
How should a product team prioritize accessibility without slowing velocity?
Treat it as a design constraint, not a separate phase. Include keyboard navigation, focus order, and color contrast in component specs before any code is written. Use automated checks in CI for regressions. Reserve manual audits for complex interactions like modals and drag-and-drop. The goal is to prevent defects, not find them later.
What is the biggest mistake teams make when implementing accessibility?
Relying solely on automated tools. They catch color contrast and missing alt text but miss focus management, screen reader context, and motion sensitivity. The second mistake is treating accessibility as a one-time fix rather than a continuous requirement. It must be part of the definition of done for every sprint.
How does AI impact accessibility in product engineering?
AI can generate alt text, suggest ARIA labels, and automate testing, but it cannot replace human judgment. The real opportunity is using AI to surface accessibility issues during design — for example, flagging insufficient contrast in a Figma component before it reaches engineering. But never ship AI-generated accessibility fixes without manual review.
Sources
Referenced sources
- https://www.reuters.com/practical-law-the-journal/litigation/ada-title-iii-web-accessibility-2026-06-01/
- https://convergeaccessibility.com/2026/06/01/legal-update-may-2026/
- https://www.levelaccess.com/compliance-overview/
- https://newsletter.uxuniversity.io/p/accessibility-just-stopped-being
- https://blog.weamse.com/ai-powered-ux-how-artificial-intelligence-is-transforming-user-experience-design-in-2026/