// Wander โ Onboarding (3-slide intro)
function Onboarding({ onDone, dense }) {
const [step, setStep] = React.useState(0);
const slides = [
{ art: , title: 'Tours that find you.', body: "Wander knows where you're standing. Walk anywhere and the right story plays at the right moment." },
{ art: , title: 'Free starts. Premium goes deep.', body: 'Free tours of every neighbourhood. Pro tours add hidden gems, video, AR overlays, and a dash of mischief.' },
{ art: , title: 'Singapore is the demo.', body: "We're live in 47 cities. Singapore's ready when you are โ Marina Bay or a hawker centre, your call." },
];
const s = slides[step];
const last = step === slides.length - 1;
return (