Something I kept seeing glossed over in RSC discussions: Server Components improve data fetching, not hydration. React still replays the full component tree on the client and that cost scales with complexity. Qwik serializes execution state into the HTML instead. The client resumes from where the server stopped rather than replaying from scratch. Built this site with it. On a mid-range mobile device the terminal is interactive before any framework JavaScript has executed.