/* ============================================================ gp-plan.jsx — PLAN stage: master list + detail orchestration. The core audit surface. ============================================================ */ var { useState, useEffect, useMemo } = React; // ---- MASTER: day's plan grouped by strategy, with verdict dots ---- function PlanMaster({ decisions, selectedId, onSelect, summary }) { const groups = window.GP.STRATEGIES.map((s) => ({ strat: s, items: decisions.filter((d) => d.strategy_id === s.id), })); return (