/* global React */ const { useRef } = React; /* ---------- tiny inline marks (simple geometry only) ---------- */ function Tick({ cls = "tick" }) { return ( ); } /* minimal abstract glyphs — strokes / basic shapes only */ const PILLAR_GLYPHS = { leadership: ( ), hospitality: ( ), biomarker: ( ), method: ( ), csrd: ( ), community: ( ), }; /* small icon marks for the floating cards */ function FcIcon({ kind }) { if (kind === "biomarker") return ; if (kind === "calendar") return ; return ; } /* ============================ HERO ============================ */ function Hero({ onBook }) { return (
Exclusive beta — 3 pilot spots remaining at our market-entry rate for Portugal-based companies.

A performance wellbeing company for founders and leaders.

We combine comprehensive biomarker evidence, a 12-month community-based integration of healthy routines, and immersive nature retreats to help you sustain peak performance without compromising health and happiness.

CSRD S1-14 compatible. No obligation.
Twice a year
Biomarkers · 11 systems
Reporting
CSRD S1-14 ready
12-month programme
Routine integration

Yaro

Co-founder & CEO

“Pausa was born from a personal mission: that the most effective way to create positive impact at scale is to protect the people building it. Support one founder, and the effect flows through their entire team, company and community.”

Our sanctuary, 30 minutes from Lisbon
); } /* ============================ ROI ============================ */ function ROI() { return (
The cost of inaction

Unmanaged stress is already on your balance sheet.

What you invest in Pausa is a fraction of what you lose to unmanaged stress and cognitive decline.

€10–20k

Annual cost per executive in lost productivity due to cognitive fatigue.

59 vs 36

Days of productivity lost per year — poor versus excellent employer support.

82%

Of CEOs report positive ROI on structured wellbeing programs.

); } /* ============================ PILLARS ============================ */ const PILLARS = [ { g: "leadership", t: "Leadership focus", d: "Built specifically for the psychology and pressures of founders — not generic HR workforces." }, { g: "hospitality", t: "Hospitality DNA", d: "Nature-immersive experiences and multi-day offline resets at our exclusive sanctuary near Lisbon (30 mins) are core to the program." }, { g: "biomarker", t: "Biomarker-driven", d: "A full check-up of your body, twice a year. Not just blood — blood, urine and saliva across 11 body systems. The full picture of how you're doing right now." }, { g: "method", t: "Science-based methodology", d: "At the foundation of Pausa lies an integrated three-pillar scientific framework: neuroscience, behavioural science, and evidence-based wellbeing protocols." }, { g: "csrd", t: "CSRD-compatible", d: "Impact reporting at a fair price, mapping directly to ESRS S1-14 for your ESG requirements." }, { g: "community", t: "Community", d: "Elite peer-to-peer accountability with other high-performing leaders walking the same path." }, ]; function Pillar({ p, i }) { const ref = useRef(null); const raf = useRef(0); const onMove = (e) => { const el = ref.current; if (!el) return; const r = el.getBoundingClientRect(); const x = e.clientX - r.left; const y = e.clientY - r.top; if (raf.current) return; raf.current = requestAnimationFrame(() => { raf.current = 0; el.style.setProperty("--mx", x + "px"); el.style.setProperty("--my", y + "px"); }); }; return (
{String(i + 1).padStart(2, "0")}

{p.t}

{p.d}

{PILLAR_GLYPHS[p.g]}
); } function Pillars() { return (
Our differentiators

Six pillars that connect the mind, body and community.

{PILLARS.map((p, i) => ( ))}
); } Object.assign(window, { Hero, ROI, Pillars, Tick });