What problem does it solve? Web pages that fail Google's Core Web Vitals thresholds rank lower in search results and deliver poor user experiences, but diagnosing and fixing LCP, INP, and CLS issues requires specialized knowledge of rendering, networking, and JavaScript execution. ## Core Features & Use Cases - LCP Optimization: Fix slow server responses, render-blocking resources, and unoptimized hero images using preload hints, fetchpriority, critical CSS inlining, and SSR/SSG patterns. - INP Optimization: Reduce interaction latency by breaking up long tasks, deferring heavy event handler work, lazy-loading third-party scripts, and memoizing expensive React components. - CLS Optimization: Eliminate layout shifts by reserving space for images, ads, and embeds, configuring font-display strategies, and using transform-based animations. - Use Case: A Next.js site has a 4.2s LCP and failing Search Console report. Use this Skill to identify the LCP element, preload the hero image with fetchpriority="high", inline critical CSS, and bring LCP under 2.5s. ## Quick Start Analyze my page's Core Web Vitals and fix the LCP, INP, and CLS issues causing it to fail Google's thresholds.