/* global React */ /* ---------- 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", body: [ <>Jumanji.studio is a global innovation group dedicated to building regenerative, mission-driven companies., <>They are guiding Pausa to become one of Portugal's first steward-owned performance wellbeing brands — keeping our mission purpose-driven and independent over the long term., ], }, { id: "pillow", name: "Pillow", logo: "pausa/logo-pillow.png", body: [ <>Pillow is an AI-powered, lifestyle-first mental health platform that matches individuals with the therapeutic or healing approach best suited to their needs., <>Pausa participants receive tailor-made post-programme guidance through Pillow's ecosystem of therapists, coaches and nature-based practices., ], }, { id: "unicorn", name: "Unicorn Factory Lisboa", logo: "pausa/logo-ufl.png", body: [ <>Unicorn Factory Lisboa is one of Portugal's leading innovation hubs, supporting early-stage companies with mentorship, business development and strategic guidance., <>Pausa is incubated within their ecosystem, with access to experienced mentors, strategic frameworks and a community of founders building human-centred ventures., ], }, ]; function Partners() { return (
In good company

Our strategic partners.

{PARTNERS.map((p, i) => (
{p.name}

{p.name}

{p.body.map((para, j) =>

{para}

)}
))}
); } /* ============================ MISSION & VALUES ============================ */ const VALUES = [ { t: "Integrity", d: "We do what we say. Every time." }, { t: "Simplicity", d: "One clear sentence over three impressive ones." }, { 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 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}

))}
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, never the other way around — a structure pioneered by the steward-ownership movement.

); } /* 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() { return (
What you'll actually see

Your whole picture, made legible.

Blood, urine and saliva across 11 body systems, four dimensions of wellbeing, a clear map of your energy drains, and honest 360° feedback — tracked over time and turned into the few actions that matter.

); } /* ============================ 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 retreats 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 Perplexity", href: "https://www.perplexity.ai/search?q=" + encodeURIComponent(AI_QUERY) }, ]; function openExternal(e, href) { e.preventDefault(); const w = window.open(href, "_blank", "noopener,noreferrer"); if (!w) { // popup blocked (e.g. inside a sandboxed preview) — escape the frame try { window.top.location.href = href; } catch (_) { window.location.href = href; } } } function AskAI() { return (

Still not sure Pausa is right for your team?

Grill an AI about us

{AI_LINKS.map((l) => ( openExternal(e, l.href)}>{l.label} ))}
); } /* ============================ RESET BAND (animated atmospheric gradient) ============================ */ function ResetBand() { return (
The reset

Some of the most important work happens offline.

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, AskAI, ResetBand });