// "Capabilities" section, repurposed as the OVERCUT feature trio. const Capabilities = () => { const { motion } = window.Motion; const cards = [ { eyebrow: "Self-Healing", title: "Heals in the sun", tags: ["Scratch Recovery", "Swirl Resistant", "Heat Reflow", "Daily-Drive Ready"], body: "Light scratches, swirl marks and fingernail nicks vanish under sun or warm water. The top layer reflows like memory foam — no buffing, no compounding.", }, { eyebrow: "Engineered Thickness", title: "Built for hard panels", tags: ["Compound Curves", "Tight Recesses", "Stretch & Hold", "No Lifting"], body: "Thin enough to chase the meanest body lines on modern supercars, thick enough to take a stone strike. Tuned panel by panel by the people who actually install it.", }, { eyebrow: "Installer DNA", title: "Goes on like vinyl", tags: ["Same Tools", "Same Time", "Repositionable", "Clean Release"], body: "We listened to installers and shipped their feedback. OVERCUT lays in the same time as a traditional vinyl wrap — no relearning, no specialty kit, no compromise on protection.", }, ]; const fadeUp = (delay = 0) => ({ initial: { filter: "blur(10px)", opacity: 0, y: 20 }, whileInView: { filter: "blur(0px)", opacity: 1, y: 0 }, viewport: { once: true, amount: 0.2 }, transition: { duration: 0.8, ease: "easeOut", delay }, }); return (
// The Film Protection,
in colour.
OVERCUT replaces both your wrap and your PPF in a single layer. One install. One product. Three times the lifespan.
{cards.map(({ eyebrow, title, tags, body }, i) => (
{eyebrow}
{tags.map((t) => ( {t} ))}

{title}

{body}

))}
); }; window.Capabilities = Capabilities;