Core Web Vitals are Google's standardized page experience metrics used as a ranking signal. The three metrics are LCP (Largest Contentful Paint, target under 2.5s), INP (Interaction to Next Paint, target under 200ms), and CLS (Cumulative Layout Shift, target under 0.1). Pages that fail these thresholds carry a ranking disadvantage. For GEO, CWV matters because poor scores lower Google ranking — which reduces the chance of being indexed and cited by AI systems.
What are the three Core Web Vitals?
How long it takes for the largest visible content element — typically a hero image or headline — to render. The most impactful CWV metric for most sites.
How quickly the page responds to user interactions like clicks and taps. Replaced FID (First Input Delay) as the interactivity metric in 2024.
How much the page layout shifts unexpectedly during loading — caused by images without dimensions, late-loading fonts, or dynamically injected content.
What are the Core Web Vitals thresholds?
| Metric | Good | Needs improvement | Poor |
|---|---|---|---|
| LCP | ≤ 2.5s | 2.5s – 4.0s | > 4.0s |
| INP | ≤ 200ms | 200ms – 500ms | > 500ms |
| CLS | ≤ 0.1 | 0.1 – 0.25 | > 0.25 |
Do Core Web Vitals affect AI citation rates?
The relationship is indirect but real. AI crawlers like PerplexityBot and Googlebot prioritize pages that load reliably and quickly. A page with poor CWV scores may be crawled less frequently or ranked lower in retrieval — reducing its citation probability.
More importantly, poor CWV scores lower Google ranking. Since many AI systems — particularly Gemini and Bing/Copilot — depend on Google's or Bing's index to find citation candidates, a page that ranks poorly due to bad CWV is less likely to be retrieved and cited. GeoExperiment tracks CWV as an experiment variable — see the experiment log for current findings.
GeoExperiment's advantage: Hosting on Cloudflare Pages with vanilla HTML and no JavaScript framework gives this site an inherent CWV advantage — fast TTFB, no render-blocking scripts, no layout shift from dynamic content.
How do you measure your Core Web Vitals?
- Google PageSpeed Insights (pagespeed.web.dev) — lab data for any URL, instant results
- Google Search Console → Core Web Vitals report — real-world field data from actual users across your entire site
- Chrome DevTools → Lighthouse tab — detailed diagnosis with specific recommendations
- WebPageTest (webpagetest.org) — advanced waterfall analysis for diagnosing LCP issues
How do you improve Core Web Vitals scores?
- LCP: Preload hero images, use WebP format, host on a CDN (Cloudflare Pages does this automatically), avoid render-blocking CSS and JS
- INP: Minimize JavaScript execution on the main thread, avoid heavy third-party scripts, use vanilla HTML/CSS where possible
- CLS: Always set explicit width and height on images and videos, avoid injecting content above existing content, preload fonts
Frequently asked questions about Core Web Vitals
// what are Core Web Vitals?
Core Web Vitals are Google's standardized page experience metrics: LCP (Largest Contentful Paint, under 2.5s), INP (Interaction to Next Paint, under 200ms), and CLS (Cumulative Layout Shift, under 0.1). They are a direct Google ranking signal and indirectly affect AI citation by influencing crawl frequency and ranking position.
// do Core Web Vitals affect AI citation?
Indirectly yes. Poor CWV scores lower Google ranking — and lower ranking reduces the chance of being indexed and cited by AI systems that depend on Google's or Bing's index. AI crawlers like PerplexityBot also prioritize fast, reliable pages. GeoExperiment tracks this as an experiment variable in the experiment log.
// what is LCP?
LCP (Largest Contentful Paint) measures how long it takes for the largest visible content element to render in the viewport. The good threshold is under 2.5 seconds. It is the most commonly failing CWV metric and the highest-impact one to fix for most sites.
// how do I check my Core Web Vitals?
Use Google PageSpeed Insights for instant lab data on any URL, or Google Search Console's Core Web Vitals report for real-world field data across your entire site. Always check both — lab and field data can differ significantly.