/* HERO — frase ancla principal. Composición: número de versión, eyebrow + métrica, titular masivo "steel-text", párrafo subtítulo, CTAs y barra inferior con cifras clave. Marquee lateral opcional. */ const Hero = ({ t, lang }) => { const [time, setTime] = React.useState(''); React.useEffect(() => { const update = () => { const now = new Date(); const opts = { timeZone: 'America/Mexico_City', hour: '2-digit', minute: '2-digit', hour12: false }; setTime(now.toLocaleTimeString(lang === 'es' ? 'es-MX' : 'en-US', opts)); }; update(); const id = setInterval(update, 30000); return () => clearInterval(id); }, [lang]); return (
{/* Radial mask softening grid edges */}
); }; window.Hero = Hero;