// Auri — Resume Aura mascot. Reacts to score. // score 0-100 → expression. Returns inline SVG. function Auri({ score = 82, size = 120, style = {} }) { // mood from score const mood = score >= 85 ? 'ecstatic' : score >= 70 ? 'happy' : score >= 50 ? 'neutral' : score >= 30 ? 'worried' : 'cooked'; const face = { ecstatic: { mouth: 'smileBig', eyes: 'sparkle', tint: '#fae14b' }, happy: { mouth: 'smile', eyes: 'open', tint: '#b7f0cd' }, neutral: { mouth: 'flat', eyes: 'open', tint: '#ffffff' }, worried: { mouth: 'worry', eyes: 'worry', tint: '#ffd0c4' }, cooked: { mouth: 'shocked', eyes: 'x', tint: '#ff8a7a' }, }[mood]; const id = React.useId(); return (