function FeatureGlyph({ kind }) { const stroke = "currentColor"; if (kind === 'proprietary') { return ( ); } if (kind === 'gpu') { return ( {[0,1,2].map(r => [0,1,2].map(c => ( )))} ); } if (kind === 'privacy') { return ( ); } if (kind === 'wearable') { return ( ); } if (kind === 'ambient') { return ( ); } if (kind === 'builder') { return ( ); } return null; } function Features() { const feats = [ { i: 'F.01', k: 'proprietary', title: 'Fully Proprietary Model', body: 'Veiron Cortex is trained, tuned, and served by Veiron. No third-party dependencies, no leaked context.' }, { i: 'F.02', k: 'gpu', title: 'Runs on Our Own Grid', body: '100% of inference happens on the Veiron Grid — a sovereign compute layer sized for scale.' }, { i: 'F.03', k: 'privacy', title: 'Privacy by Architecture', body: 'Signals stay on-device until encrypted. Your biometrics never leave your keys.' }, { i: 'F.04', k: 'wearable', title: 'Continuous Biosignal In', body: 'Heart variability, sleep stages, breath, and motion — streamed from Veiron wearables 24/7.' }, { i: 'F.05', k: 'ambient', title: 'Ambient Presence', body: 'Context first, not chat first. LifeCoPilot intervenes only when it helps, not when it can.' }, { i: 'F.06', k: 'builder', title: 'Buildable From Day One', body: 'Forge exposes the same Cortex model via tools, agents, and a structured pipeline for creators.' }, ]; return (
02 / Platform

Engineered for
the long now.

{feats.map((f) => (
{f.i}
{f.title}
{f.body}
))}
); } window.Features = Features;