-**Clean /ui/ Directory** - Moved 10 business logic components out of /ui/ to feature directories (billing/, auth/, admin/, etc.). WHY: /ui/ should only contain stateless primitives that customers can safely import without side effects.
-**New /charts/ Directory** - Consolidated 8 chart components (bar, line, area, pie, funnel, gauge, sparkline, donut) into dedicated directory. WHY: Charts are data visualization components, not UI primitives - separating them makes the architecture clearer.
-**card.tsx Split** - Reduced from 890 lines to 250 lines; marketing components moved to terminal-card.tsx. WHY: Large files are harder to maintain and understand. Card primitives should be separate from marketing-specific components.
[FIXED]
-/ui/ now contains ONLY primitives (62 files) - no business logic. WHY: Clear separation makes it easier for customers to understand what they can safely import and customize.
[REMOVED]
-**Duplicate cookie-consent** - Removed /ui/cookie-consent.tsx in favor of /components/cookie-consent/ directory. WHY: The directory version was more robust with better GDPR compliance features.
-**Code Syntax Highlighting** - Complete `--code-*` variables for all 18 themes
-**Extended Chart Colors** - `chart-6` through `chart-9` added to all themes
-**Style Guide Template** - Comprehensive design system reference in `/library`
[CHANGED]
-All 18 themes now pass WCAG AA accessibility audit
-FUI theme border contrast improved (3:1 minimum for UI components)
[FIXED]
-Blueprint theme border contrast (45% → 55%) for WCAG 3:1
-Cyberpunk theme border contrast (25% → 38%) for WCAG 3:1
-Navigator theme border contrast (30% → 36%) for WCAG 3:1
-Phosphor theme border contrast (25% → 35%) for WCAG 3:1
-Red/Infrared theme code comment contrast for readability
v1.0.1 - DYNAMIC RADIUS SYSTEM
[0x05] v1.0.1 - DYNAMIC RADIUS SYSTEM2025-12-25
[CHANGED]
-**Dynamic Border Radius System** - Components now use `mode.radius` which maps to CSS `var(--radius)`, allowing themes to control border radius dynamically
-All 78+ UI components updated to use `mode.radius` instead of hardcoded `rounded-none`
-Design system documentation comprehensively updated across 18+ files
[FIXED]
-Calendar component layout and centering issues
-ScrollArea radius applied to correct element (outer container)
-InputOTP spacing when rounded
-Progress bar height and radius support
-Table headers no longer break when themes use rounded corners
[REMOVED]
-Sticky CTA bar from landing pages (component retained for optional use)