// ColdOcean — BOLD content sections // ─── Pillars ────────────────────────────────────────── function CoPillars() { const pillars = [ { n: '01', title: 'OUTBOUND AGENTS', body: 'AI-SDRs that research, write, and send — orchestrated across Apollo, Smartlead, and Close. Every reply routed, every objection handled.', tags: ['APOLLO', 'CLAUDE', 'SMARTLEAD', 'CLOSE'], }, { n: '02', title: 'PIPELINE INTELLIGENCE', body: 'Live account scoring, ICP refinement, and signal-based triggers flowing straight into your CRM. Sales sees the best 20 moves every morning.', tags: ['HUBSPOT', 'SALESFORCE', 'CLAY', 'ZOOMINFO'], }, { n: '03', title: 'WORKFLOW ORCHESTRATION', body: 'Long-running n8n flows with Claude Code in the loop. Enrich, classify, decide, write, post — a full GTM ops layer running 24/7.', tags: ['n8n', 'CLAUDE CODE', 'OPENCLAW'], }, { n: '04', title: 'DATA INFRASTRUCTURE', body: 'One warehouse for every touchpoint. Supabase + Airtable + Vercel, wired for real-time reads from your dashboards and agents alike.', tags: ['SUPABASE', 'AIRTABLE', 'VERCEL', 'BLITZAPI'], }, ]; return (
WHAT WE DO

FOUR PILLARS.
ONE ENGINE.

Agents, automations, and infrastructure assembled into a single compounding system — tuned to your motion, not ours.

{pillars.map((p, i) => (
[ {p.n} ] PILLAR

{p.title}

{p.body}

{p.tags.map((t) => ( {t} ))}
))}
); } // ─── Use cases ──────────────────────────────────────── function CoUseCases() { const cases = [ { title: 'AUTONOMOUS OUTBOUND', body: 'Research → personalize → send → reply-route. No SDRs, no breakage.', metric: '8× REPLY RATE' }, { title: 'ACCOUNT INTELLIGENCE', body: "Daily signal digests for AEs. Who's hiring, raising, visiting your site.", metric: '42 MIN SAVED / DAY' }, { title: 'REVOPS CLEANUP', body: 'De-dupe, enrich, route. CRM hygiene on autopilot.', metric: '96% MATCH RATE' }, { title: 'LEAD SCORING V2', body: 'LLM-powered fit + intent + timing scoring that beats rules.', metric: '2.3× WIN-RATE' }, { title: 'INBOUND QUALIFICATION', body: 'Agent handles first-touch, books meetings, escalates when needed.', metric: '< 3 MIN RESPONSE' }, { title: 'CHURN EARLY-WARNING', body: 'Product + CRM signals fuse into retention plays per account.', metric: '18% SAVE RATE' }, ]; return (
USE CASES

BUILT FOR
GTM MOTION.

06 SYSTEMS · LIVE IN PRODUCTION
{cases.map((c, i) => (
/{String(i+1).padStart(2,'0')} USE CASE

{c.title}

{c.body}

RESULT →
{c.metric}
))}
); } // ─── Workflow demo ──────────────────────────────────── function CoWorkflow() { const [activeNode, setActiveNode] = React.useState(0); const [activeEdge, setActiveEdge] = React.useState(-1); const nodes = [ { id: 0, x: 80, y: 170, label: 'APOLLO', sub: 'IDENTIFY ICP', kind: 'source' }, { id: 1, x: 260, y: 100, label: 'CLAUDE', sub: 'RESEARCH', kind: 'agent' }, { id: 2, x: 260, y: 240, label: 'BLITZAPI', sub: 'ENRICH', kind: 'source' }, { id: 3, x: 460, y: 170, label: 'n8n', sub: 'ROUTE', kind: 'workflow' }, { id: 4, x: 660, y: 100, label: 'HUBSPOT', sub: 'CREATE DEAL', kind: 'crm' }, { id: 5, x: 660, y: 240, label: 'SMARTLEAD', sub: 'SEND', kind: 'outbound' }, { id: 6, x: 860, y: 170, label: 'SUPABASE', sub: 'LEARN', kind: 'data' }, ]; const edges = [[0,1],[0,2],[1,3],[2,3],[3,4],[3,5],[4,6],[5,6]]; React.useEffect(() => { let i = 0; const id = setInterval(() => { i = (i + 1) % nodes.length; setActiveNode(i); setActiveEdge((i + edges.length - 1) % edges.length); }, 1000); return () => clearInterval(id); }, []); return (
LIVE WORKFLOW

ONE SIGNAL.
SEVEN AGENTS. ZERO TOUCH.

{edges.map(([a, b], i) => { const A = nodes[a], B = nodes[b]; const active = activeEdge === i || activeNode === a || activeNode === b; const d = `M ${A.x+44} ${A.y} C ${(A.x+B.x)/2} ${A.y}, ${(A.x+B.x)/2} ${B.y}, ${B.x-44} ${B.y}`; return ( {active && ( )} ); })} {nodes.map((n) => { const active = activeNode === n.id; return ( {active && ( )} {n.label} {n.sub} ); })}
STATUS: ● RUNNING UPTIME 99.98%
→ PROCESSING {nodes[activeNode].label}
); } window.CoPillars = CoPillars; window.CoWorkflow = CoWorkflow; window.CoUseCases = CoUseCases;