Part III β The Speed Β· Lesson 5.2
Performance Importance
In one lineLatency is a business metric β it moves conversion, retention, and reach, not just Lighthouse scores.
Where you've seen itEvery large retailer that has published A/B data on load time reaches the same conclusion β slower pages sell less, consistently.
Diagram
CONVERSION vs LOAD TIME β the shape everyone measures
conversion
β²
100%ββ
β ββ
β βββ
β ββββ
β ββββββ
β βββββββββ
0 ββββββ¬βββββ¬βββββ¬βββββ¬βββββ¬βββββ¬βββββΊ load time
1s 2s 3s 4s 5s 6s
Steepest losses happen in the first few seconds β
where most of your optimisation budget should go.WHO YOUR SLOW USERS ACTUALLY ARE
your laptop ββββ 1.2s β what you test on
flagship phone ββββββ 2.1s
mid-tier Android ββββββββββββ 4.8s β the median real user
4-year-old phone, ββββββββββββββββββββ 9.3s
patchy 4G β the ones who leave
Median device CPU is ~4Γ slower than a developer machine.THE COMPOUNDING EFFECTS
slow page βββΊ fewer conversions (direct revenue)
βββΊ lower engagement (retention)
βββΊ worse ranking signal (less traffic)
βββΊ more support load ("the site is broken")
βββΊ more infra cost (retries, abandoned sessions)How it works
- Tie the metric to money before asking for time: "p75 LCP is 4.1s; every 500ms is worth roughly X% of checkout completions."
- Test on the device your users have. Throttle to 4Γ CPU slowdown and Slow 4G by default in DevTools.
- Watch the tail, not the mean β p75 and p95 are where churn lives (see 4.5).
- Treat it as a feature with a budget, not a cleanup task. Cleanup tasks lose to roadmap items every quarter.
Trade-offs
| Investment | Typical return |
|---|---|
| Image optimisation + CDN | Large LCP win, low effort |
| Code splitting by route | Large TTI/INP win, medium effort |
| SSR/SSG migration | Large LCP win, high effort |
| Micro-optimising React renders | Small win unless you have long tasks |
Diminishing returns are real: going 6s β 3s is transformative; 1.2s β 1.0s rarely shows up in any business metric. Know which side of the curve you're on before spending a sprint.
Interview angle
"How do you justify a performance sprint to a product manager?"
- Convert the metric into their language: p75 LCP, the conversion delta measured or benchmarked, and the revenue that implies.
- Show the device gap β most stakeholders have never seen the site on a mid-tier Android on 4G.
- Ask for a budget in CI instead of a one-off sprint, so the win doesn't erode by the next quarter.
Recap
- Performance is revenue, retention, and reach β argue it in those terms.
- Your users' devices are several times slower than yours; test that way.
- Biggest gains are at the slow end of the curve; know where you sit.