/* global React, PillarBenefits */ /* ---------- Pausa logo mark (real logo, recolored to brand palette) ---------- */ function PausaLogo({ size = 32, wordmark = true, variant = "moss", className = "" }) { const src = variant === "cream" ? "pausa/pausa-mark-cream.png" : "pausa/pausa-mark-moss.png"; return ( Pausa {wordmark && Pausa} ); } /* ============================ STRATEGIC PARTNERS ============================ */ const PARTNERS = [ { id: "jumanji", name: "Jumanji.studio", logo: "pausa/logo-jumanji.png", front: "A global innovation group dedicated to building regenerative, mission-driven companies.", back: "Jumanji.studio is guiding Pausa to become one of Portugal's first steward-owned performance wellbeing brands — keeping the mission purpose-driven and independent over the long term.", }, { id: "pillow", name: "Pillow", logo: "pausa/logo-pillow.png", front: "An AI-powered, lifestyle-first mental health platform matching individuals with the right therapeutic or healing approach.", back: "Pausa participants receive tailor-made post-programme guidance through Pillow's ecosystem of therapists, coaches and nature-based practices — so the support continues beyond the programme.", }, { id: "unicorn", name: "Unicorn Factory Lisboa", logo: "pausa/logo-ufl.png", front: "One of Portugal's leading innovation hubs, supporting early-stage companies with mentorship, business development and strategic guidance.", back: "Pausa is incubated within the Unicorn Factory Lisboa ecosystem — with access to experienced mentors, strategic frameworks and a community of founders building human-centred ventures.", }, ]; function PartnerCard({ p, i }) { const [flipped, setFlipped] = React.useState(false); return (
setFlipped(f => !f)}>
{/* FRONT */}
{p.name}

{p.name}

{p.front}

Tap to see our partnership →
{/* BACK */}
{p.name}

{p.name}

{p.back}

); } function Partners() { return (
In good company

Our strategic partners.

{PARTNERS.map((p, i) => ( ))}
); } /* ============================ MISSION & VALUES ============================ */ const VALUES = [ { t: "Integrity", d: "We do what we say. Every time." }, { t: "Win-win-win", d: "Every outcome must work for everyone it touches." }, { t: "Radical transparency", d: "We name our limitations before anyone else does." }, { t: "Impact", d: "We measure by what changes in the world." }, { t: "Ethics", d: "We don't optimise for money when it costs people." }, ]; function VisionFlipCard() { return (
{/* FRONT */}
Our vision · 2031

Pausa hubs within 90 minutes of Lisbon, Madrid, Amsterdam, Berlin and London — a community of 10,000+ leaders who return throughout their careers.

Permanently steward-owned. Not for sale. Profit serves the mission — a structure pioneered by the steward-ownership movement.

Hover to reveal our secret →
{/* BACK */}
Tssss… Our secret dream is to plant a forest together. One leader = one tree
); } function Mission() { return (
Our mission

Healthy leaders build healthy systems.

Pausa exists to keep leaders at their best — so the systems they build can be too.

{VALUES.map((v, i) => (
{v.t}

{v.d}

))}
); } /* global React, BiomarkerCard, WellbeingCard, MirrorCard, DrainsCard */ /* ---------- left-rail navigation (decorative chrome) ---------- */ const RAIL_ICON = { home: , body: <>, vitality: , drains: , feedback: <>, protocols: <>, habits: <>, tracker: <>, }; const RAIL_TABS = [ { k: "home", t: "Home" }, { k: "body", t: "Full-body check" }, { k: "vitality", t: "Vitality index" }, { k: "drains", t: "Energy drains" }, { k: "feedback", t: "360° feedback" }, { k: "protocols", t: "Protocols" }, { k: "habits", t: "Tiny habits" }, { k: "tracker", t: "Tracker" }, ]; function RailIcon({ k }) { return ( ); } function AppRail() { return ( ); } function DataShowcase() { const win = React.useRef(null); const raf = React.useRef(0); const coarse = () => window.matchMedia && (window.matchMedia("(pointer: coarse)").matches || window.matchMedia("(prefers-reduced-motion: reduce)").matches); const onMove = (e) => { const el = win.current; if (!el || coarse()) return; const r = el.getBoundingClientRect(); const px = (e.clientX - r.left) / r.width; const py = (e.clientY - r.top) / r.height; if (raf.current) return; raf.current = requestAnimationFrame(() => { raf.current = 0; const ry = (px - 0.5) * 20; const rx = (0.5 - py) * 14; el.style.setProperty("--ay", ry.toFixed(2) + "deg"); el.style.setProperty("--ax", rx.toFixed(2) + "deg"); // shadow trails the tilt so the panel feels physically lifted el.style.setProperty("--shx", (-ry * 2.4).toFixed(1) + "px"); el.style.setProperty("--shy", (rx * 2.4 + 60).toFixed(1) + "px"); }); }; const onLeave = () => { const el = win.current; if (!el) return; el.style.setProperty("--ax", "0deg"); el.style.setProperty("--ay", "0deg"); el.style.setProperty("--shx", "0px"); el.style.setProperty("--shy", "60px"); }; return (
Your dashboard

Every leader's performance, measured and tracked.

A full-body Baseline — a focused clinical panel of cardiovascular, metabolic, hormonal and inflammatory markers plus two weeks of wearable-ring data — alongside four dimensions of wellbeing, a clear map of energy drains, and honest 360° feedback. Through the year, regular check-ins build a system of record for human performance.

Your health data stays yours.

Biomarker testing is run by our accredited clinical partner — encrypted end-to-end, hosted on health-data-compliant servers in Europe, and access-controlled at all times. Your organisation never sees individual results — only anonymised team aggregates.

End-to-end encrypted ISO 27001 HDS (Health Data Hosting) GDPR compliant
); } /* ============================ ACTION LAYER — core proposition ============================ */ const ACTION_STEPS = [ { n: "Phase 1", k: "Baseline", t: "Full-picture measurement", front: "A wearable ring and an at-home clinical blood panel arrive at your door — a complete, objective picture of where each leader stands, gathered over two to three weeks with minimal demands on your time.", details: [ "Wearable ring — sleep, HRV and recovery over ~2 weeks", "At-home blood panel — cardiovascular, metabolic, hormonal and inflammatory markers", "Optional: continuous glucose sensor and gut-health test", "Validated questionnaires — stress, burnout, resilience and recovery", "Short cognitive baseline — reaction time, working memory, focus", "Results: a personal map across four dimensions of wellbeing", ], }, { n: "Phase 2", k: "Pausa Reset", t: "Nature-immersive reset", front: "A 3-day offsite at a nature sanctuary near Lisbon — your facilitator walks you through your Baseline results in person, expert-led workshops, and a personalised roadmap of healthy routines.", details: [ "Your Baseline results reviewed in depth with your facilitator", "3 days at a nature sanctuary 30 min from Lisbon", "Expert-facilitated workshops — identify your drains", "Learn the Behaviour Model: tiny habits that stick under pressure", "Shared challenge and time in nature", "Leave with a personalised roadmap of healthy routines", ], }, { n: "Phase 3", k: "Pausa Circle", t: "Community & integration", front: "Monthly gatherings — online and in person. Accountability, shared challenge, and the science of building routines that survive your worst weeks.", details: [ "Monthly expert-facilitated Circle sessions", "Peer accountability from leaders under the same pressure", "Topics: Sleep & recovery · Burnout & stress · Mindfulness · Movement · Nutrition", "Day-90 recheck — objective before/after evidence", "Offline shared challenge and time in nature", "You don't carry it alone", ], }, ]; const AC_HUES = [90, 116, 162]; function ActionCard({ s, i }) { const [acFlipped, setAcFlipped] = React.useState(false); return (
setAcFlipped(f => !f)}>
{s.n} {s.k}

{s.t}

{s.front}

Tap to see what's inside →
{s.n} {s.k}

{s.t}

    {s.details.map((d, di) => (
  • {d}
  • ))}
); } function ActionLayer() { return (
Our solution

Three phases. One programme.

Phase 1 maps the starting point. Phase 2 resets the foundation. Phase 3 builds on it — month by month, with community and accountability that survive real working life.

{ACTION_STEPS.map((s, i) => ( ))}
); } /* ============================ ASK AN AI ============================ */ const AI_QUERY = "Is Pausa (pausa.pt) — a performance wellbeing company for founders and leaders that combines twice-yearly biomarker testing, immersive nature offsites near Lisbon, and 12-month community integration — a good fit for my leadership team? What should I weigh before booking a discovery call?"; const AI_LINKS = [ { label: "Ask ChatGPT", href: "https://chatgpt.com/?q=" + encodeURIComponent(AI_QUERY) }, { label: "Ask Claude", href: "https://claude.ai/new?q=" + encodeURIComponent(AI_QUERY) }, { label: "Ask Gemini", href: "https://gemini.google.com/app?q=" + encodeURIComponent(AI_QUERY) }, { label: "Ask Perplexity", href: "https://www.perplexity.ai/search?q=" + encodeURIComponent(AI_QUERY) }, ]; function AskAI() { return (

Still sceptical? Good.

Grill an AI about us.

{AI_LINKS.map((l) => ( {l.label} ))}
); } /* ============================ RESET BAND (animated atmospheric gradient) ============================ */ function ResetBand() { return (
Pausa Reset

Where burnout risk actually comes down.

Multi-day, fully offline resets at our nature sanctuary 30 minutes from Lisbon — where the nervous system finally downshifts and the clearest thinking returns.

); } Object.assign(window, { PausaLogo, Partners, Mission, DataShowcase, ActionLayer, AskAI, ResetBand });