// Luxury hero v2 — anchored, confident, product-forward const LNav = () => { const [scrolled, setScrolled] = React.useState(false); React.useEffect(() => { const el = document.querySelector('.ccl-host') || window; const onS = () => { const top = el === window ? window.scrollY : el.scrollTop; setScrolled(top > 8); }; el.addEventListener('scroll', onS, { passive: true }); onS(); return () => el.removeEventListener('scroll', onS); }, []); return ( ); }; // Hero product preview — static, beautiful, doesn't rely on scroll transforms const HeroPreview = () => { const [tab, setTab] = React.useState('portfolio'); const [pulseI, setPulseI] = React.useState(0); React.useEffect(() => { const id = setInterval(() => setPulseI(i => (i + 1) % 4), 2400); return () => clearInterval(id); }, []); return (
setTab('portfolio')}>Portfolio setTab('vendors')}>Vendors setTab('copilot')}>Compliance Copilot
app.complychip.com
{/* Top — score + summary */}
Live · 5 entities · 287 docs · 200 vendors
Portfolio score
78
+6.2
90d
Healthy, with watchpoints.
{/* Bottom — action cards */}
What needs you · this week
{[ {h:'Overdue · 2', t:'#7d2e3a', items:[['OSHA Safety Cert', 'Harbor Industrial', '12d ago'],['Fire Inspection', 'Downtown Tower', '4d ago']]}, {h:'Expiring · 3', t:'#a8854a', items:[['Workers Comp', 'Riverside Medical', 'in 9d']]}, {h:'For review · 1', t:'#8db49a', items:[['Vendor Risk Q2', 'BuildRight Co.', 'today']]}, ].map((c, ci) => (
{ci === pulseI % 3 && }
{c.h}
{c.items.map(([n, e, d]) => (
{n}{e} {d}
))}
))}
); }; // Decorative floating cards — drift around the hero preview with parallax const FloatCardScore = () => (
Score · live
94
+6.2 · 90d
); const FloatCardDoc = () => (
Indexed · 1.2s
MSA-0418.pdf
NDAHarbor2026
); const FloatCardAlert = () => (
Action · overdue
OSHA Safety Cert
Harbor Industrial · 12d ago
); // Subtle dotted grid that lives behind the hero const HeroGrid = () => ( ); const LHero = () => (
Private beta AI-native compliance · design partners open

Compliance,
rebuilt around AI.

ComplyChip is the AI-native intelligence layer for regulated industries — built on a compliance-specific knowledge base, purpose-built models, and workflows engineered from the ground up. The system reads. The system understands. The Compliance Copilot answers — with sources.

See the AI in action
{/* Floating decoration cards — pointer-events:none so they don't block the preview */}
); // AI-stack strip — replaces "trusted by" with the AI infrastructure under the hood const LTrustStrip = () => { const stack = [ { n: 'Compliance reasoning', s: 'Domain-tuned extraction' }, { n: 'Compliance Copilot', s: 'Cited answers over your corpus' }, { n: 'Knowledge base', s: 'Compliance-specific embeddings' }, { n: 'Agent orchestration', s: 'Multi-step AI reasoning' }, { n: 'AI-native workflows', s: 'Purpose-built compliance pipelines' }, { n: 'Embeddings & OCR', s: 'From scan to searchable' }, { n: 'Knowledge graph', s: 'Entities, documents, regulations' }, { n: 'Audit trail', s: 'Every answer logged' }, ]; return (
The AI stack auditors will trust
{stack.map(s => (
{s.n} {s.s}
))}
); }; window.LNav = LNav; window.LHero = LHero; window.LTrustStrip = LTrustStrip;