// ColdOcean — BOLD Sections2: Stack, Work, Stats, Testimonials, CTA, Footer function CoStack() { const groups = [ { name: 'CRM', color: '#ff5a1f', tools: [{ n:'HUBSPOT', m:'H' },{ n:'SALESFORCE', m:'SF' },{ n:'CLOSE', m:'C' },{ n:'PIPEDRIVE', m:'PD' }] }, { name: 'LEAD GEN', color: '#ffa726', tools: [{ n:'APOLLO', m:'A' },{ n:'BLITZAPI', m:'Bz' },{ n:'ZOOMINFO', m:'Zi' },{ n:'CLAY', m:'Cl' }] }, { name: 'AGENTS', color: '#e4ff3f', tools: [{ n:'CLAUDE CODE', m:'Cd' },{ n:'n8n', m:'n8' },{ n:'OPENCLAW', m:'Ow' },{ n:'LANGCHAIN', m:'LC' }] }, { name: 'DATA', color: '#f5f2ec', tools: [{ n:'SUPABASE', m:'Sb' },{ n:'VERCEL', m:'V' },{ n:'AIRTABLE', m:'At' },{ n:'POSTGRES', m:'Pg' }] }, ]; return (
STACK

WE SPEAK
YOUR TOOLCHAIN.

No rip-and-replace. We compose around what you run — and bring the glue.

{groups.map((g, gi) => (
{g.name}
{g.tools.map((t) => (
{t.n}
))}
))}
); } const CO_STUDIES = [ { id: 'wattlift', client: 'WATTLIFT', m: 'W', region: 'FR', regionGroup: 'EU', title: 'OUTBOUND ENGINE FOR EV FLEET SALES', body: 'Built a bilingual outbound agent hitting fleet managers across France and Benelux. Replaced a 4-rep SDR team.', kpis: [['PIPELINE','+5.2×'],['CAC','−41%']] }, { id: 'hexus', client: 'HEXUS.AI', m: 'Hx', region: 'UK', regionGroup: 'UK', title: 'RESEARCH + ENRICHMENT AGENTS FOR GTM', body: 'Claude drafts the brief, n8n ships it to every AE before 9am stand-up.', kpis: [['TIME-TO-BRIEF','2 MIN'],['AE HOURS','−18/WK']] }, { id: 'leadzen', client: 'LEADZEN.AI', m: 'Lz', region: 'EU', regionGroup: 'EU', title: 'INBOUND QUALIFICATION + ROUTING', body: 'Agent-led qualification triaging 3K+ inbound/week, booking meetings, escalating edge cases.', kpis: [['RESPONSE','< 3 MIN'],['BOOK-RATE','+2.1×']] }, { id: 'terranconnect',client: 'TERRANCONNECT', m: 'Tc', region: 'EU', regionGroup: 'EU', title: 'PIPELINE INTELLIGENCE + ICP REFINEMENT', body: 'Weekly ICP re-scoring based on won/lost signals. Leadership finally trusts forecast.', kpis: [['WIN-RATE','+34%'],['FORECAST','92%']] }, { id: 'dbs', client: 'DBS BANK', m: 'DBS', region: 'APAC', regionGroup: 'APAC', title: 'ENTERPRISE LEAD OPS AT SCALE', body: 'Compliance-aware lead routing and enrichment across a multi-product portfolio.', kpis: [['MANUAL OPS','−62%'],['SLA HIT','99.1%']] }, ]; window.CO_STUDIES = CO_STUDIES; function CoCaseStudies() { const studies = CO_STUDIES; return (
SELECTED WORK

SHIPPED WITH TEAMS
IN EU · UK · APAC.

ALL CASE STUDIES
{studies.map((s, i) => { const big = i < 2; const span = big ? 'span 3' : 'span 2'; const borderR = (i === 0 || i === 2 || i === 3) ? '1px solid var(--co-line)' : 'none'; const borderB = i < 2 ? '1px solid var(--co-line)' : 'none'; return (
{s.client}
{s.region} · CASE {String(i+1).padStart(2,'0')}

{s.title}

{s.body}

{s.kpis.map(([k, v]) => (
{k}
{v}
))}
); })}
); } function CoStats() { const stats = [ ['€42M', 'PIPELINE GENERATED'], ['1.2M', 'LEADS / DAY'], ['< 72h', 'FIRST WORKFLOW SHIPPED'], ['47', 'GTM TEAMS OPERATING'], ]; return (
{stats.map(([v, k], i) => (
0 ? '1px solid rgba(10,10,10,0.2)' : 'none', paddingLeft: i > 0 ? 28 : 0 }}>
{v}
{k}
))}
); } function CoTestimonials() { const quotes = [ { q: 'ColdOcean shipped our first outbound agent in 9 days. It booked more meetings in month one than our SDR team did in Q1.', n: 'HEAD OF REVENUE', o: 'WATTLIFT', m: 'W' }, { q: 'The team thinks like operators, not vendors. They rewired our entire GTM stack without breaking a single integration.', n: 'VP GROWTH', o: 'HEXUS.AI', m: 'Hx' }, { q: 'We finally trust our pipeline. The signal-based workflows flag every account that matters and ignore the rest.', n: 'CRO', o: 'TERRANCONNECT', m: 'Tc' }, ]; return (
TESTIMONIALS

WHAT OPERATORS SAY.

{quotes.map((q, i) => (
"

{q.q}

{q.n}
{q.o}
))}
); } function CoCTA() { return (
LET'S BUILD

YOUR PIPELINE
DESERVES AGENTS.
WE SHIP IN TWO WEEKS.

30-minute strategy call. We'll sketch your first workflow, scope the stack, and show a demo that mirrors your motion.

hi@coldocean.io · AMSTERDAM · LONDON
); } function CoFooter() { return ( ); } window.CoStack = CoStack; window.CoCaseStudies = CoCaseStudies; window.CoStats = CoStats; window.CoTestimonials = CoTestimonials; window.CoCTA = CoCTA; window.CoFooter = CoFooter;