Core Web Vitals stopped being a tiebreaker and became table stakes the moment INP replaced FID. Most sites still haven't caught up — they pass the old metrics in Search Console and assume they're fine.
The three numbers that actually matter
- INP under 200ms at the 75th percentile on mobile. This measures the lag between a user tap and the next frame paint. Above 200ms, your site feels sluggish even if it isn't slow to load.
- LCP under 2.5s on a slow 4G profile. The largest text block, image, or video poster that paints. Usually a hero image or a heading.
- CLS under 0.1 across the whole session — not just above the fold. Every late-loading image, ad slot, or font swap that shifts layout adds to it.
The field data in Search Console is what counts. Lab data — the numbers you get from Lighthouse in Chrome DevTools — lies. Lab runs are a synthetic single profile on a fast machine; field data is the distribution of real user experiences across devices and connections.
Key takeaway
What actually moves the needle, in order
- Ship less JavaScript. The single highest-leverage fix. Every KB of JS you ship has to download, parse, compile, and execute — and it blocks the main thread while it does.
- Lazy-load below the fold. Images, embeds, third-party widgets. Don't make the browser pay for content the user hasn't reached yet.
- Reserve space for every image and ad slot. Use
aspect-ratioor explicitwidth/heightattributes. This eliminates layout shift before it happens. - Stop loading third-party scripts synchronously. Tag manager, analytics, chat widgets — load them async or deferred, and gate them behind consent where the law requires it.
That's 80% of it. The remaining 20% is render-blocking CSS and font swaps. Fix the first 80 before you touch it — most teams burn a week optimizing a font-display property while shipping 400KB of unused JavaScript.
What to do next
Anakali Pawan Kalyan
Founder · Global Marketing Zone
Founded Global Marketing Zone in June 2026 after nearly a decade in performance marketing. Writes about the parts of marketing that actually compound — and the ones that don't.