The speed-revenue relationship
Google research shows:
- 53% of mobile visitors leave a page that takes longer than 3 seconds to load
- Every 100ms improvement in LCP increases conversion rate by approximately 1%
- Sites loading under 2 seconds have 15% higher add-to-cart rates than those loading in 4 seconds
Calculate your speed tax
Formula:
Current monthly revenue x (current load time - target load time) / current load time x 0.1 = monthly revenue lost to speed
Example:
A business doing $200K/month with a 4-second load time targeting 2 seconds:
$200K x (4 - 2) / 4 x 0.1 = $10K/month lost to slow pages
That is $120K/year in revenue that a performance optimization project could recover.
Quick wins for immediate speed gains
1. Image optimization (saves 1 to 3 seconds)
- Convert images to WebP or AVIF
- Serve responsive sizes based on device
- Lazy-load below-the-fold images
- Use a CDN for delivery
2. Script management (saves 0.5 to 2 seconds)
- Audit third-party scripts (analytics, chat widgets, trackers)
- Defer non-critical JavaScript
- Remove unused CSS
- Bundle and minify remaining assets
3. Server response time (saves 0.3 to 1 second)
- Enable server-side caching
- Use a CDN for static assets
- Optimize database queries
- Consider edge deployment (Vercel, Cloudflare Workers)
4. Font loading (saves 0.2 to 0.8 seconds)
- Self-host fonts instead of Google Fonts
- Use font-display: swap to prevent invisible text
- Subset fonts to include only needed characters
- Preload critical fonts in the document head
Measuring the impact
Track these metrics before and after optimization:
- LCP (Largest Contentful Paint): Primary speed metric for user experience
- Bounce rate: Percentage of visitors who leave without interaction
- Conversion rate: Revenue per session
- Pages per session: Engagement depth
Use Google Search Console Core Web Vitals report for field data and Lighthouse for lab data. Field data reflects real user experience and matters more for rankings.
When to rebuild vs optimize
Optimize when: The underlying architecture is sound but individual pages need tuning. Budget: $3K to $10K.
Rebuild when: The platform itself creates speed problems (heavy CMS, theme bloat, plugin conflicts). Budget: $15K to $50K.
The rebuild costs more upfront but delivers permanent speed advantages that optimization cannot achieve on a slow platform.
