Wait 24 hours before executing. Emotional urgency often subsides. If you still believe this action is correct after 24 hours, execute. If not, reconsider.' : 'Espera 24 horas antes de execute. Emotional urgency often subsides. Si todavía believe correct después de 24 horas, execute. Si no, reconsider.'}

`; } else { // Show current question const q = QUESTIONS[state.step]; document.getElementById('tree-container').innerHTML = ` ${pathTrail}
${lang === 'en' ? `Question ${state.step + 1} of ${QUESTIONS.length}` : `Pregunta ${state.step + 1} de ${QUESTIONS.length}`}

${lang === 'en' ? q.q_en : q.q_es}

`; } } window.answer = function (choice) { state.path.push(choice); const q = QUESTIONS[state.step]; if (choice === 'yes') { state.actionIdx = state.step; state.step = -2; } else { if (q.no === 'next') { state.step++; } else { state.step = -1; } } saveState(); render(); }; window.restart = function () { state.step = 0; state.path = []; state.actionIdx = undefined; saveState(); render(); }; function wire() { loadState(); render(); document.addEventListener('tff:langchange', render); } if (document.readyState === 'loading') document.addEventListener('DOMContentLoaded', wire); else wire(); })();