/* global React */ // Hero — animated "noise → signal" diagram const { useEffect, useRef, useState } = React; function BrandMark({ size = 22, color }) { // MECE mark — 4 quadrants (mutually exclusive, collectively exhaustive), // one filled = the signal you keep. return ( ); } // Animated noise→signal scatter. Dots start scattered, settle to a curve. function SignalScatter() { const [phase, setPhase] = useState(0); useEffect(() => { const id = setInterval(() => setPhase((p) => (p + 1) % 2), 3200); return () => clearInterval(id); }, []); // 60 deterministic dots const dots = React.useMemo(() => { const arr = []; for (let i = 0; i < 64; i++) { // pseudo-random seeded const s1 = Math.sin(i * 12.9898) * 43758.5453; const s2 = Math.sin(i * 78.233) * 43758.5453; const rx = (s1 - Math.floor(s1)); const ry = (s2 - Math.floor(s2)); arr.push({ id: i, rx, ry }); } return arr; }, []); // Signal items (the 6 chosen) const signalIdx = [4, 13, 22, 31, 44, 55]; return (
Standard RSS can only tell you what published. MECE crawls the niches you actually read, ranks every item against your rubric, and ships a private RSS or JSON feed with signed receipts so you can audit exactly what the model did on your dime.