Sorqen Ledger Institute

About the institute

Good financial education should make decisions easier to examine.

Sorqen Ledger Institute was created for learners who want structure, context, and practical language instead of noise. We teach frameworks that can be adapted to different households, goals, and seasons of life.

Our story

Our first lessons began as small workshops for people who had plenty of financial questions but no shared vocabulary for discussing them.

We refined those workshops into short, focused courses with exercises, review prompts, and plain-English explanations. Today our library covers budgeting, credit, savings, investing fundamentals, and household planning.

Our mission

To help people build the knowledge and confidence to ask better questions, compare options, and make informed personal finance decisions.

How we work

Context before conclusions

We explain assumptions and trade-offs before presenting a framework.

Practice over performance

Exercises are built around repeatable habits, not impressive jargon.

Respect for uncertainty

No course guarantees outcomes or replaces individualized professional advice.

The people behind the curriculum

Mara Ellis

Curriculum Director

Shapes lesson sequences so complex topics become useful learning steps.

Jonah Reed

Learner Research Lead

Studies where people get stuck and turns those insights into clearer exercises.

Priya Shah

Editorial Standards Lead

Reviews language for accuracy, balance, accessibility, and responsible claims.

`; const footerHTML = ` `; document.getElementById('site-header').innerHTML = headerHTML; document.getElementById('site-footer').innerHTML = footerHTML; function initTheme() { if (localStorage.getItem('sorqenTheme') === 'dark') { document.documentElement.classList.add('dark'); } } function initAuth() { const modal = document.getElementById('auth-modal'); document.getElementById('login-trigger')?.addEventListener('click', () => modal.classList.remove('hidden')); document.getElementById('register-trigger')?.addEventListener('click', () => modal.classList.remove('hidden')); document.getElementById('auth-close')?.addEventListener('click', () => modal.classList.add('hidden')); modal?.addEventListener('click', (e) => { if (e.target === modal) modal.classList.add('hidden'); }); } function initThemeToggle() { const toggle = document.getElementById('theme-toggle'); toggle?.addEventListener('click', () => { document.documentElement.classList.toggle('dark'); localStorage.setItem('sorqenTheme', document.documentElement.classList.contains('dark') ? 'dark' : 'light'); }); } function initCookies() { const banner = document.getElementById('cookie-banner'); if (localStorage.getItem('sorqenCookies') === 'accepted') { banner?.remove(); } else { document.getElementById('accept-cookies')?.addEventListener('click', () => { localStorage.setItem('sorqenCookies', 'accepted'); banner?.remove(); }); } } initTheme(); initAuth(); initThemeToggle(); initCookies();