{step === "grade" ? "Choose your standard" : step === "subject" ? "Choose your subject" : "Choose your chapter"}
{step === "grade"
? "For CBSE · Grades 6–12"
: step === "subject"
? "For Grade 10"
: "Grounded in your textbook"}
{/* options list (3-col grid for grades, list for subject/chapter) */}
{options.map((opt, i) => {
const isPick = i === pickIdx;
const lit = isPick && frame >= (step === "grade" ? CLICK1 : step === "subject" ? CLICK2 : CLICK3);
return (
{opt}
);
})}
{/* cursor + ripples */}