Core Web Vitals, Rendering Strategy and Why a Fast Site Is Cheaper to Advertise On
Core Web Vitals are Google's field measurements of loading, interactivity and visual stability: Largest Contentful Paint, Interaction to Next Paint and Cumulative Layout Shift. The published thresholds for a good experience are LCP under 2.5 seconds, INP under 200 milliseconds and CLS under 0.1, measured on real visits rather than in a lab. They matter as a ranking input, but the commercial case is simpler than that. Every second of delay happens after you have already paid to acquire the visitor.
Rendering strategy is the largest lever. Next.js lets each route choose static generation, server-side rendering or incremental revalidation, so a service page can be prebuilt and served from cache while a stock-aware product page renders per request. The alternative, shipping a JavaScript bundle that assembles the page in the browser, delays the first meaningful paint on exactly the mid-range phones and unreliable connections that carry a large share of real traffic.
Speed also changes the arithmetic on paid media. Google Ads and Meta Ads charge for the click whether or not the page renders in time. A landing page that loses part of its traffic to load abandonment raises the effective cost of every conversion it does produce. Performance work is one of the few investments that improves organic search, paid efficiency and conversion rate simultaneously, which is why we treat it as engineering rather than as post-launch optimization.