Analysis
Why improving LCP doesn't always increase conversion
A critical analysis of false positives in performance optimizations and the pitfalls of looking only at initial load times.

Executive brief
Key takeaways
- LCP measures only the first impact, not the ability to transact.
- Users don't convert on pages where they can't interact with main elements.
- The buying journey involves constant visual stability and instant response to touches.
In the race to achieve those coveted "green" indicators in auditing tools, many teams celebrate drastically reducing the LCP (Largest Contentful Paint) of their main pages. The problem? Weeks later, the conversion rate remains static.
This critical analysis investigates the scenarios where focusing exclusively on LCP generates a short-sighted view and fails to result in financial gains.
The limit of first contact
The technical observation of LCP indicates when the largest block of content (text or image) becomes visible on the screen. The common inference is that "fast content equals a happy user." However, LCP does not guarantee interactivity.
We have frequent evidence of B2B sites and e-commerces where a banner image renders almost immediately (excellent LCP), but the JavaScript responsible for the "Add to cart" or "Schedule Demo" buttons continues to block the main thread for another 3 seconds.
Where the journey breaks
The hypothesis that supports performance-driven conversion increases must include the ability to act on the page. Factors that undermine LCP:
- Heavy hydration: The interface is drawn quickly (SSR generating good LCP), but the framework's hydration on the client freezes interactions. The user clicks, and nothing happens.
- Layout shifts (CLS): Content loads, but subsequently injected ads push CTA buttons, causing accidental clicks and frustration.
- Silent errors: API failures or console errors are not caught by Lighthouse but summarily block the checkout pipeline.
Limitation: It is important to point out that improving LCP is almost always necessary, but rarely sufficient to resolve systemic bottlenecks in conversion.
Recommended action: Look beyond the first frame
Stop measuring success exclusively on the Homepage's LCP. Truly impactful optimizations remove friction throughout the entire engagement.
Action plan
- Compare field LCP with INP. A large divergence indicates the page is fast to display but slow to use.
- Identify which interactions (form clicks, menu expansions) have the worst latency.
- Use usability monitoring tools that capture actual interactions on critical pages, not just load times.
- Reduce JavaScript Long Tasks that delay the time it takes for an element to become "clickable".
- Re-verify the primary conversion metric, confirming that the final interactivity was resolved.
Direct answers
Frequently asked questions
If my LCP is already at 'Good', what should I focus on?
Investigate interactivity metrics (like INP) and stability (CLS), and ensure heavy JavaScript flows aren't freezing the browser during checkout stages.
One useful idea at a time