What's Changed
Fixed
- Android PWA: page transitions were taking ~1 second, making navigation feel sluggish. Two root causes addressed: (1)
glass.cssextended the page-in animation duration from0.20sto0.30swith a spring easing — reverted to0.20sin and0.12sout. (2) During transitions, dozens ofbackdrop-filtercomposited layers (widgets, task cards, inputs, toolbars) were all rendered simultaneously for both the outgoing and incoming page, overwhelming mid-range Android GPUs. Addedhtml.navigatingstate:router.jssets this class for the duration of each page transition, andglass.cssoverrides allbackdrop-filterin the content area tononefor that window, then restores them once the animation ends (closes #48).