diff --git a/index.html b/index.html
index 22bc051..2ad271f 100644
--- a/index.html
+++ b/index.html
@@ -442,13 +442,13 @@ async function updateWeather() {
updateWeather();
setInterval(updateWeather, 60000); // every minute
-// === CLAUDE BUDGET PACE — only show when usage > 75% ===
+// === CLAUDE BUDGET PACE — always visible ===
async function updateClaudeUsage() {
const el = document.getElementById('claude-usage');
try {
const r = await fetch('/api/claude-usage');
const d = await r.json();
- if (d.usage != null && d.usage > 75) {
+ if (d.pace != null && d.timePct > 0) {
el.textContent = `pace ${d.pace}%`;
el.title = `Budget pace: ${d.timePct}% of week elapsed, ${d.usage}% used`;
el.className = d.pace < 90 ? 'good' : d.pace <= 100 ? 'ok' : 'crit';
diff --git a/tts/8e21f77d-e724-4dae-a4cd-03bcb66b13b5.mp3 b/tts/8e21f77d-e724-4dae-a4cd-03bcb66b13b5.mp3
deleted file mode 100644
index e19fc19..0000000
Binary files a/tts/8e21f77d-e724-4dae-a4cd-03bcb66b13b5.mp3 and /dev/null differ
diff --git a/tts/eca56cda-3274-40ca-b9ab-c909ffd59679.mp3 b/tts/eca56cda-3274-40ca-b9ab-c909ffd59679.mp3
deleted file mode 100644
index 486f542..0000000
Binary files a/tts/eca56cda-3274-40ca-b9ab-c909ffd59679.mp3 and /dev/null differ