/* Star field + particle-dissolve background for GFC hero */ const GFCParticleField = ({ count = 60 }) => { const particles = React.useMemo(() => { return Array.from({ length: count }, (_, i) => { const colors = ['#00E5FF', '#7B2CFF', '#FF2BD1', '#FFB800']; return { left: Math.random() * 100, top: Math.random() * 100, size: Math.random() * 2.5 + 0.5, color: colors[i % colors.length], delay: Math.random() * 4, duration: Math.random() * 4 + 3, }; }); }, [count]); return (