// Custom gold-tinted feature icons for WuClock capability cards. // Stroke 1.5, gold (#D4A852), 32x32 viewBox. const GOLD = "#D4A852"; const GOLD_LITE = "#E4BE6A"; // 1. Clock with check badge — "Medí" const FeatClockCheck = ({ size = 56 }) => ( {/* main clock */} {/* check badge */} ); // 2. Brain with sparkle — "Entendé" const FeatBrainSpark = ({ size = 56 }) => ( {/* left lobe */} {/* right lobe */} {/* sulcus hint */} {/* sparkle */} ); // 3. Lotus flower — "Actuá" const FeatLotus = ({ size = 56 }) => ( {/* center petal */} {/* mid left */} {/* mid right */} {/* outer left */} {/* outer right */} {/* water line */} ); Object.assign(window, { FeatClockCheck, FeatBrainSpark, FeatLotus });