const Capabilities = () => { const caps = [ { icon: 'Stack', title: 'Scalable architecture', desc: 'Event-driven, horizontally scalable. Designed for spikes, audits, and the long tail of edge cases.' }, { icon: 'Plug', title: 'API-first systems', desc: 'Every capability is an API. Compose with your existing stack — Salesforce, NetSuite, Workday, custom.' }, { icon: 'Building', title: 'Multi-tenant', desc: 'Isolated data planes, shared control plane. Per-tenant policies, models, and audit trails out of the box.' }, { icon: 'Shield', title: 'Secure & compliant', desc: 'SOC2-aligned, GDPR-ready. PII redaction, role-based access, immutable logs, model-input auditing.' }, { icon: 'Cloud', title: 'Cloud-native deployment', desc: 'Run on AWS, Azure, GCP — or your own VPC. Kubernetes-native. BYOK for keys and models.' }, { icon: 'Lock', title: 'Private model layer', desc: 'Bring your own model, host ours, or run hybrid. No customer data leaves the boundary you choose.' }, ]; return (
{caps.map((c, i) => { const IconCmp = I[c.icon]; return (

{c.title}

{c.desc}

); })}
); }; window.Capabilities = Capabilities;