function Counter({ to, suffix = '', decimals = 0 }) { const [v, setV] = React.useState(0); const ref = React.useRef(null); React.useEffect(() => { const el = ref.current; if (!el) return; let started = false; const io = new IntersectionObserver((entries) => { entries.forEach(e => { if (e.isIntersecting && !started) { started = true; const start = performance.now(); const dur = 1800; const tick = (now) => { const t = Math.min(1, (now - start) / dur); const eased = 1 - Math.pow(1 - t, 3); setV(to * eased); if (t < 1) requestAnimationFrame(tick); }; requestAnimationFrame(tick); } }); }, { threshold: 0.3 }); io.observe(el); return () => io.disconnect(); }, [to]); return {v.toFixed(decimals)}{suffix}; } function Stats() { return (
USERS
active humans carrying their CoPilot across 60+ countries
COMPUTE
proprietary GPUs running inference on the Veiron Grid
SIGNALS / DAY
biosignal events processed privately, end-to-end
LATENCY
median response time — closer to a thought than a query
); } window.Stats = Stats;