Verdant Ledger

Financial Freedom Blueprint

A calmer, clearer way to understand your money.

Verdant Ledger helps you replace financial fog with a practical framework for cash flow, priorities, protection, and long-term choices—without promises of guaranteed outcomes.

A grounded learning experience

Turn scattered money questions into useful next steps.

See the whole picture

Map income, spending, obligations, and goals in one understandable view.

Practice informed choices

Use decision tools that encourage reflection instead of impulse.

Build repeatable habits

Create a review rhythm that can adapt as your life changes.

Start where you are

A course for thoughtful people who want a better relationship with financial decisions.

The curriculum combines plain-language lessons, guided exercises, and realistic scenarios. It is educational, not individualized financial, tax, or legal advice.

Learner perspectives

Real experiences from real participants.

"The blueprint gave me a repeatable monthly process that finally made my spending feel manageable instead of overwhelming."

— Lena Torres, Portland

"I now review my finances every quarter with clear prompts. My emergency fund grew without drastic lifestyle changes."

— Marcus Hale, Chicago

Ready to begin?

Start building clarity today.

`; const footerHTML = ` `; document.querySelector('header').innerHTML = headerHTML; document.querySelector('footer').innerHTML = footerHTML; // Theme toggle const themeBtn = document.querySelector('[data-theme-toggle]'); const themeKey = 'verdant-theme'; function applyTheme(theme) { if (theme === 'dark') { document.body.style.background = '#0F1C18'; document.body.style.color = '#E4EFE5'; } else { document.body.style.background = '#F7F3E8'; document.body.style.color = '#17352B'; } } const savedTheme = localStorage.getItem(themeKey) || 'light'; applyTheme(savedTheme); if (themeBtn) { themeBtn.addEventListener('click', () => { const current = localStorage.getItem(themeKey) || 'light'; const next = current === 'light' ? 'dark' : 'light'; localStorage.setItem(themeKey, next); applyTheme(next); }); } // Mobile menu const mobileBtn = document.querySelector('[data-mobile-menu]'); const mobilePanel = document.querySelector('[data-mobile-panel]'); if (mobileBtn && mobilePanel) { mobileBtn.addEventListener('click', () => { mobilePanel.classList.toggle('hidden'); }); } // Login / Register modals function setupModal(modalAttr, btnAttr) { const modal = document.querySelector(modalAttr); const openBtns = document.querySelectorAll(btnAttr); const closeBtn = modal ? modal.querySelector('[data-close-modal]') : null; openBtns.forEach(btn => btn.addEventListener('click', () => { if (modal) modal.style.display = 'flex'; })); if (closeBtn) closeBtn.addEventListener('click', () => { if (modal) modal.style.display = 'none'; }); if<|eos|>