Quick Answer
Core Web Vitals are three Google metrics — LCP (loading), INP (responsiveness), and CLS (visual stability) — that measure how fast and pleasant your site feels. They're part of Google's Page Experience signal, and for competitive keywords they decide tiebreakers. Google's own research says every second of delay costs roughly 7% of conversions.
The good news: most SMB sites can pass all three vitals with image optimization, removing render-blocking scripts, and cleaning up plugins — no redesign required. Here's the exact playbook.
The Three Vitals, Explained in Plain English
| Metric | Full name | What it measures | "Good" target |
|---|---|---|---|
| LCP | Largest Contentful Paint | Time until the main content (hero image, headline) appears | ≤ 2.5s |
| INP | Interaction to Next Paint | How quickly the page responds to clicks/taps/keys | ≤ 200ms |
| CLS | Cumulative Layout Shift | How much the page jumps around while loading | ≤ 0.1 |
LCP = "How fast does the good stuff appear?" It's the big hero image, the headline, the product photo. Until that renders, the visitor sees a blank or skeleton page.
INP = "How snappy does it feel when I click?" Replaced FID in 2024 because FID only measured the first tap. INP measures every interaction, which is a much tougher (and more honest) test — especially with lazy-loaded sections.
CLS = "Does the page jump around?" When an image pops in, a font swaps, or an ad loads, content shifts under the visitor's finger. On mobile, a 0.1+ CLS means people tap the wrong button.
Why Speed Matters Beyond the Score
Passing CWV isn't about satisfying Google — it's about revenue.
- ▪Conversion loss: Google research found a 7% conversion drop per second of delay. A site loading 3 seconds slower quietly burns a fifth of its leads.
- ▪Bounce rate: the probability of a bounce jumps ~32% as load time goes from 1s to 3s (Google's analysis of mobile sessions).
- ▪Ad costs: if you run Google Ads or Meta Ads, landing page speed is part of quality score. Slow landing pages pay more per click and convert worse — a double tax.
The number we track in our audits: for a client getting 2,000 monthly visits at 2% conversion with a $1,500 lead value, going from a 6s to a 2s load means roughly $1,800/mo more revenue — before any traffic increase.
How to Check Your Core Web Vitals (10 minutes)
- ▪PageSpeed Insights (pagespeed.web.dev) — gives lab data, field data when available, and a prioritized fix list. Start here.
- ▪Search Console → Core Web Vitals report — shows real-user data from Chrome, split by mobile/desktop, and flags which URLs fail. This is the truth report.
- ▪Chrome DevTools → Performance tab — for digging into why (which script is blocking, which image is heavy) after you know what fails.
Run the report on your money pages (home, services, pricing, product) first — not the blog. Those are the pages that earn.
The Fix Playbook, in Order of Impact
1. Images (usually fixes LCP)
- ▪Compress everything (WebP/AVIF at 80% quality beats JPEG by 30–60% file size).
- ▪Resize to the actual display width — a 2,000px hero on a 400px phone screen is waste.
- ▪Use
so phones get small files.srcset - ▪Add
andwidth
attributes orheight
CSS so space is reserved (this also fixes CLS).aspect-ratio
2. Render-blocking scripts (usually fixes INP)
- ▪Defer or async every non-critical script.
- ▪Audit third-party scripts: chat widgets, pixel trackers, map embeds, review badges. Each one costs load time. Keep the ones that make money; remove the ones that don't.
- ▪Inline critical CSS and load the rest asynchronously.
3. Fonts
- ▪Self-host fonts (Google Fonts via CDN creates extra connections).
- ▪Use
so text shows immediately.font-display: swap - ▪Serve only the weights you actually use.
4. Server / hosting (the ceiling on everything else)
- ▪A slow server caps how fast your site can possibly be. If you're on shared budget hosting, a decent VPS or managed WordPress host is the single best upgrade. See our VPS hosting comparison.
5. For WordPress sites: plugin diet
- ▪Every plugin adds CSS and JS. 30 plugins = 30 chances to slow you down.
- ▪Replace heavyweight plugins with lighter equivalents.
- ▪Use a caching plugin (and a CDN for static assets) once the rest is clean.
Common Speed Kills We Find in Real Audits
- ▪Autoplay videos and carousels — the #1 self-inflicted LCP wound. A looping background video can add megabytes per page view.
- ▪Uncached database queries on WordPress/WooCommerce sites.
- ▪Tracking everywhere. Ten pixels measuring the same thing isn't ten times smarter.
- ▪Multi-MB "hero sliders" that delay LCP by definition.
The Business Case for Speed
Speed is cheap to fix and compounds:
- ▪It's part of SEO (Page Experience + better crawling).
- ▪It lifts conversions on the traffic you already have.
- ▪It lowers Google Ads / Meta Ads costs through better landing page quality.
- ▪It improves retention — a fast site builds trust; a slow one reads as "this business is disorganized".
We've taken client sites from 6–8 second loads down to under 2.5s LCP in a few weeks with no redesign — just images, scripts, and hosting.
Next Steps
Run your money pages through PageSpeed Insights right now. If any fail the "Good" threshold, you have a measurable problem with a measurable fix. Want it handled? Get a free performance audit and quote, or check what your new build should cost with the website cost calculator.
Related Guides
- ▪Why Your Business Needs a Professional Website
- ▪Responsive Web Design: The Mobile-First Guide
- ▪VPS Hosting Comparison for Small Business
- ▪Technical SEO Checklist for 2026
About the Author
Mathew Metz leads the web development team at Orometa, having designed and launched 180+ high-performance websites for SMBs. Specializing in conversion-optimized design, mobile-first development, and performance engineering, he helps businesses turn visitors into customers. With a focus on user experience and measurable business outcomes, he combines technical excellence with strategic thinking.