/* Security, Why Hudson Pay, Global Reach (light, responsive). */ const { Card, Badge, Button, Icon } = window.HudsonPayDesignSystem_198a48; /* ---------- SECTION 5 — Security & Compliance ---------- */ function Security() { const { Container, Eyebrow, useIsMobile } = window.HPSite; const mobile = useIsMobile(); const items = [ { icon: "shield-check", t: "AML Compliance", d: "Continuous transaction monitoring and sanctions screening." }, { icon: "user", t: "KYC / KYB Verification", d: "Automated identity and business verification in 190+ markets." }, { icon: "lock", t: "Data Protection", d: "AES-256 at rest, TLS 1.3 in transit, regional data residency." }, { icon: "trending-down", t: "Risk Management", d: "Real-time fraud scoring and configurable risk rules." }, { icon: "building", t: "Enterprise Security", d: "SSO, SCIM, granular RBAC and full audit trails." }, { icon: "shield", t: "Regulatory Standards", d: "Licensed and registered across key global jurisdictions." }, ]; return (
Security & Compliance

Built for the most regulated institutions on earth

Compliance is engineered into every layer of the platform — not bolted on. Your risk, legal and ops teams get the controls and evidence they need by default.

SOC 2 Type II PCI-DSS L1 ISO 27001 GDPR
{items.map(it => (

{it.t}

{it.d}

))}
); } /* ---------- SECTION 6 — Why Hudson Pay ---------- */ function WhyHudson() { const { Container, Eyebrow, useIsMobile } = window.HPSite; const mobile = useIsMobile(); const items = [ { icon: "zap", t: "Faster Settlements", d: "Seconds, not days — even across borders.", stat: "< 3s" }, { icon: "trending-down", t: "Lower Fees", d: "Wholesale FX and transparent pricing.", stat: "0.2%" }, { icon: "globe", t: "Global Reach", d: "Local presence in every major corridor.", stat: "190+" }, { icon: "shield-check", t: "Enterprise Reliability", d: "Redundant rails with a 99.99% SLA.", stat: "99.99%" }, { icon: "user", t: "Dedicated Support", d: "Named relationship managers, 24/7.", stat: "24/7" }, { icon: "building", t: "Institutional Infrastructure", d: "Bank-grade architecture, audited.", stat: "Tier 1" }, ]; return (
Why Hudson Pay

The advantages compound at scale

{items.map(it => (
{it.stat}

{it.t}

{it.d}

))}
); } /* ---------- SECTION 7 — Global Reach ---------- */ function GlobalReach() { const { Container, Eyebrow, useIsMobile } = window.HPSite; const mobile = useIsMobile(); const corridors = [ ["New York", "London"], ["Singapore", "Frankfurt"], ["Dubai", "Mumbai"], ["São Paulo", "Lisbon"], ["Hong Kong", "Sydney"], ["Toronto", "Lagos"], ]; const regions = [ { r: "North America", c: "USD · CAD · MXN" }, { r: "Europe & UK", c: "EUR · GBP · CHF" }, { r: "Middle East", c: "AED · SAR · QAR" }, { r: "Asia Pacific", c: "SGD · HKD · JPY" }, { r: "Latin America", c: "BRL · MXN · CLP" }, { r: "Africa", c: "NGN · ZAR · KES" }, ]; return (
Global Reach

Local everywhere your business operates

One integration unlocks payment corridors across six continents, with in-region settlement and licensing.

{regions.map(rg => (
{rg.r}
{rg.c}
))}
Live Payment Corridors
{corridors.map(([a, b], i) => (
{a} {b}
))}
); } Object.assign(window, { HPParts: Object.assign(window.HPParts || {}, { Security, WhyHudson, GlobalReach }) });