Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
95
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
73
Best Practices Checks for modern web development best practices including HTTPS, no console errors, and secure JavaScript.
63
SEO Measures basic SEO optimizations: meta tags, crawlability, link text, and mobile friendliness.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
355 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
501 ms
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
0 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.
355 ms
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
501 ms
Page Load Progression
375 ms
750 ms
1.1 s
1.5 s
1.9 s
2.2 s
2.6 s
3.0 s
Checks
21
14 PASS5 REVIEW
B
Third-Party Impact
54% third-party, 0 ms blocking
REVIEW
54% third-party, 0 ms blocking
Warning::
!
Third-party code accounts for 54% of page weight (36.5 KiB of 68.0 KiB)
Info::
✓
Third-party blocking time is low (0 ms)
46%
54%
First-party Third-party
B
Image Optimization
4 images, 0 KB saveable
REVIEW
4 images, 0 KB saveable
Info::
✓
All images are well-optimized
4images0 KB
0oversized-0 KB
4legacy format
0missing dimensionsCLS risk
B
HTTP/3 (QUIC)
HTTP/3 not advertised
REVIEW
HTTP/3 not advertised
Info::
i
HTTP/3 (QUIC) is not advertised
HTTP/3 isn't advertised via Alt-Svc and the worker didn't negotiate h3. HTTP/3 reduces handshake latency (1-RTT instead of 2-3 RTTs) and is more resilient on lossy connections. Most modern CDNs (Cloudflare, Fastly, AWS CloudFront, Google Cloud CDN) support HTTP/3 with a single config switch -- consider enabling for mobile-heavy workloads.
B
Compression Algorithm
Main response uses gzip; brotli would be ~20% smaller
REVIEW
Main response uses gzip; brotli would be ~20% smaller
Info::
i
Main HTML response uses gzip (brotli would be ~20% smaller)
All current browsers support brotli. Most CDNs (Cloudflare, Fastly, AWS CloudFront, Vercel, Netlify) can switch from gzip to brotli with a single config flag. Origin servers (nginx, Apache) need a brotli module compiled in -- nginx-brotli or Apache mod_brotli.
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.
A+
Page Weight Budget
68 KB transferred, 45 requests
PASS
68 KB transferred, 45 requests
Info::
✓
Page weighs 239 KB (68 KB transferred)
Info::
✓
45 HTTP requests
Info::
i
Estimated 0.01 g CO2 per page load
68 KBtransferred
45 requests
0.01 g CO2 per page load
JavaScript35.7 KiB52%
HTML24.4 KiB36%
CSS7.0 KiB10%
Other341 B0%
Images296 B0%
Other148 B0%
Other75 B0%
Fonts74 B0%
02.4 MB4.9 MB
Under budget
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+
JS Execution Cost
62ms total JS execution
PASS
62ms total JS execution
Info::
i
https://espiralturismoinductivo.com/servicios/: 62ms CPU time
Main Thread Breakdown
Other 40% Style & Layout 27% Script Evaluation 21% Parse HTML & CSS 7% Rendering 3%
Script
Total
Scripting
Parse/Compile
Party
https://espiralturismoinductivo.com/servicios/
62ms
9ms
0ms
1st
A+
Font Loading
3 fonts (0 KB)
PASS
3 fonts (0 KB)
Info::
i
3 font(s) use font-display: swap (FOUT risk but functional)
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+
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 uses no-cache -- safe revalidate-on-request policy
PASS
Main HTML uses no-cache -- safe revalidate-on-request policy
Info::
✓
Main HTML uses no-cache -- safe revalidate-on-request policy
Got: no-cache, max-age=3600
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.