// SECTION 1 — THE IDEA // "Vision needs strength" — the opening manifesto after the hero. function Idea() { const [scrolled, setScrolled] = React.useState(0); const ref = React.useRef(null); React.useEffect(() => { const onScroll = () => { if (!ref.current) return; const r = ref.current.getBoundingClientRect(); const vh = window.innerHeight; const p = 1 - (r.top + r.height * 0.3) / vh; setScrolled(Math.max(0, Math.min(1, p))); }; onScroll(); window.addEventListener('scroll', onScroll, { passive: true }); return () => window.removeEventListener('scroll', onScroll); }, []); return (
SECTION 01 — THE IDEA

Vision needs strength.

Human progress has always started the same way:
someone sees further, thinks bigger, and builds what does not yet exist.

But vision alone is never enough. Breakthroughs require strength — the discipline to execute, the clarity to decide, and the resilience to keep moving.

01 Discipline to execute
02 Clarity to decide
03 Resilience to keep moving

That is what Veiron stands for.

We build intelligence that helps people move from complexity to clarity, from insight to action, and from ambition to progress.

complexity clarity action progress
); } window.Idea = Idea;