By creating an account you agree to the Terms, Privacy, and AUP.
>)}
);
};
// ---------- Onboarding overlay ----------
const Onboarding = ({ onDone }) => {
const [step, setStep] = useState(0);
const steps = [
{ t:"Welcome to Persona.", d:"This is a tour. 90 seconds. You can skip.", c:"" },
{ t:"Step 1 — Brief", d:"Describe a person in your own words. Persona drafts the Soul layer first — the unspoken stuff.", c:"create" },
{ t:"Step 2 — Pipeline", d:"Six steps. You can watch each one stream. Audit is a separate Opus call that judges the whole persona.", c:"create" },
{ t:"Step 3 — Edit", d:"Lock layers you like. Cascade changes downward. Refine with one click.", c:"detail" },
{ t:"Step 4 — Chat", d:"Talk to your persona. We measure voice drift in real time. You'll see it on the right.", c:"chat" },
{ t:"You're set.", d:"Generate your first persona, or browse the marketplace.", c:"" },
];
const s = steps[step];
return (