Why Google made these the standard
Google introduced Core Web Vitals in 2020 as a unified, measurable definition of "page experience." Before, "fast" was subjective. Now there are three numbers any page can be measured against, both in lab (Lighthouse) and field (Chrome User Experience Report) data. Google explicitly uses the field data as a ranking signal in mobile search.
How to read each metric
LCP: when the largest visible element renders. Long LCP usually means a slow hero image or render-blocking JS. INP: how long the page takes to respond to a click or tap. Long INP usually means heavy JavaScript, especially third-party scripts. CLS: how much the page jumps around while loading. High CLS usually means images without explicit dimensions, or late-loading ads/embeds.
What "Good" actually requires
To pass Core Web Vitals: 75% of visits to a page must hit Good thresholds on all three metrics. The 75th percentile is harsh — your average user can be fast while you still fail because the slowest 25% miss. Run your page through PageSpeed to see your real-user data.