// Inline lucide-style icons — currentColor stroke
const ArrowUpRight = ({ className = "h-5 w-5" }) => (
);
const Play = ({ className = "h-4 w-4" }) => (
);
// 28x28 outline icons for stat cards
const ClockIcon = ({ className = "h-7 w-7" }) => (
);
const GlobeIcon = ({ className = "h-7 w-7" }) => (
);
// Material-style filled icons for capability cards
const ImageIcon = ({ className = "h-6 w-6" }) => (
);
const MovieIcon = ({ className = "h-6 w-6" }) => (
);
const LightbulbIcon = ({ className = "h-6 w-6" }) => (
);
Object.assign(window, {
ArrowUpRight,
Play,
ClockIcon,
GlobeIcon,
ImageIcon,
MovieIcon,
LightbulbIcon,
});