function Pipeline() { const steps = [ { n: '01', title: 'Transaction', body: "Your processor sends the payment payload — customer, amount, destination — over a single REST call.", tag: 'processor API' }, { n: '02', title: 'Enrichment', body: 'GeoIP, timezone, device fingerprint, velocity windows — resolved in-process, no external hops.', tag: 'geo · velocity' }, { n: '03', title: 'Rules + AI', body: 'Deterministic rules and behavioral models run in parallel. Anomaly score combines with rule weights.', tag: 'behavioral · anomaly' }, { n: '04', title: 'Decision', body: 'You receive APPROVE / REVIEW / BLOCK with the score and the rules that fired — all signed.', tag: 'verdict + audit' }, ]; return (
02 · INTEGRATION

Plug into any
payment processor.

Two integration modes: a synchronous push-API called before coin movement, or a webhook callback after. HMAC-signed, idempotent retries. No changes to your core payment logic.

{steps.map((s) => (
→ STEP {s.n}

{s.title}

{s.body}

{s.tag}
))}
Pipeline executes as a single in-process call in milliseconds, with no external API dependencies in the hot path.
); }