INP has replaced FID in 2024, the CLS definition has been tightened, and LCP requirements have become mobile-first. What really matters in 2026 — and how to measure it.
If you're still measuring FID in 2026, you're measuring the wrong metric. Google has revised the Core Web Vitals multiple times since their introduction. Current status: Largest Contentful Paint (LCP), Interaction to Next Paint (INP), and Cumulative Layout Shift (CLS). We show what has specifically changed and which tools we use daily.
LCP — Largest Contentful Paint
LCP measures how quickly the largest visible element in the viewport is rendered. Threshold for "good": ≤ 2.5 seconds at the 75th percentile of all page views. The most common LCP killer in 2026: non-prioritized hero images without `fetchpriority="high"` and without explicit width/height attributes.
INP — Interaction to Next Paint (replaces FID)
INP has been the official Core Web Vital since March 2024 and replaces First Input Delay. While FID only measured the first click, INP measures all interactions during the session lifecycle and takes the worst percentile. Threshold for "good": ≤ 200ms.
In practice, INP is the most troublesome vital for modern apps. Main culprits: long JavaScript tasks during UI interactions (cookie banner hydration, analytics initialization, third-party widget boot).
CLS — Cumulative Layout Shift
CLS measures how much content shifts during loading. Threshold: ≤ 0.1. The most common CLS culprit in 2026: late-loading cookie banners and newsletter popups that push content down.
Tools We Use Daily
- PageSpeed Insights (official field data from CrUX)
- Chrome DevTools — Performance tab (lab data, debug bar)
- web.dev/measure (same engine as PSI, nicer UI)
- Calibre / SpeedCurve for continuous monitoring
- Cloudflare Web Analytics or Vercel Speed Insights for RUM
Practice: Field vs. Lab
Field data (CrUX, RUM) and lab data (Lighthouse, DevTools) often show different values. Google ranks based on field data. Lab data is reproducible and good for debugging, but not ranking-relevant. Pragmatic rule: Field values are the "truth", lab values show the "cause".
We conduct a complete performance audit with specific optimization tickets prioritized.
Request AuditConclusion
If you want to rank in 2026, you can't ignore Core Web Vitals. INP is the new player, LCP remains the classic, and CLS causes the most trouble due to third-party scripts. Monitor field data, use lab data for debugging, and don't try to optimize everything at once.













