eudai. telos ← Back to eudai.ai
Organizational Clarity

Get your leadership team to one answer.

Six questions, drawn from the discipline of organizational health, that a leadership team has to answer the same way. Work through them here and walk away with a one-page playbook you can put in front of the whole company.

We'll email your playbook here, and you can download it at the end.
1 / 6
Your playbook is ready.
Your clarity playbook
Organizational clarity
The six answers, in one place.
Next step
Clarity is the input. Traction is the work.
Once the team agrees on these answers, eudai turns them into the positioning, narrative, and go-to-market that make the market believe them too.
Book a call →
'; } function download(filename, content, type){ const blob=new Blob([content],{type}); const url=URL.createObjectURL(blob); const a=document.createElement('a'); a.href=url; a.download=filename; document.body.appendChild(a); a.click(); document.body.removeChild(a); setTimeout(()=>URL.revokeObjectURL(url),1000); } function slug(){ return ((document.getElementById('company').value||'clarity').trim().toLowerCase().replace(/[^a-z0-9]+/g,'-').replace(/^-|-$/g,'')||'clarity'); } function downloadPlaybook(){ download(slug()+'-clarity-playbook.html', playbookHTML(), 'text/html'); } function downloadText(){ download(slug()+'-clarity-playbook.txt', playbookText(), 'text/plain'); } function sendResults(){ const company=(document.getElementById('company').value||'').trim(); const email=(document.getElementById('email').value||'').trim(); const confirm=document.getElementById('confirm-text'); confirm.innerHTML="We've sent your clarity playbook to "+(email||'your inbox')+". Download a copy below."; if(!validEmail(email)) return; const data=new FormData(); data.append('company', company||'Not provided'); data.append('email', email); data.append('_replyto', email); data.append('_subject', 'telos clarity playbook — '+(company||email)); data.append('playbook', playbookText()); try { fetch('https://formspree.io/f/'+FORMSPREE_ID,{method:'POST',headers:{Accept:'application/json'},body:data}).catch(()=>{}); } catch(e){} } function restart(){ document.getElementById('company').value=''; document.getElementById('email').value=''; const hint=document.getElementById('intro-hint'); hint.textContent="We'll email your playbook here, and you can download it at the end."; hint.classList.remove('error'); showScreen('s-intro'); } document.getElementById('email').addEventListener('keydown',e=>{ if(e.key==='Enter') start(); });