Core Web Vitals became a confirmed Google ranking factor in 2021. Since then, the metrics have been updated, the thresholds have tightened, and the proportion of sites failing the tests has remained stubbornly high.

This is both a competitive problem and a commercial opportunity. If your site fails Core Web Vitals and your competitors pass, you are giving away rankings. If you fix them while competitors lag, you gain ground.

More importantly from an SXO perspective: page speed directly affects conversion rate. Every additional second of load time reduces conversions measurably. Core Web Vitals are not just a ranking metric. They are a revenue metric.

The Three Core Web Vitals Explained

LCP: Largest Contentful Paint

LCP measures how long it takes for the largest visible content element on the page to load. This is usually a hero image, a large heading, or a video thumbnail. The target is under 2.5 seconds.

LCP is the most commonly failed of the three metrics because it is directly tied to image size and server response time, both of which are often neglected on legacy sites.

INP: Interaction to Next Paint

INP (which replaced FID in 2024) measures how quickly the browser responds to user interactions: clicks, taps, and keyboard inputs. The target is under 200ms. Poor INP makes a site feel sluggish even when it loads quickly.

INP failures are most commonly caused by heavy JavaScript execution blocking the main thread. JavaScript-heavy sites (particularly those using large frontend frameworks poorly) are most at risk.

CLS: Cumulative Layout Shift

CLS measures how much the page layout shifts unexpectedly while loading. The target is under 0.1. A high CLS score means elements are jumping around as images load, fonts render, or ads appear, creating a disorienting experience.

CLS failures are most commonly caused by images without defined dimensions, dynamically injected content (ads, chat widgets, cookie banners), and web fonts loading without fallbacks.

How to Diagnose Your Core Web Vitals

The primary diagnostic tool is Google Search Console’s Core Web Vitals report, found under the Experience section. This shows real-user data (field data) for your pages, categorised as Good, Needs Improvement, or Poor.

For page-level diagnosis, use Google PageSpeed Insights (pagespeed.web.dev). Enter any page URL to get both field data (if available) and lab data with specific recommendations.

Lighthouse, built into Chrome DevTools, provides detailed lab testing with specific performance breakdowns. Use it for deep diagnosis during development work.

Fixing LCP: The Priority Improvements

Fixing INP: Reducing JavaScript Blocking

Fixing CLS: Stabilising the Layout

The SXO Lens on Page Speed

From an SXO perspective, Core Web Vitals improvements are not just a ranking project. Every improvement in perceived performance is an improvement in conversion probability.

The commercial case:

Framing Core Web Vitals as a conversion project, not just a ranking project, tends to move them up the priority list in businesses where SEO gets less internal resource than commercial optimisation.