https://www.solugenix.com/hs-fs/hubfs/Untitled%20d... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/7-2.png?widt... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/Untitled%20d... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/8-1.png?widt... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/6-1.png?widt... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://solugenix.com/hubfs/Solugenix%20AI%20Guard... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/9-1.png?widt... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/10-1.png?wid... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://2232601.fs1.hubspotusercontent-na2.net/hub... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://solugenix.com/hubfs/Clean%20editorial%20im... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://global.ketchcdn.com/web/v2/assetsv1/orgs/s... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/PT%20Logo%20... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/Untitled%20d... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/Easterseals%... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.solugenix.com/hs-fs/hubfs/Iridium%20Wh... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
59images2.2 MB
0oversized-0 KB
25legacy format
15missing dimensionsCLS risk
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
C
Compression Algorithm
Action
Main response served uncompressed
REVIEW
Main response served uncompressed
Info::
i
Main HTML response has no Content-Encoding (uncompressed)
The main HTML document is served without compression. The Text Compression section above lists the broader picture; for the main response specifically, even gzip would shave ~70-80% off most text payloads.
B
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
i
No Server-Timing header found
Server-Timing exposes backend timing breakdowns to browser DevTools (e.g., `db: 45ms; render: 120ms; cache: 2ms`). Useful for diagnosing slow pages without backend log access. Most modern frameworks (Next.js, Cloudflare Workers, Fastly) emit it automatically; absence on a managed platform usually means telemetry headers are stripped at the edge.
B
JavaScript Blocking
2 JS blocking issue(s) detected
REVIEW
2 JS blocking issue(s) detected
Warning::
!
12 render-blocking <script src> tag(s) without async/defer
Each `<script src=...>` without `async`, `defer`, or `type="module"` blocks HTML parsing while the browser fetches and executes it. The block lasts the entire round-trip + execution time -- on slow networks this translates directly into LCP delay. Add `defer` (executes after parse, in source order) for scripts that interact with the DOM, or `async` (executes whenever ready) for analytics / independent scripts. Module scripts (`type="module"`) are deferred by default.
Warning::
!
Total JS execution time is 11.1 s -- over the 3.5s budget
Total JavaScript execution (parse + compile + run) across all scripts exceeds 3.5 seconds. On low-end devices that becomes 7-15+ seconds and shows up directly in TBT and INP. Reduce by: tree-shaking unused dependencies, code-splitting (dynamic `import()`), removing or deferring third-party tracking, and replacing heavy frameworks where they're not needed.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW
Green Hosting
No green hosting detected
A+
Text Compression
All text resources are compressed
PASS
All text resources are compressed
Info::
✓
All text resources are compressed
All text resources are properly compressed.
A+
Font Loading
7 fonts (184 KB)
PASS
7 fonts (184 KB)
Info::
i
7 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
7
184 KB total
Render-blocking
0
of 7
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
fa-solid-900.woff2woff2swap
Size79 KB
Load time95 ms
Start1.6 s
RiskFOUT — text flashes from fallback to web font
Magistral-Medium.woff2woff2swap
Size26 KB
Load time1.3 s
Start1.6 s
RiskFOUT — text flashes from fallback to web font
fa-brands-400.woff2woff2swap
Size78 KB
Load time79 ms
Start1.6 s
RiskFOUT — text flashes from fallback to web font
x-font-woff;charset=utf...woffswap
Size2 KB
Load time47 ms
Start2.0 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
x-font-woff;charset=utf...woffswap
Size0 KB
Load time0 ms
Start2.1 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
x-font-woff;charset=utf...woffswap
Size0 KB
Load time0 ms
Start2.2 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
x-font-woff;charset=utf...woffswap
Size0 KB
Load time0 ms
Start2.2 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
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 Caching
All resources properly cached
PASS
All resources properly cached
Info::
✓
No caching issues found
All static resources have appropriate caching headers.
A+
Critical Rendering Path
No render-blocking resources
PASS
No render-blocking resources
Info::
✓
No render-blocking resources detected
A+
Resource Hints
No optimization needed
PASS
No optimization needed
Info::
✓
No resource hint issues
A+
HTTP/3 (QUIC)
HTTP/3 advertised via Alt-Svc
PASS
HTTP/3 advertised via Alt-Svc
Info::
✓
HTTP/3 (QUIC) is supported
First-load mobile users on cellular networks see meaningful latency improvements with HTTP/3. The QUIC transport collapses TLS + TCP handshakes into one and recovers faster from packet loss.
A+
LCP Image Preload
LCP preload audit not available
PASS
LCP preload audit not available
Info::
✓
LCP image preload audit not available for this scan
A+
Main HTML Cache-Control
Main HTML max-age=120 (≤ 5min) is appropriate
PASS
Main HTML max-age=120 (≤ 5min) is appropriate
Info::
✓
Main HTML max-age=120 (≤ 5min) is appropriate
Got: s-maxage=3600,max-age=120
A+
Server Response Intelligence
2 server-response signal(s) detected
PASS
2 server-response signal(s) detected
Info::
✓
`Vary` header declared: accept-encoding
The page declares a `Vary` header, telling downstream caches which request headers the response varies on. Critical for content-negotiated responses (compression, language, cookies, device class).
Info::
i
No `ETag` or `Last-Modified` -- conditional GET not supported
Without either header, browsers can't issue conditional GETs and refresh always re-downloads the full response body even when nothing changed. Add `ETag: "<hash>"` (or `Last-Modified: <date>`) on cacheable responses; the server returns 304 Not Modified when the client's cached copy is still valid, saving bandwidth.
Each `<link rel="stylesheet">` without a non-blocking `media` attribute holds up the first paint. Browsers download all of them before painting any content. Consolidate into 1-2 critical-path stylesheets; defer non-critical CSS via `<link rel="stylesheet" media="print" onload="this.media='all'">` or via the loadCSS pattern; inline above-the-fold CSS in `<style>` to short-circuit the request entirely.
A+
HTTP Caching
max-age=120 (2 minutes)
PASS
max-age=120 (2 minutes)
Info::
✓
Cache-Control header is set
Got: s-maxage=3600,max-age=120
Info::
✓
Effective TTL: 2 minutes (max-age=120)
Info::
✓
CDN TTL: 1 hour (s-maxage=3600)
Info::
i
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control
s-maxage=3600,max-age=120
Directive
Value
Meaning
s-maxage
3600
CDN caches for 1 hour
max-age
120
Cache for 2 minutes
Effective TTL: 120 seconds
Network Waterfall
235 requests over 7158ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
100%of JavaScript execution is third-party
First-party Third-party11113ms · 1006KB · €121/mo
Script
Category
Execution
Transfer
Unused
Monthly Cost
Verdict
Unattributable
Unattributable
Other
1922ms
0 KB
—
€21/mo
Costly
www.solugenix.com
www.solugenix.com
Other
1766ms
42 KB
—
€19/mo
Costly
js-na2.hs-analytics.net
js-na2.hs-analytics.net
Other
1247ms
42 KB
—
€14/mo
Costly
cdn2.hubspot.net
cdn2.hubspot.net
Other
1060ms
73 KB
66%
€12/mo
Costly
www.solugenix.com
www.solugenix.com
Other
959ms
0 KB
—
€10/mo
Costly
fast.wistia.net
fast.wistia.net
Other
943ms
30 KB
—
€10/mo
Costly
cdn.ketchjs.com
cdn.ketchjs.com
Other
872ms
259 KB
44%
€9/mo
Costly
fast.wistia.net
fast.wistia.net
Other
554ms
0 KB
74%
€6/mo
Costly
www.solugenix.com
www.solugenix.com
Other
550ms
200 KB
40%
€6/mo
Costly
fast.wistia.net
fast.wistia.net
Other
431ms
147 KB
76%
€5/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
350ms
123 KB
50%
€4/mo
Costly
www.solugenix.com
www.solugenix.com
Other
175ms
8 KB
—
€2/mo
Optional
js-na2.hubspot.com
js-na2.hubspot.com
Other
100ms
29 KB
—
€1/mo
Optional
js-na2.usemessages.com
js-na2.usemessages.com
Other
98ms
34 KB
—
€1/mo
Optional
LinkedIn Insight
snap.licdn.com
Advertising
85ms
19 KB
—
€1/mo
Optional
Unattributable
Other
Costly
Execution1922ms
Transfer0 KB
Monthly Cost€21/mo
www.solugenix.com
Other
Costly
Execution1766ms
Transfer42 KB
Monthly Cost€19/mo
js-na2.hs-analytics.net
Other
Costly
Execution1247ms
Transfer42 KB
Monthly Cost€14/mo
cdn2.hubspot.net
Other
Costly
Execution1060ms
Transfer73 KB
Unused66%
Monthly Cost€12/mo
www.solugenix.com
Other
Costly
Execution959ms
Transfer0 KB
Monthly Cost€10/mo
fast.wistia.net
Other
Costly
Execution943ms
Transfer30 KB
Monthly Cost€10/mo
cdn.ketchjs.com
Other
Costly
Execution872ms
Transfer259 KB
Unused44%
Monthly Cost€9/mo
fast.wistia.net
Other
Costly
Execution554ms
Transfer0 KB
Unused74%
Monthly Cost€6/mo
www.solugenix.com
Other
Costly
Execution550ms
Transfer200 KB
Unused40%
Monthly Cost€6/mo
fast.wistia.net
Other
Costly
Execution431ms
Transfer147 KB
Unused76%
Monthly Cost€5/mo
Google Tag Manager
Tag Manager
Costly
Execution350ms
Transfer123 KB
Unused50%
Monthly Cost€4/mo
www.solugenix.com
Other
Optional
Execution175ms
Transfer8 KB
Monthly Cost€2/mo
js-na2.hubspot.com
Other
Optional
Execution100ms
Transfer29 KB
Monthly Cost€1/mo
js-na2.usemessages.com
Other
Optional
Execution98ms
Transfer34 KB
Monthly Cost€1/mo
LinkedIn Insight
Advertising
Optional
Execution85ms
Transfer19 KB
Monthly Cost€1/mo
These scripts may cost more than they're worth
Unattributable adds 1922ms and costs ~€21/month
www.solugenix.com adds 1766ms and costs ~€19/month
js-na2.hs-analytics.net adds 1247ms and costs ~€14/month
cdn2.hubspot.net adds 1060ms and costs ~€12/month
www.solugenix.com adds 959ms and costs ~€10/month
fast.wistia.net adds 943ms and costs ~€10/month
cdn.ketchjs.com adds 872ms and costs ~€9/month
fast.wistia.net adds 554ms and costs ~€6/month
www.solugenix.com adds 550ms and costs ~€6/month
fast.wistia.net adds 431ms and costs ~€5/month
Google Tag Manager adds 350ms and costs ~€4/month
100% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
Why this matters
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 1922ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
www.solugenix.com takes 1766ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
js-na2.hs-analytics.net takes 1247ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
cdn2.hubspot.net takes 1060ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
66% of cdn2.hubspot.net's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
www.solugenix.com takes 959ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
fast.wistia.net takes 943ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
cdn.ketchjs.com takes 872ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
fast.wistia.net takes 554ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
74% of fast.wistia.net's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
www.solugenix.com takes 550ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
fast.wistia.net takes 431ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
76% of fast.wistia.net's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
Google Tag Manager takes 350ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.