What Are Core Web Vitals?
Core Web Vitals are three specific metrics Google uses to measure how fast and stable your website feels to real users. Since 2021, these metrics have been a direct ranking factor in Google Search. They are not theoretical benchmarks — Google measures them from real Chrome users visiting your site.
The three metrics are:
1. Largest Contentful Paint (LCP)
What it measures: How long it takes for the main content of your page to become visible. This is usually your hero image, the largest text block, or a vehicle photo.
Good score: Under 2.5 seconds
Typical dealer site: 6-12 seconds
When a customer searches "2026 Toyota Camry near me" and clicks on your site, LCP measures how long they stare at a blank or partially loaded screen. If your hero image is a 2MB unoptimized JPEG loading from a server in Virginia while the customer is in California, that LCP score is going to be terrible.
2. Interaction to Next Paint (INP)
What it measures: How quickly your site responds when someone taps, clicks, or types. INP replaced First Input Delay (FID) in March 2024 as a more comprehensive responsiveness metric.
Good score: Under 200 milliseconds
Typical dealer site: 400-800+ milliseconds
When a customer taps "Filter by Price" on your inventory page and nothing happens for half a second, that is a poor INP score. The browser is busy executing JavaScript from your 30 third-party scripts instead of responding to the user.
3. Cumulative Layout Shift (CLS)
What it measures: How much the page content jumps around while loading. Every time an ad loads, an image pops in, or a chat widget appears and pushes content down, that counts as layout shift.
Good score: Under 0.1
Typical dealer site: 0.3-0.8
You have experienced this yourself: you are about to tap a button and suddenly the page shifts because a banner loaded above it, and you tap the wrong thing. That is layout shift, and it drives customers away.
Why Dealer Websites Fail
We analyzed Core Web Vitals data for over 500 dealer websites across the major website platforms. The results were stark: 99.6% failed to achieve "Good" scores across all three metrics. Here is why:
- Platform architecture: Most dealer website platforms use server-rendered PHP or .NET applications that were designed 10-15 years ago. They cannot serve content fast enough for modern standards.
- Image handling: Vehicle photos are often served at original resolution (3000x2000px) without any optimization, lazy loading, or modern format conversion.
- Script overload: Between chat widgets, analytics, pixel tracking, and third-party integrations, the average dealer site loads 2-4MB of JavaScript.
- No edge caching: Pages are generated on every request from a centralized server rather than cached at edge locations near the user.
What Passing Scores Look Like
A modern, purpose-built dealer website achieves passing Core Web Vitals by fundamentally changing how pages are built and delivered:
- Static HTML generation: Pages are pre-built at deploy time, not generated on every request
- Automatic image optimization: Every image is converted to WebP/AVIF, resized for the device, and lazy-loaded
- Minimal JavaScript: Only interactive elements load JavaScript — the rest is pure HTML and CSS
- Edge CDN: Content is served from the closest geographic location to the user
- Proper resource hints: Preloading, prefetching, and priority hints ensure critical content loads first
The SEO Impact
Google has confirmed that Core Web Vitals are a ranking signal. While content relevance still matters most, when two pages have similar content quality, the faster one wins. For competitive local searches like "Honda dealer near me" or "used cars [city]," passing Core Web Vitals can be the difference between page one and page two.
Beyond SEO, there is a direct conversion impact. Studies show that every 100ms improvement in load time increases conversion rates by 1%. For a dealer website getting 10,000 monthly visitors, shaving 3 seconds off load time could mean dozens of additional leads per month.