Phase 3: Capture

Email Gates → Qualification → Multi-Purpose Segmentation

Month 3 - Capture Layer

Phase Overview

Phase 3 implements email gates at Step 3-4 of playbooks with intelligent qualification questions. Every captured email gets segmented for 6 simultaneous purposes: internal use, expert signals, niche list building, JV lead gen, ValidationHub acquisition, and value-first fishing.

20%
Download → Email
3-4
Qualification Questions
6
Segment Purposes
CRM
Vbout/Beehiiv Sync
🎯 Phase 3 Success Criteria
  • Email gates operational at Step 3-4 in all playbooks
  • 3-4 qualification questions capturing key data
  • Multi-purpose segmentation logic implemented
  • Vbout/Beehiiv integration with bi-directional sync
  • Lead scoring algorithm operational
  • 20%+ email capture rate from playbook downloads

Quick Actions

Email Gate Design

The email gate appears at Step 3-4 when user has consumed enough value to be qualified but not so much that they don't need the rest.

Gate Placement Strategy
Step 3-4

Why Step 3-4?

  • Steps 1-2 provide genuine value (builds trust)
  • Step 3 is where they realize "this actually works"
  • Step 4+ contains advanced methodology (creates FOMO)
  • Early enough to capture interested users
  • Late enough to qualify serious implementers
HTML Structure (React Component): <EmailGate playbookId="newsletter-growth" expertName="Brad Himel" stepNumber={3} remainingSteps={5} ctaText="Get Steps 4-8: Advanced Growth Tactics" /> Component renders: - Value recap (what they've learned so far) - What's next (tease Steps 4-8 benefits) - Email + 3 qualification questions - Privacy statement + instant access promise
Gate UX & Copy
Conversion Optimization
Email Gate Copy Template: 🔒 Want Steps 4-8? Quick Questions First By now you've: ✓ [Outcome from Step 1] ✓ [Outcome from Step 2] ✓ [Outcome from Step 3] The next 5 steps cover: • [Advanced tactic 1] • [Advanced tactic 2] • [Advanced tactic 3] To make sure Steps 4-8 are relevant to YOUR situation, answer 3 quick questions: [FORM FIELDS - See next section] Privacy: No spam, unsubscribe anytime. Instant access to Steps 4-8 after submitting.
📈 Conversion Best Practices
  • Recap value already received (reciprocity trigger)
  • Tease specific benefits in Steps 4-8 (FOMO)
  • Frame questions as "personalization" not "qualification"
  • Show progress bar: "Step 3 of 8 complete"
  • Instant access promise (no waiting for emails)

Qualification Questions

3-4 questions that segment for all 6 purposes simultaneously. Questions must feel like personalization, not interrogation.

Universal Question Framework
3-4 Questions Max
Q1: Email (Required) email@example.com Q2: Current Stage (Required - Segmentation Primary) Where are you in your [topic] journey? ○ Just getting started (exploring) ○ Building actively (implementing) ○ Scaling what works (optimizing) ○ Teaching others (expert/consultant) Q3: Monthly Revenue/Size (Optional - Qualification) Current monthly revenue (or team size): ○ Pre-revenue (or solo) ○ $1K-$10K/mo (or 2-5 people) ○ $10K-$50K/mo (or 6-20 people) ○ $50K+/mo (or 20+ people) Q4: Biggest Challenge (Optional - Personalization) What's your #1 challenge with [topic]? [Free text field - 1-2 sentences]
⚠️ Question Design Anti-Patterns
  • Don't: Ask "What's your budget?" (too salesy)
  • Don't: Require phone number (trust killer)
  • Don't: Ask >4 questions (abandonment spike)
  • Don't: Use industry jargon in questions
Playbook-Specific Questions
Examples

Newsletter Growth Playbook (Brad Himel)

Q1: Email Q2: Current subscriber count? ○ 0-1K ○ 1K-5K ○ 5K-25K ○ 25K+ Q3: Primary newsletter goal? ○ Grow subscribers ○ Increase engagement ○ Monetize audience ○ Build authority Q4: Biggest newsletter challenge? [text]

Second Brain Playbook (Noah Brier)

Q1: Email Q2: Current knowledge management system? ○ None (scattered notes) ○ Basic (folders/tags) ○ Advanced (PKM system) ○ Expert (teaching others) Q3: Primary use case? ○ Personal learning ○ Content creation ○ Client work ○ Team collaboration Q4: What information do you struggle to find? [text]

ValidationHub Playbook

Q1: Email Q2: Stage of your idea? ○ Concept stage ○ Prototype built ○ First customers ○ Scaling Q3: Primary validation concern? ○ Market size ○ Willingness to pay ○ Competition ○ Product-market fit Q4: What have you validated so far? [text]

Multi-Purpose Segmentation

Every captured email serves 6 purposes simultaneously. Segmentation logic determines which purpose(s) each lead optimizes for.

📚Purpose 1: Internal Use
Team implements methodology alongside users. Validates playbook quality through real-world application.
All captures Low priority
🤝Purpose 2: Expert Partnership Signal
High engagement = expert sees demand for their methodology. Borrowed authority demonstration for partnership pitch.
All captures High engagement
📧Purpose 3: Niche List Building
Segmented email lists = future product validation. 15K+ leads across niches enables rapid testing.
Stage: Building/Scaling Revenue: Any
🎯Purpose 4: Expert JV Lead Gen
Qualified leads for deployed expert systems. Drive traffic to Brad/Alan/Noah Athio implementations.
Stage: Scaling Revenue: $10K+/mo
💰Purpose 5: ValidationHub Acquisition
DIY entrepreneurs → $2K validation sprints. Immediate monetization path for early-stage founders.
Stage: Just starting Revenue: Pre-revenue
🎣Purpose 6: Value-First Fishing
Zero-promotion distribution in communities. Public proof of delivering value → organic reach multiplier.
All captures Social proof
Segmentation Logic (Decision Tree)
Algorithm
Segmentation Algorithm (Python): def segment_lead(email, stage, revenue, challenge, playbook): segments = [] # Purpose 1: Internal Use (all leads) segments.append('internal-implementation') # Purpose 2: Expert Signal (all leads) segments.append(f'expert-signal-{playbook.expert_name}') # Purpose 3: Niche List (building/scaling stage) if stage in ['building', 'scaling']: segments.append(f'niche-{playbook.topic}') # Purpose 4: Expert JV Lead Gen (scaling + revenue) if stage == 'scaling' and revenue in ['$10K-$50K', '$50K+']: segments.append(f'jv-qualified-{playbook.expert_name}') # Purpose 5: ValidationHub (just starting + pre-revenue) if stage == 'just-starting' and revenue == 'pre-revenue': segments.append('validation-hub-qualified') # Purpose 6: Value-First Fishing (all leads) segments.append('social-proof-pool') return segments Example Output: Lead: john@example.com Stage: "scaling" Revenue: "$10K-$50K" Playbook: "Newsletter Growth" Segments: - internal-implementation - expert-signal-brad-himel - niche-newsletter-growth - jv-qualified-brad-himel - social-proof-pool

CRM Integration

Bi-directional sync with Vbout or Beehiiv. All segmentation logic, lead scoring, and qualification data flows to email platform.

Vbout Integration
MasteryMade Primary

Why Vbout: Combines email marketing + CRM + automation + lead scoring in one platform.

FastAPI → Vbout Webhook: import requests VBOUT_API_KEY = os.getenv('VBOUT_API_KEY') VBOUT_LIST_ID = '12345' @app.post("/api/email-capture") async def capture_email(data: EmailCaptureData): # Save to Supabase lead = await supabase.table('leads').insert({ 'email': data.email, 'playbook_id': data.playbook_id, 'stage': data.stage, 'revenue': data.revenue, 'challenge': data.challenge, 'segments': segment_lead(data), 'utm_data': data.utm_params }).execute() # Sync to Vbout vbout_response = requests.post( f'https://api.vbout.com/1/emailmarketing/addcontact', data={ 'key': VBOUT_API_KEY, 'listid': VBOUT_LIST_ID, 'email': data.email, 'fields[stage]': data.stage, 'fields[revenue]': data.revenue, 'fields[playbook]': data.playbook_id, 'fields[segments]': ','.join(lead.segments) } ) return {"success": True, "lead_id": lead.id}
🔄 Vbout Features Used
  • Lists: One list per playbook + master list
  • Tags: Segments applied as tags for filtering
  • Custom Fields: stage, revenue, challenge, playbook
  • Lead Scoring: Auto-score based on engagement
  • Automation: Triggered sequences per segment
Beehiiv Alternative
Creator-Focused Option

Why Beehiiv: Best-in-class deliverability, beautiful templates, creator-first features.

📊 Beehiiv vs Vbout Decision Matrix

Choose Vbout if:

  • Need CRM + email in one platform
  • Complex segmentation and lead scoring critical
  • Managing multiple client campaigns

Choose Beehiiv if:

  • Deliverability is top priority
  • Building personal brand/newsletter
  • Want creator monetization features (referrals, ads, premium)

Lead Scoring

Automatic qualification score based on stage, revenue, engagement, and behavior. Determines priority for follow-up and upsell sequences.

Scoring Algorithm
0-100 Scale
Lead Score Calculation: Base Score (Stage): - Just starting: 20 points - Building: 40 points - Scaling: 70 points - Expert/Teaching: 50 points Revenue Multiplier: - Pre-revenue: 1.0x - $1K-$10K: 1.2x - $10K-$50K: 1.5x - $50K+: 2.0x Engagement Bonus: - Completed all playbook steps: +15 points - Tried freemium trial (Step 7): +10 points - Watched Loom demo: +20 points - Replied to nurture email: +10 points Example Calculations: Lead A: Building stage (40) × Pre-revenue (1.0x) + Trial (10) = 50 points Lead B: Scaling (70) × $10K-$50K (1.5x) + All steps (15) = 120 points Lead C: Just starting (20) × Pre-revenue (1.0x) = 20 points Score Segments: - 0-30: Cold (nurture only) - 31-60: Warm (qualification sequence) - 61-80: Hot (sales-ready) - 81-100: Urgent (immediate outreach)

Nurture Sequences

Automated email sequences triggered by segment. Different paths for ValidationHub prospects vs. Expert JV leads vs. Niche list building.

Sequence by Segment
5-7 Email Series

ValidationHub Sequence (Pre-Revenue Leads)

Day 0: Welcome + Next Steps guide Day 2: Case study - "0 to First Customer in 14 Days" Day 5: Common validation mistakes (+ how to avoid) Day 7: Free validation sprint offer ($2K value, pay what you can) Day 10: Last chance + testimonials Day 14: "Still stuck?" - Book free 15-min diagnostic

Expert JV Sequence (Scaling + Revenue Leads)

Day 0: Welcome + Advanced tactics bonus Day 3: Expert AI clone demo (personalized to their business) Day 7: Case study - "How [Similar Business] automated [Expert] methodology" Day 10: Partnership offer ($5K setup + $500/mo) Day 14: ROI calculator + 30-min strategy call

Niche List Sequence (Building Stage)

Day 0: Welcome + Implementation checklist Day 5: Weekly tips + frameworks newsletter Day 15: New playbook announcement (related topic) Day 30: Product launch announcement (when available)

Next Steps