/* CX Defense — Home page content. Uses shared chrome from window (chrome.jsx). In production these sections compose the DS primitives from window.CXDefenseDesignSystem_*. */ const { Nav, Rule, Footer } = window; function Hero() { return (
Cybersecurity Engineering · Remote-First · Worldwide

Security that holds when everything else is under pressure

CX Defense designs, builds, and defends secure digital infrastructure — networks, data, applications, and the people who depend on them.

From network architecture and traffic analysis to data protection, compliance, and threat intelligence — we work where the depth matters. Quietly, precisely, and to a standard most never see.

Request a Consultation
Network defense Data protection Compliance engineering Threat intelligence
); } const CAPS = [ ['01', 'Network Security Engineering', 'Firewall architecture, segmentation, VPN and zero-trust access, encrypted transport, and deep traffic analysis. We design networks that assume hostility — and stay calm under it.'], ['02', 'Data & Application Protection', 'Web application hardening, encryption at rest and in transit, secure virtualization, and infrastructure built so a single failure never becomes a breach.'], ['03', 'Compliance & Threat Intelligence', 'GDPR and regulatory compliance engineering, digital risk assessment, and intelligence-led investigation of the threats that actually face your organisation.'], ]; function Disciplines() { return (
What We Do
Three disciplines. One standard.

We engineered our practice so the layers never lose sight of each other. Network defense, data protection, and intelligence are not separate problems — they are the same problem viewed from different depths.

{CAPS.map(([n, title, body]) => (
{n}

{title}

{body}

))}
Explore All Services
); } function Split({ id, img, flip, eyebrow, title, paras, cta, href }) { const image =
; const text = (
{eyebrow}

{paras.map((p, i) =>

{p}

)} {cta}
); return (
{flip ? <>{text}{image} : <>{image}{text}}
); } const PROC = [ ['I', 'Brief', 'Tell us what you run, what worries you, and what a good outcome looks like. One conversation is usually enough to scope it.'], ['II', 'Assess', 'We map your architecture, traffic, data flows, and exposure — and tell you plainly what we find, including what is already fine.'], ['III', 'Engineer', 'We design and implement the fix: architecture, configuration, hardening, controls. Documented so your team owns it afterwards.'], ['IV', 'Defend', 'Ongoing monitoring, intelligence, and advisory if you want it — or a clean handover if you do not. Either way, you are stronger.'], ]; function Process() { return (
Approach
How an engagement works
No bloated discovery phases. No software you didn't ask for. No meetings without a purpose.
{PROC.map(([n, title, body]) => (
{n}

{title}

{body}

))}
); } const FACTS = [ ['Defense in depth', 'Network, data, application, and human layers engineered together'], ['Zero trust', 'Architecture principles applied to every engagement — including our own'], ['GDPR & beyond', 'Compliance engineered into infrastructure, not bolted on'], ['Remote-first', 'Senior engineering talent, delivered worldwide'], ]; function Why() { return (
Why CX Defense

Engineers first, consultants second

We don't sell reports that describe problems — we build the systems that remove them. Every recommendation we make is one we're prepared to implement, configure, and stand behind in production.

Depth over breadth

We deliberately keep our practice narrow: networks, data protection, compliance, and intelligence. Within that territory, we go deeper than generalist firms can — because that's all we do.

Intelligence in the blood

Our roots are in digital investigation and OSINT. We've studied how attackers find their targets, so the defenses we build start from how you actually look from the outside.

{FACTS.map(([num, label]) => (
{num}
{label}
))}
); } const POSTS = [ ['Network Security · June 2026', 'Zero trust is an architecture, not a product you can buy', 'Trust isn\u2019t removed by a licence key — it\u2019s removed by design decisions: segmentation that assumes breach, identity at every boundary, access that expires.', '8 min read · Essay'], ['Compliance · May 2026', 'GDPR in production: retention policies that actually delete', 'Most retention policies live in a PDF while the data lives forever. Engineering deletion as a system behaviour is what regulators actually accept.', '6 min read · Field Note'], ['Intelligence · May 2026', 'Your attack surface is what the attacker sees', 'Asset registers describe the network you think you have. Reconnaissance reveals the one you actually expose — and the gap is where defense begins.', '7 min read · Field Note'], ]; function Insights() { return (
Insights
Notes from the practice
What we learn building and defending real infrastructure — written plainly, without vendor noise.
{POSTS.map(([meta, title, body, foot]) => (
{meta}

{title}

{body}

{foot}
))}
All Insights
); } function HomeCTA() { return (
Start a conversation

The ocean is deep. So are we.

Tell us what you're protecting and what keeps you up at night. Every conversation is confidential from the first message.

Request a Consultation
Secure contact · No obligation · Confidential
); } function App() { return (
); } ReactDOM.createRoot(document.getElementById('root')).render();