AI Humility & Self-Awareness ``` const canvas = document.getElementById('c'); const ctx = canvas.getContext('2d'); canvas.width = 800; canvas.height = 600; // background gradient function drawBG() { const grad = ctx.createLinearGradient(0,0,canvas.width,0); grad.addColorStop(0,'#1a1a30'); grad.addColorStop(1,'#282c48'); ctx.fillStyle = grad; ctx.fillRect(0,0,canvas.width,canvas.height); } // brain shape (abstract) function drawBrain(pulse) { ctx.save(); ctx.translate(canvas.width/2, canvas.height/2); ctx.scale(1.2,1); ctx.beginPath(); ctx.moveTo(-120,0); for(let i=0;i<6;i++){ const angle=i*Math.PI/3; ctx.quadraticCurveTo( -120+Math.cos(angle)*130, Math.sin(angle)*130, -120+Math.cos(angle+Math.PI/3)*130, Math.sin(angle+Math.PI/3)*130 ); } ctx.closePath(); ctx.fillStyle = '#444'; ctx.fill(); ctx.restore(); // pulse sphere (self-awareness) const radius = 30