// ============================================================ // LANDING C — Modern · Bold · Black · subtle motion // ============================================================ const { useState: useStC } = React; // —— Nav (dark) function LpcNav({ onRequest }) { return ( ); } // —— Hero function HeroC({ onRequest, onWatch }) { return (
Early access Cohort 02 now open

Brand is how you show up.
Process is how you
do it consistently.

Process Builder is where service businesses get their best work out of their heads and into a system their whole team can follow. This takes real work. Once it is done, changing step 17 takes sixty seconds.

Built for owners who are building something · No credit card to apply
{/* Floating product stack */}
Role · Cover Designer
12 steps across 4 stages
{['Cover concept exploration', 'Cover refinement & approval', 'Pricing reconciliation', 'Launch handoff'].map((t, i) => (
{t}
))}
); } // —— Marquee function MarqueeC() { const items = [ 'For ops leaders', 'For founder-operators', 'For fractional COOs', 'For consulting partners', 'For publishers', 'For brokerages', 'For agencies', 'For studios', 'For professional services', ]; // duplicate for seamless loop const doubled = [...items, ...items]; return (
{doubled.map((it, i) => ( {it} ))}
); } // —— Problem section function ProblemC() { return (
Sound familiar?

You've tried to document your process before.
It didn't stick.

Not because you lacked discipline. Because a Google Doc isn't a system. Neither is a Notion page, a shared drive folder, or a consultant's slide deck. If any of these sound familiar, the tools have finally caught up.

We've doubled the team and somehow halved how it feels.

VO VP of Operations · Professional services

Onboarding takes six months because the playbook lives in three people's heads.

CO COO · Hybrid publishing

Every engagement runs differently, depending on who picked it up.

MC Managing Consultant · Ops advisory
); } // —— Product showcase function ProductC() { return (
The product

Not a document. A system.

Wikis go stale. Slides get archived. Process Builder is where your process actually lives, structured the way your team delivers work. Flo, the built-in AI agent, helps your senior people get what they know into the system, then walks new teammates through it without months of shadowing.

app.processbuilder.com / inicio / map filtering by tier: premium
); } // —— Benefits bento function BentoC() { return (
What changes

Repeatable. Refinable. Transferable.

{/* Big feature card */}
01 · Repeatable

Every client gets your best work.

Not the version that happens when the right person picks it up. Every engagement, every time, in the right order, with the right handoffs. The 2am Slack messages stop being how the work gets remembered.

Before Intake
During Production
After Launch
{/* Mid card — refinable */}
02 · Refinable

Change step 17. Just step 17.

When something needs updating, you update it in one place. The whole team sees it immediately. No version confusion, no hunting the right document.

62 %
Avg ramp-time cut
{/* Variants card */}
03 · Variants

One map. Every service tier.

Standard, premium, concierge. Each tier is a different set of steps, not a different document. Run them all from one place, and show only the work that applies.

Tier · Standard
Line edit · Copy edit
Tier · Premium
+ Developmental edit
Tier · Concierge
+ Daily standup
{/* Transferable card */}
04 · Transferable

The knowledge leaves your head.

Thirty years of expertise, locked in the founder's mind. When it's documented, a new hire can follow it. When you're ready to scale or sell, the business runs without you.

{Array.from({ length: 9 }).map((_, i) => (
{[0,1,2,3,4].map((j) => { // Manually pattern the cells so it looks like a real coverage grid w/ visible gaps. const filled = [ '11111','11110','11111', '11111','11111','01001', '11000','00000','00000' ]; const on = filled[i][j] === '1'; const gap = i >= 6 && j >= 1 && !on; // mark the late-phase missing role red return
; })}
S{i+1}
))}
); } // —— Stats strip function StatsC() { return (
~1wk

First phase mapped in an afternoon. Full process live in a week. Not six months.

62%

Average ramp-time reduction. New hires stop shadowing and start doing.

0·1

Source of truth. Your entire process on one map, not scattered across five documents.

); } // —— Final CTA function FinalC({ onRequest }) { return (
Now in early access

Build something worth owning.

A documented, transferable process is a business asset. It is what lets you scale without losing quality, onboard without six months of shadowing, and hand the business to someone else when the time comes. We are rolling out access in small cohorts so every team gets real attention from people who have lived this problem.

); } // —— FAQ function FaqC() { const items = [ { q: 'Is this for software companies or service businesses?', a: 'Service businesses: agencies, publishers, consultancies, brokerages, professional services. Any business where the quality of the work depends on who does it and how they do it. If your brand is how you show up, and your consistency varies by team member or engagement, this is for you.' }, { q: 'How long does this actually take to set up?', a: 'The first phase typically takes an afternoon. A complete 30-stage process takes about a week. This is not a six-month implementation. It is work you do once, then maintain as the business evolves. A process for a process.' }, { q: 'We have different service tiers. Will it handle that?', a: 'That is what variants are for. Each tier runs a different set of steps from the same map. Standard, premium, concierge, whatever your tiers are called. One process, multiple service shapes, no duplicate documents.' }, { q: 'We already document our process in Notion. Why Process Builder?', a: 'Because a Notion page is a document, not a system. It goes stale, gets edited by the wrong person, and is not connected to how your team actually works day to day. Process Builder is where the process lives. Your team logs in, references it, and Flo helps you keep it current.' }, { q: 'I am a consultant working with several clients. Can I use it that way?', a: 'Yes. Each client gets their own workspace, fully separate, and you can switch between them from the top of the app. A lot of fractional COOs and ops consultants use Process Builder as the thing they leave behind when the engagement ends.' }, { q: 'What does it cost?', a: 'Early-access cohorts are free for 90 days. After that, pricing is per workspace, scaled to team size. No usage fees, no per-step charges. We will send you the full number when you request access.' }, ]; return (
Frequently asked

Questions, before you ask them.

{items.map((it, i) => (
{it.q} +

{it.a}

))}
); } // —— Footer function LpcFooter() { return ( ); } // —— Top-level function LandingPageC() { const [modal, setModal] = useStC(false); const [videoOpen, setVideoOpen] = useStC(false); return (
setModal(true)} /> setModal(true)} onWatch={() => setVideoOpen(true)} /> setModal(true)} /> setModal(false)} /> setVideoOpen(false)} src="/landing/tour.mp4" />
); } Object.assign(window, { LandingPageC });