Performance
· 17 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.Performance-focused optimization plan with CWV assessment, top offenders, and time estimates
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
3.59 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
10.68 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
119 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
4.45 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
10.74 s
Page Load Progression
DThird-Party ImpactAction100% third-party, 0 ms blockingFIX
DPage Weight InventoryAction50 resources · 1.9 MB · 64 KB savings availableFIX
~64.2 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 50 resources | 1.9 MiB | ||||||
FHTTP CachingActionNo cache headersFIX
No Cache-Control header
Adding a Cache-Control header can significantly improve repeat-visit performance.
CPage Weight BudgetAction1.9 MB transferred, 50 requestsREVIEW
BImage Optimization17 images, 0 KB saveableREVIEW
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
CJS Execution CostAction1002ms total JS executionREVIEW
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| Unattributable | 368ms | 63ms | 0ms | 3rd |
| https://www.verisign.com/js/components/index.abac3d478b2791ea252a61cf9fd8c2c045499a04a603dbcc10ec307d381c94c8.js | 292ms | 147ms | 7ms | 3rd |
| https://cdn.cookielaw.org/scripttemplates/202505.2.0/otBannerSdk.js | 229ms | 148ms | 55ms | 3rd |
| https://www.verisign.com/ | 112ms | 21ms | 5ms | 3rd |
BJS Bundles7 scripts, 64 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://cdn.cookielaw.org/scripttemplates/202505.2.0/otBannerSdk.js | 119 KB | 64 KB (54%) | ✓ | 3rd |
| https://www.verisign.com/js/components/index.abac3d478b2791ea252a61cf9fd8c2c045499a04a603dbcc10ec307d381c94c8.js | 23 KB | — | ✓ | 3rd |
| https://cdn.cookielaw.org/scripttemplates/otSDKStub.js | 9 KB | — | ✓ | 3rd |
| blob:https://players.brightcove.net/99998dde-9dc5-4c65-aa9d-be88965e4efd | -0 KB | — | ✓ | 3rd |
| blob:https://players.brightcove.net/2eaa137c-26c1-400d-9209-e27523208056 | -0 KB | — | ✓ | 3rd |
| blob:https://players.brightcove.net/37bea564-80da-47b8-8c88-a2439f79447f | -0 KB | — | ✓ | 3rd |
| blob:https://players.brightcove.net/858fd32d-0fda-4703-b06c-8cd5c8c94b5c | -0 KB | — | ✓ | 3rd |
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
A+Text CompressionAll text resources are compressedPASS
A+Font Loading3 fonts (62 KB)PASS
Web fonts
3
62 KB total
Render-blocking
0
of 3
Dominant font-display
swap
Most common across fonts
Font loading timeline
Optimization checklist
- Preload critical fonts (priority=high)
- Use woff2 format for all fonts
- Set font-display to swap, optional, or fallback
- Subset large fonts (≤100 KB each)
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource Hints4 hints, 0 missing preconnectsPASS
Current Resource Hints
4 resource hints configured
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
Network Waterfall50 requests over 1504msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 368ms | 0 KB | — | $1/mo | Costly |
www.verisign.com www.verisign.com | Other | 292ms | 23 KB | — | $1/mo | Costly |
OneTrust cdn.cookielaw.org | Consent | 229ms | 119 KB | 54% | $1/mo | Essential |
www.verisign.com www.verisign.com | Other | 112ms | 20 KB | — | $0/mo | Optional |
These scripts may cost more than they're worth
- Unattributable adds 368ms and costs ~$1/month
- www.verisign.com adds 292ms and costs ~$1/month
100% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
When third-party JS execution time exceeds your own, performance gains from frontend work are capped by code you don't own.
Learn more ▾ ▴
Every millisecond of third-party JS competes with your own for main-thread time. If their share is bigger than yours, optimization on your code base barely moves the needle. Audit, defer, or remove third-parties before further frontend optimization. Use Lighthouse's third-party audit to identify the worst offenders.
Source: web.dev
Unattributable takes 368ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
www.verisign.com takes 292ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
54% of OneTrust's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev