Skip to content
About Traxeno

Mission-driven micro-courses shaped by real news.

We turn current events into compact, practice-first learning experiences. Our promise: clarity, momentum, and retention—without fluff.

8–12 min modules
News-first, outcome-led
Focus retention checks
Modern editorial workspace with minimalist glass panels and soft light

Compact by design

Every lesson ties back to a real headline.

Focus streak: 0

Mission, Method, Values

We craft learning that respects time and deepens reasoning. Everything we ship is measurable, human, and bias-aware.

M

Mission

Help learners think with the news—not drown in it. We transform headlines into clear, applicable skills.

  • Outcome-first objectives
  • Bias awareness and sourcing
  • Time to value under 10 minutes
A

Approach

Narratives mapped to practical tasks. Each unit ends with a focus check to reinforce recall and transfer.

  • Micro-brief → Drill → Reflection
  • Interactive micro-quizzes
  • Progressive difficulty
V

Values

Clarity over hype. Empathy over ego. Evidence over noise. We question our assumptions openly.

  • Respect the learner’s time
  • Transparent editorial process
  • Measurable retention targets

Our editorial standard

We verify sources, declare uncertainties, and design for cognitive load. Every module ships with references and a scenario that reflects real-world tradeoffs.

Verification
3-source minimum
Clarity
Jargon-free writing
Retention
Focus check at end
Accessibility
Keyboard-first UX
Editorial checklist with clipboards and pen in glass mood
Team in collaboration discussing at a table

Request our syllabus snapshot

Get a one-page outline of our core modules and the learning outcomes behind them.

We’ll email a PDF snapshot. No spam.
`; const footerFallback = ` `; loadComponent('cmp-header', './header.html', headerFallback); loadComponent('cmp-footer', './footer.html', footerFallback); function trapFocus(container){ const focusable = 'a[href], button:not([disabled]), textarea, input, select, [tabindex]:not([tabindex="-1"])'; const nodes = ()=> $$(focusable, container).filter(el=> el.offsetParent !== null); function onKey(e){ if(e.key !== 'Tab') return; const list = nodes(); if(list.length===0) return; const first = list[0], last = list[list.length-1]; if(e.shiftKey){ if(document.activeElement === first || document.activeElement === container){ last.focus(); e.preventDefault(); } }else{ if(document.activeElement === last){ first.focus(); e.preventDefault(); } } } container.addEventListener('keydown', onKey); return ()=> container.removeEventListener('keydown', onKey); } const quizModal = $('#modal-quiz'); const quizSurface = $('#quiz-surface'); const quizIntro = $('#quiz-intro'); const quizPlay = $('#quiz-play'); const quizResult = $('#quiz-result'); const btnOpenQuiz = $('#btn-open-quiz'); const btnOpenQuiz2 = $('#btn-open-quiz-2'); const btnCloseQuiz = $('#btn-close-quiz'); const btnBeginQuiz = $('#btn-begin-quiz'); const btnQuizNext = $('#btn-quiz-next'); const btnQuizSkip = $('#btn-quiz-skip'); const quizTimerText = $('#quiz-timer-text'); const quizTimerBar = $('#quiz-timer-bar'); const quizQuestionEl = $('#quiz-question'); const quizForm = $('#quiz-form'); const quizFeedback = $('#quiz-feedback'); const btnQuizRetry = $('#btn-quiz-retry'); const btnQuizDone = $('#btn-quiz-done'); const quizProgressText = $('#quiz-progress-text'); const quizScoreText = $('#quiz-score'); const quizTimeText = $('#quiz-time'); const quizStreakText = $('#quiz-streak'); const quizBestText = $('#quiz-best'); const streakPill = $('#streak-pill'); const streakText = $('#streak-text'); const btnReadValues = $('#btn-read-values'); const btnQuizTheme = $('#btn-quiz-theme'); let removeTrap = null; let quizTimer = null; let quizRemaining = 20; let quizIndex = 0; let quizScore = 0; let quizStartedAt = 0; let selectedIndex = null; const quizQs = [ { q:'What is the core aim of Traxeno’s mission?', a:[ 'Publish the longest possible lectures', 'Help learners think with the news through compact, applicable lessons', 'Replace journalism with entertainment', 'Automate all study with zero human input' ], c:1, e:'We turn current events into compact, practice-first learning to help you think with the news.' }, { q:'Which sequence sums up our approach?', a:[ 'Drill → Reflection → Micro‑brief', 'Reflection only, no practice', 'Micro‑brief → Drill → Reflection', 'Random quiz questions without context' ], c:2, e:'We start with a micro‑brief, move to a targeted drill, and end with reflection.' }, { q:'Which value guides our editorial standards?', a:[ 'Clarity, empathy, and evidence', 'Speed over accuracy', 'Jargon as a mark of expertise', 'Omit sources to reduce friction' ], c:0, e:'Clarity over hype, empathy over ego, and evidence over noise.' } ]; function updateStreakUI(){ try{ const data = JSON.parse(localStorage.getItem('focusStreak')||'{}'); const streak = data.streak||0; if(streakText) streakText.textContent = 'Focus streak: '+streak; }catch(e){} } updateStreakUI(); function openQuiz(){ quizModal.classList.remove('hidden'); document.body.classList.add('j1y9e','y9s0k'); setTimeout(()=> quizSurface.setAttribute('data-state','open'), 10); removeTrap = trapFocus(quizSurface); $('#btn-begin-quiz').focus(); } function closeQuiz(){ quizSurface.setAttribute('data-state','closed'); quizModal.classList.add('hidden'); document.body.classList.remove('j1y9e','y9s0k'); if(removeTrap) removeTrap(); stopTimer(); showIntro(); } function showIntro(){ quizIntro.classList.remove('hidden'); quizPlay.classList.add('hidden'); quizResult.classList.add('hidden'); } function showPlay(){ quizIntro.classList.add('hidden'); quizPlay.classList.remove('hidden'); quizResult.classList.add('hidden'); } function showResult(){ quizIntro.classList.add('hidden'); quizPlay.classList.add('hidden'); quizResult.classList.remove('hidden'); } function renderQuestion(){ const it = quizQs[quizIndex]; quizQuestionEl.textContent = it.q; $$('#quiz-form [data-opt]').forEach((span,i)=>{ span.innerHTML = ''+it.a[i]+''; }); quizProgressText.textContent = 'Question '+(quizIndex+1); quizFeedback.classList.add('hidden'); selectedIndex = null; $$('input[name="opt"]', quizForm).forEach(el=>{ el.checked=false; el.disabled=false; }); startTimer(); } function startTimer(){ stopTimer(); quizRemaining = 20; quizTimerText.textContent = quizRemaining+'s'; quizTimerBar.style.width = '100%'; quizTimer = setInterval(()=>{ quizRemaining--; if(quizRemaining<=0){ quizTimerText.textContent = '0s'; quizTimerBar.style.width = '0%'; stopTimer(); lockAnswer(null, true); return; } quizTimerText.textContent = quizRemaining+'s'; quizTimerBar.style.width = (quizRemaining/20*100)+'%'; },1000); } function stopTimer(){ if(quizTimer){ clearInterval(quizTimer); quizTimer=null; } } quizForm.addEventListener('change', (e)=>{ const t = e.target; if(t && t.name==='opt'){ selectedIndex = parseInt(t.value,10); lockAnswer(selectedIndex,false); } }); function lockAnswer(sel, timeout){ stopTimer(); const it = quizQs[quizIndex]; $$('input[name="opt"]', quizForm).forEach(el=> el.disabled=true); const correct = it.c; if(sel===correct){ quizScore++; } $$('#quiz-form [data-opt]').forEach((span,i)=>{ span.classList.remove('border-ink-200','dark:border-ink-700'); if(i===correct){ span.classList.add('border-brand-500','bg-brand-50/60','dark:bg-brand-900/20'); }else if(i===sel && sel!==correct){ span.classList.add('border-red-400','bg-red-50/60','dark:bg-red-900/20'); }else{ span.classList.add('border-ink-200','dark:border-ink-700'); } }); quizFeedback.textContent = (sel===correct)?'Correct — '+it.e : (timeout?'Time up — ':'Not quite — ')+it.e; quizFeedback.classList.remove('hidden'); } function nextQuestion(){ if(quizIndex < quizQs.length-1){ quizIndex++; renderQuestion(); }else{ const total = quizQs.length; const spent = Math.max(1, Math.round((Date.now()-quizStartedAt)/1000)); quizScoreText.textContent = `${quizScore}/${total}`; quizTimeText.textContent = spent+'s'; updateStreak(spent); showResult(); } } function updateStreak(spent){ try{ const today = new Date(); today.setHours(0,0,0,0); const key='focusStreak'; const data = JSON.parse(localStorage.getItem(key)||'{}'); const lastAt = data.lastAt? new Date(data.lastAt) : null; let streak = data.streak||0; const best = data.best||0; const sameDay = lastAt && (new Date(lastAt).toDateString()===today.toDateString()); if(!sameDay){ streak += 1; } const bestNew = Math.max(best, streak); const info = {streak, best:bestNew, lastAt: today.toISOString(), lastScore:quizScore}; localStorage.setItem(key, JSON.stringify(info)); quizStreakText.textContent = streak; quizBestText.textContent = bestNew; updateStreakUI(); }catch(e){} } function beginQuiz(){ showPlay(); quizStartedAt = Date.now(); quizIndex=0; quizScore=0; renderQuestion(); } function openCookieBarIfNeeded(){ try{ const c = JSON.parse(localStorage.getItem('cookieConsent')||'null'); if(!c){ $('#bar-cookies').classList.remove('hidden'); } }catch(e){ $('#bar-cookies').classList.remove('hidden'); } } document.addEventListener('keydown', (e)=>{ if(!quizModal.classList.contains('hidden') && e.key==='Escape'){ closeQuiz(); } }); if(btnOpenQuiz) btnOpenQuiz.addEventListener('click', openQuiz); if(btnOpenQuiz2) btnOpenQuiz2.addEventListener('click', openQuiz); $('#btn-cookie-accept').addEventListener('click', ()=>{ localStorage.setItem('cookieConsent', JSON.stringify({essential:true, analytics:true, marketing:true, at:Date.now()})); $('#bar-cookies').classList.add('hidden'); }); $('#btn-cookie-reject').addEventListener('click', ()=>{ localStorage.setItem('cookieConsent', JSON.stringify({essential:true, analytics:false, marketing:false, at:Date.now()})); $('#bar-cookies').classList.add('hidden'); }); $('#btn-cookie-manage').addEventListener('click', ()=>{ $('#cookie-form')?.reset(); $('#modal-cookies').classList.remove('hidden'); setTimeout(()=> $('#cookie-surface').setAttribute('data-state','open'), 10); }); $('#btn-open-cookie').addEventListener('click', ()=>{ $('#modal-cookies').classList.remove('hidden'); setTimeout(()=> $('#cookie-surface').setAttribute('data-state','open'), 10); }); $('#btn-cookie-cancel').addEventListener('click', ()=>{ $('#cookie-surface').setAttribute('data-state','closed'); $('#modal-cookies').classList.add('hidden'); }); $('#cookie-form').addEventListener('submit', (e)=>{ e.preventDefault(); const analytics = $('#c-analytics').checked; const marketing = $('#c-marketing').checked; localStorage.setItem('cookieConsent', JSON.stringify({essential:true, analytics, marketing, at:Date.now()})); $('#cookie-surface').setAttribute('data-state','closed'); $('#modal-cookies').classList.add('hidden'); $('#bar-cookies').classList.add('hidden'); }); btnBeginQuiz.addEventListener('click', beginQuiz); quizSurface.addEventListener('click', (e)=>{ if(e.target===quizSurface.parentElement.parentElement || e.target===quizSurface.parentElement){ /* shield */ } }); btnCloseQuiz.addEventListener('click', closeQuiz); btnQuizNext.addEventListener('click', nextQuestion); btnQuizSkip.addEventListener('click', ()=> lockAnswer(null,false)); btnQuizRetry.addEventListener('click', beginQuiz); btnQuizDone.addEventListener('click', closeQuiz); btnQuizTheme.addEventListener('click', ()=>{ const isDark = document.documentElement.classList.contains('dark'); setTheme(isDark ? 'light':'dark'); }); $('#syllabus-form').addEventListener('submit', (e)=>{ e.preventDefault(); const name = $('#name'); const email = $('#email'); let valid = true; if(!name.value || name.value.trim().length<2){ $('#err-name').classList.remove('hidden'); valid=false; }else{ $('#err-name').classList.add('hidden'); } const re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if(!re.test(email.value)){ $('#err-email').classList.remove('hidden'); valid=false; }else{ $('#err-email').classList.add('hidden'); } if(!valid) return; $('#success-desc').textContent = 'We’ve sent a PDF snapshot to '+email.value+'.'; $('#modal-success').classList.remove('hidden'); setTimeout(()=> $('#success-surface').setAttribute('data-state','open'), 10); try{ const c = JSON.parse(localStorage.getItem('cookieConsent')||'{}'); if(c.analytics){ /* simulate analytics event */ localStorage.setItem('lastForm', JSON.stringify({at:Date.now(), email:email.value})) } }catch(e){} e.target.reset(); }); $('#btn-success-close').addEventListener('click', ()=>{ $('#success-surface').setAttribute('data-state','closed'); $('#modal-success').classList.add('hidden'); }); $('#nl-submit').addEventListener('click', ()=>{ const email = $('#nl-email').value.trim(); const msg = $('#nl-msg'); const re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if(!re.test(email)){ msg.textContent='Enter a valid email.'; msg.classList.remove('text-green-600'); msg.classList.add('text-red-600'); return; } msg.textContent='Subscribed. Check your inbox for confirmation.'; msg.classList.remove('text-red-600'); msg.classList.add('text-green-600'); $('#nl-email').value=''; }); if(btnReadValues){ btnReadValues.addEventListener('click', ()=>{ const el = document.getElementById('values'); el?.scrollIntoView({behavior:'smooth', block:'start'}); }); } document.getElementById('year').textContent = new Date().getFullYear(); openCookieBarIfNeeded(); const openQuizDelegates = () => { $$('[data-open-quiz]').forEach(b=> b.removeEventListener('click', openQuiz)); $$('[data-open-quiz]').forEach(b=> b.addEventListener('click', openQuiz)); } document.addEventListener('DOMContentLoaded', openQuizDelegates); $$('#quiz-form [data-opt]').forEach(span=>{ span.addEventListener('click', ()=>{ const val = span.getAttribute('data-opt'); const input = span.parentElement.querySelector('input'); input.checked = true; input.dispatchEvent(new Event('change', {bubbles:true})); }); }); document.addEventListener('keydown', (e)=>{ if(!quizModal.classList.contains('hidden') && quizIntro.classList.contains('hidden')===false && (e.key==='Enter' || e.key===' ')){ e.preventDefault(); beginQuiz(); } }); const observer = new MutationObserver(() => openQuizDelegates()); observer.observe(document.body, {subtree:true, childList:true});