/* global React */ /* ================================================================ sections-baseline.jsx — Phase 01 · Baseline Remote measurement kit delivered to each leader's home. Sits immediately after ActionLayer (3-phase overview) and before ProgrammeTimeline in the page flow. ================================================================ */ /* small line icons — 1.5px round stroke, matching the site's icon set */ function BaselineIcon({ k }) { const P = { ring: ( <> ), blood: ( <> ), glucose: ( ), gut: ( ), survey: ( <> ), brain: ( <> ), call: ( ), }; return ( ); } const KIT_ITEMS = [ { k: "ring", optional: false, title: "A wearable ring", desc: "Tracks sleep, heart-rate variability and recovery — worn passively for around two weeks. No action required beyond putting it on.", }, { k: "blood", optional: false, title: "An at-home blood panel", desc: "A focused clinical panel of the markers that matter most under sustained stress: cardiovascular (ApoB), metabolic (HbA1c), stress and recovery hormones (cortisol, testosterone), and inflammation (hsCRP). Simple finger-prick collection, posted back in prepaid packaging.", }, { k: "glucose", optional: true, title: "Continuous glucose sensor", desc: "A two-week read on how your body responds to food, stress and sleep — worn alongside the ring.", }, { k: "gut", optional: true, title: "Gut-health test", desc: "A simple at-home sample for a picture of your microbiome and its relationship to recovery and stress.", }, ]; const ONLINE_STEPS = [ { k: "survey", title: "Validated questionnaires", desc: "Stress, burnout, resilience and recovery — completed in your own time, at your own pace.", }, { k: "brain", title: "A short cognitive baseline", desc: "Around 15 minutes covering reaction time, working memory and focus. A clear starting point for the year ahead.", }, ]; function BaselineSection() { return (
{/* ---- section head ---- */}
01 · Baseline

Before we change anything, we measure everything.

Before the retreat, each leader receives a kit at home — a complete, objective picture of where they stand, gathered quietly over two to three weeks, asking almost nothing of your time.

{/* ---- full-width kit image ---- */}
The Pausa Baseline kit
{/* ---- two-col kit contents ---- */}
{/* left — what's in the kit */}
What's in the kit
    {KIT_ITEMS.map((item) => (
  • {item.title} {item.optional && Optional}

    {item.desc}

  • ))}
{/* right — online + human */}
Then two short steps online
    {ONLINE_STEPS.map((item) => (
  • {item.title}

    {item.desc}

  • ))}
{/* ---- principle callout ---- */}

Rich data, light touch. Almost all of it happens passively, at home, while we carry the logistics — the only thing on your calendar is one short call.

{/* ---- lower two-col: window + deliverable ---- */}
The measurement window

You wear and collect over about two to three weeks, so we capture how you really live — not a single snapshot on a single day.

What you receive

Your results become a clear personal map across the four dimensions — physical, mental, emotional, and purpose & values. Your facilitator studies it beforehand and walks you through it in person at the Reset, so the numbers become a conversation and a plan, not a dashboard you decode alone.

{/* ---- transition to Reset ---- */}
02 · Reset

By the time you arrive at the Reset, we already understand you — so the days together are spent on change, not paperwork.

); } Object.assign(window, { BaselineSection });