⭐ Pro mode activated (demo)
👇 Pick a goal above to get started
✦ Demo Mode
Built for beginners · No experience needed · Free to start

Turn your idea into
your first money

Get a personalised step-by-step plan. Take real action. Start today.

No signup needed·AI-powered·Results in under 60 seconds
1
Choose goal
2
Your details
3
Get your plan
Step 1 — What's your goal?
Built for beginners. No experience needed. Just pick what you want to do.
Quick start
Make Your First Money
Get your first paying customer as fast as realistically possible.
Absolute beginners0–4 weeks
Long-term
🏗️
Build a Real Online Business
Build something serious and scalable over months.
Serious starters3–12 months
Content
🎬
Grow on TikTok & Social
Content ideas, scripts, and a real growth strategy.
Creators & influencersOngoing
Offline
📍
Make Money Locally
Simple service ideas anyone can start in their area.
No experience neededStart this week
🎲
Not sure? Let the AI pick for you
We'll choose the most realistic path based on your situation.
AI Tools Library
💡 Learn which AI tools to use
Explore the best AI tools for writing, coding, websites, video, automation, research, design and business. With use cases for total beginners.
ChatGPT Claude Lovable CapCut Canva AI ElevenLabs Midjourney
/* ══════════════════════════════════════════ PLAN TOC NAVIGATION ══════════════════════════════════════════ */ /* Scroll smoothly to a plan section by id */ function scrollToSection(id){ var el = document.getElementById(id); if(!el) return; var navH = 70; /* header height */ var extra = 12; var top = el.getBoundingClientRect().top + window.pageYOffset - navH - extra; window.scrollTo({ top: top, behavior: 'smooth' }); } /* TOC sections definition — order matches plan render order */ var _PNAV_SECTIONS = [ { id: 'taWidget', label: 'Today\'s Action', icon: '🔥' }, { id: 'lptWidget', label: 'Progress', icon: '📈' }, { id: 'pnav-overview', label: 'Overview', icon: '💡' }, { id: 'doThisNow', label: 'Do This Today', icon: '👣' }, { id: 'pnav-firstaction', label: 'First Action', icon: '⚡' }, { id: 'pnav-firstmoney', label: 'First Money', icon: '💵' }, { id: 'pnav-sevenday', label: '7-Day Plan', icon: '🗓️' }, { id: 'pnav-scripts', label: 'Scripts', icon: '📋' }, { id: 'pnav-details', label: 'Pricing & Tools',icon: '🔧' }, { id: 'coachSection', label: 'AI Coach', icon: '🧠' } ]; /* Build TOC nav card HTML — only include items whose element exists in DOM */ function _buildPnavCard(){ var items = _PNAV_SECTIONS.filter(function(s){ return !!document.getElementById(s.id); }); if(items.length < 2) return ''; var inner = items.map(function(s, i){ return ''; }).join(''); return '
In this plan
'+inner+'
'; } /* Build mobile chips strip HTML */ function _buildPnavChips(){ var items = _PNAV_SECTIONS.filter(function(s){ return !!document.getElementById(s.id); }); if(items.length < 2) return ''; var chips = items.map(function(s){ return ''; }).join(''); return '
'+chips+'
'; } /* Inject TOC into sidebar and chips into plan-wrap — called after plan renders */ function initPlanNav(){ /* Desktop: append TOC card to sidebar */ var sidebar = document.getElementById('planSidebar'); if(sidebar){ var card = document.createElement('div'); card.innerHTML = _buildPnavCard(); if(card.firstChild) sidebar.appendChild(card.firstChild); } /* Mobile: prepend chips strip to plan-wrap */ var wrap = document.querySelector('.plan-wrap'); if(wrap){ var strip = document.createElement('div'); strip.innerHTML = _buildPnavChips(); if(strip.firstChild) wrap.insertBefore(strip.firstChild, wrap.firstChild); } /* Start scroll-spy */ _startPnavSpy(); } /* Lightweight scroll-spy — rAF throttled, passive listener */ var _pnavSpyRaf = null; var _pnavActive = null; function _startPnavSpy(){ window.addEventListener('scroll', _pnavOnScroll, { passive: true }); _pnavOnScroll(); /* run once immediately */ } function _pnavOnScroll(){ if(_pnavSpyRaf) return; _pnavSpyRaf = requestAnimationFrame(function(){ _pnavSpyRaf = null; _pnavUpdateActive(); }); } function _pnavUpdateActive(){ var navH = 80; var scrollY = window.pageYOffset; var best = null; /* Find lowest section whose top is at or above viewport midpoint */ _PNAV_SECTIONS.forEach(function(s){ var el = document.getElementById(s.id); if(!el) return; var top = el.getBoundingClientRect().top + scrollY - navH; if(top <= scrollY + 120) best = s.id; }); if(best === _pnavActive) return; _pnavActive = best; /* Update desktop nav buttons */ _PNAV_SECTIONS.forEach(function(s){ var btn = document.getElementById('pnavBtn_'+s.id); if(!btn) return; if(s.id === best) btn.classList.add('pnav-active'); else btn.classList.remove('pnav-active'); }); } /* Stop spy when plan changes (called from renderPlan) */ function _stopPlanNav(){ window.removeEventListener('scroll', _pnavOnScroll); _pnavSpyRaf = null; _pnavActive = null; }