export function entrepreneurTypeQuiz(form: FormTs) {
form.setTitle(() => '🚀 What Type of Entrepreneur Are You?');
// ============ SCORING SYSTEM ============
const scores = form.state<Record<string, number>>({
visionary: 0,
operator: 0,
analyst: 0,
networker: 0,
innovator: 0
});
const updateScore = (type: string, points: number) => {
scores.update(current => ({
...current,
[type]: (current[type] || 0) + points
}));
};
type ArchetypeKey = 'visionary' | 'operator' | 'analyst' | 'networker' | 'innovator';
const getTopArchetype = (): ArchetypeKey => {
const s = scores();
let maxType: ArchetypeKey = 'visionary';
let maxScore = s['visionary'] || 0;
const types: ArchetypeKey[] = ['visionary', 'operator', 'analyst', 'networker', 'innovator'];
for (const type of types) {
if ((s[type] || 0) > maxScore) {
maxScore = s[type] || 0;
maxType = type;
}
}
return maxType;
};
const getSecondaryArchetype = (): ArchetypeKey => {
const s = scores();
const top = getTopArchetype();
let secondType: ArchetypeKey = 'operator';
let secondScore = 0;
const types: ArchetypeKey[] = ['visionary', 'operator', 'analyst', 'networker', 'innovator'];
for (const type of types) {
if (type !== top && (s[type] || 0) > secondScore) {
secondScore = s[type] || 0;
secondType = type;
}
}
return secondType;
};
const archetypeInfo: Record<ArchetypeKey, { emoji: string; title: string; description: string; strengths: string[]; challenges: string[]; famousExamples: string }> = {
visionary: {
emoji: '🔮',
title: 'The Visionary',
description: 'You see the future before others do. You\'re driven by big ideas and transformative change. You inspire teams with your compelling vision and aren\'t afraid to challenge the status quo.',
strengths: ['Big-picture thinking', 'Inspiring leadership', 'Risk tolerance', 'Innovation drive'],
challenges: ['Detail orientation', 'Patience with execution', 'Staying grounded'],
famousExamples: 'Elon Musk, Steve Jobs, Richard Branson'
},
operator: {
emoji: '⚙️',
title: 'The Operator',
description: 'You\'re the execution master. While others dream, you build. You excel at turning ideas into reality through systematic processes, efficient operations, and relentless optimization.',
strengths: ['Process optimization', 'Team management', 'Execution focus', 'Scalability'],
challenges: ['Delegating control', 'Embracing uncertainty', 'Taking big risks'],
famousExamples: 'Tim Cook, Sheryl Sandberg, Ray Kroc'
},
analyst: {
emoji: '📊',
title: 'The Analyst',
description: 'Data is your compass. You make decisions based on evidence, patterns, and logical analysis. You see opportunities others miss by diving deep into numbers and market research.',
strengths: ['Data-driven decisions', 'Risk assessment', 'Strategic planning', 'Problem-solving'],
challenges: ['Analysis paralysis', 'Moving fast', 'Trusting intuition'],
famousExamples: 'Warren Buffett, Jeff Bezos (early), Satya Nadella'
},
networker: {
emoji: '🤝',
title: 'The Networker',
description: 'Relationships are your superpower. You build businesses through connections, partnerships, and community. You understand that success is a team sport and know how to bring people together.',
strengths: ['Relationship building', 'Partnership deals', 'Team recruitment', 'Community creation'],
challenges: ['Solo execution', 'Saying no', 'Deep technical work'],
famousExamples: 'Reid Hoffman, Gary Vaynerchuk, Keith Ferrazzi'
},
innovator: {
emoji: '💡',
title: 'The Innovator',
description: 'You\'re a creative problem-solver who loves building new things. You thrive on experimentation, prototyping, and pushing boundaries. Your passion is creating what doesn\'t yet exist.',
strengths: ['Creative solutions', 'Product development', 'Technical skills', 'Iteration speed'],
challenges: ['Marketing & sales', 'Business fundamentals', 'Scaling beyond MVP'],
famousExamples: 'James Dyson, Sara Blakely, Jack Dorsey'
}
};
const getArchetypeColor = (type: ArchetypeKey): string => {
const colors: Record<ArchetypeKey, string> = {
visionary: '#8b5cf6',
operator: '#0891b2',
analyst: '#0d9488',
networker: '#f59e0b',
innovator: '#ec4899'
};
return colors[type];
};
// ============ COMPLETION SCREEN ============
form.configureCompletionScreen({
type: 'text',
title: () => {
const top = getTopArchetype();
return `${archetypeInfo[top].emoji} You're ${archetypeInfo[top].title}!`;
},
message: () => {
const top = getTopArchetype();
const secondary = getSecondaryArchetype();
return `${archetypeInfo[top].description}\n\nYour secondary type is ${archetypeInfo[secondary].title}, which adds ${(archetypeInfo[secondary].strengths[0] || '').toLowerCase()} to your entrepreneurial toolkit.`;
}
});
// ============ PAGES SETUP ============
const pages = form.addPages('quiz-pages', {
heightMode: 'current-page'
});
// ============ PAGE 1: Introduction ============
const page1 = pages.addPage('intro', { mobileBreakpoint: 500 });
page1.addRow(row => {
row.addTextPanel('header1', {
label: 'Step 1 of 6: Your Work Style',
computedValue: () => 'How do you approach work and problem-solving?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
page1.addSpacer({ height: '24px' });
page1.addRow(row => {
row.addRadioButton('problemApproach', {
label: 'When facing a complex business problem, your first instinct is to:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Envision the ideal end state and work backwards' },
{ id: 'process', name: '⚙️ Break it down into manageable steps and create a plan' },
{ id: 'data', name: '📊 Gather data and analyze all possible outcomes' },
{ id: 'people', name: '🤝 Talk to others who\'ve solved similar problems' },
{ id: 'experiment', name: '💡 Start experimenting with quick prototypes' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', process: 'operator', data: 'analyst', people: 'networker', experiment: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
page1.addRow(row => {
row.addRadioButton('idealDay', {
label: 'Your ideal workday involves:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'strategy', name: '🎯 Thinking about long-term strategy and future opportunities' },
{ id: 'execution', name: '📋 Checking off tasks and optimizing workflows' },
{ id: 'research', name: '🔍 Deep research and analysis sessions' },
{ id: 'meetings', name: '☕ Back-to-back meetings and relationship building' },
{ id: 'building', name: '🛠️ Heads-down building and creating' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { strategy: 'visionary', execution: 'operator', research: 'analyst', meetings: 'networker', building: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
page1.addRow(row => {
row.addRadioButton('teamRole', {
label: 'In a team project, you naturally gravitate toward:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'leader', name: '🚀 Setting the vision and inspiring the team' },
{ id: 'manager', name: '📊 Organizing tasks and ensuring delivery' },
{ id: 'strategist', name: '🧠 Researching options and advising on decisions' },
{ id: 'connector', name: '🔗 Bringing in external resources and partners' },
{ id: 'maker', name: '🔧 Building the actual product or solution' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { leader: 'visionary', manager: 'operator', strategist: 'analyst', connector: 'networker', maker: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
// ============ PAGE 2: Decision Making ============
const page2 = pages.addPage('decisions', { mobileBreakpoint: 500 });
page2.addRow(row => {
row.addTextPanel('header2', {
label: 'Step 2 of 6: Decision Making',
computedValue: () => 'How do you make important business decisions?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
page2.addSpacer({ height: '24px' });
page2.addRow(row => {
row.addRadioButton('bigDecision', {
label: 'When making a major business decision, you rely most on:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'gut', name: '🔮 Gut feeling and intuition about where things are heading' },
{ id: 'track', name: '⚙️ Track record of what\'s worked before' },
{ id: 'numbers', name: '📊 Spreadsheets, projections, and hard data' },
{ id: 'advice', name: '🤝 Advice from trusted mentors and peers' },
{ id: 'test', name: '💡 Quick tests and real-world experiments' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { gut: 'visionary', track: 'operator', numbers: 'analyst', advice: 'networker', test: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
page2.addRow(row => {
row.addRatingScale('riskAttitude', {
label: 'How do you feel about taking risks?',
isRequired: true,
preset: 'likert-7',
lowLabel: 'Minimize all risks',
highLabel: 'Embrace big risks',
size: 'md',
alignment: 'center',
variant: 'buttons',
onValueChange: (val) => {
if (val == null) return;
// 1-2: analyst/minimize, 3: networker/share, 4: operator/calculated, 5: innovator/iterate, 6-7: visionary/embrace
if (val <= 2) updateScore('analyst', 4);
else if (val === 3) updateScore('networker', 4);
else if (val === 4) updateScore('operator', 4);
else if (val === 5) updateScore('innovator', 4);
else updateScore('visionary', 4);
}
});
});
page2.addRow(row => {
row.addTextPanel('riskHint', {
computedValue: () => {
const val = page2.ratingScale('riskAttitude')?.value();
if (val == null) return '';
if (val <= 2) return 'Analyst style: Thorough analysis before action';
if (val === 3) return 'Networker style: Share risks through partnerships';
if (val === 4) return 'Operator style: Calculated risks with planning';
if (val === 5) return 'Innovator style: Small risks, fast iteration';
return 'Visionary style: Big bets for big rewards';
},
customStyles: {
fontSize: '0.8rem',
color: '#6b7280',
textAlign: 'center',
marginTop: '0.25rem',
fontStyle: 'italic'
}
});
});
page2.addRow(row => {
row.addRadioButton('failure', {
label: 'When a project fails, your first reaction is to:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'pivot', name: '🔮 Look for a bigger opportunity that emerged' },
{ id: 'postmortem', name: '⚙️ Do a detailed post-mortem on processes' },
{ id: 'analyze', name: '📊 Analyze what the data predicted vs. reality' },
{ id: 'discuss', name: '🤝 Discuss with others to get different perspectives' },
{ id: 'rebuild', name: '💡 Start building the next iteration immediately' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { pivot: 'visionary', postmortem: 'operator', analyze: 'analyst', discuss: 'networker', rebuild: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
// ============ PAGE 3: Motivation & Values ============
const page3 = pages.addPage('motivation', { mobileBreakpoint: 500 });
page3.addRow(row => {
row.addTextPanel('header3', {
label: 'Step 3 of 6: Motivation & Values',
computedValue: () => 'What drives you as an entrepreneur?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
page3.addSpacer({ height: '24px' });
page3.addRow(row => {
row.addRadioButton('mainDriver', {
label: 'Your primary motivation for entrepreneurship is:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'change', name: '🌍 Changing the world and making a lasting impact' },
{ id: 'build', name: '🏗️ Building something that runs like a well-oiled machine' },
{ id: 'master', name: '🎓 Mastering a domain and making smart decisions' },
{ id: 'community', name: '👥 Building a community and meaningful relationships' },
{ id: 'create', name: '✨ Creating something new that didn\'t exist before' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { change: 'visionary', build: 'operator', master: 'analyst', community: 'networker', create: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
page3.addRow(row => {
row.addRadioButton('success', {
label: 'You\'ll know you\'ve succeeded when:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'transform', name: '🚀 Your company has transformed an entire industry' },
{ id: 'scale', name: '📈 You\'ve built a scalable, profitable operation' },
{ id: 'right', name: '✅ Your analysis proved right and the strategy worked' },
{ id: 'network', name: '🌐 You\'ve built an incredible network and community' },
{ id: 'product', name: '💎 Your product is used and loved by many' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { transform: 'visionary', scale: 'operator', right: 'analyst', network: 'networker', product: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
page3.addRow(row => {
row.addEmojiRating('energy', {
label: 'What gives you the most energy?',
isRequired: true,
preset: 'custom',
emojis: [
{ id: 'future', emoji: '🔭', label: 'Future vision' },
{ id: 'progress', emoji: '✅', label: 'Progress' },
{ id: 'insights', emoji: '💡', label: 'Insights' },
{ id: 'connections', emoji: '🤝', label: 'Connections' },
{ id: 'shipping', emoji: '🚀', label: 'Shipping' }
],
size: 'lg',
showLabels: true,
alignment: 'center',
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { future: 'visionary', progress: 'operator', insights: 'analyst', connections: 'networker', shipping: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
// ============ PAGE 4: Business Approach ============
const page4 = pages.addPage('business', { mobileBreakpoint: 500 });
page4.addRow(row => {
row.addTextPanel('header4', {
label: 'Step 4 of 6: Business Approach',
computedValue: () => 'How do you approach building a business?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
page4.addSpacer({ height: '24px' });
page4.addRow(row => {
row.addRadioButton('startup', {
label: 'If starting a new business today, you\'d focus first on:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'mission', name: '🎯 Defining a compelling mission and vision' },
{ id: 'operations', name: '⚙️ Setting up efficient processes and systems' },
{ id: 'market', name: '📊 Deep market research and competitive analysis' },
{ id: 'team', name: '👥 Assembling the right team and advisors' },
{ id: 'mvp', name: '🛠️ Building a working prototype ASAP' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { mission: 'visionary', operations: 'operator', market: 'analyst', team: 'networker', mvp: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
page4.addRow(row => {
row.addRadioButton('competition', {
label: 'Your approach to competition is:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'disrupt', name: '💥 Make competition irrelevant by redefining the game' },
{ id: 'outexecute', name: '🏃 Out-execute them with better operations' },
{ id: 'outsmart', name: '🧠 Outsmart them with better strategy and positioning' },
{ id: 'collaborate', name: '🤝 Find ways to collaborate or coexist' },
{ id: 'outinnovate', name: '🚀 Out-innovate with a better product' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { disrupt: 'visionary', outexecute: 'operator', outsmart: 'analyst', collaborate: 'networker', outinnovate: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
page4.addRow(row => {
row.addRadioButton('growth', {
label: 'Your preferred growth strategy is:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'moonshot', name: '🌙 Moonshot thinking - 10x or nothing' },
{ id: 'systematic', name: '📈 Systematic, sustainable scaling' },
{ id: 'datadriven', name: '📊 Data-driven optimization and expansion' },
{ id: 'partnerships', name: '🤝 Strategic partnerships and acquisitions' },
{ id: 'productled', name: '💎 Product-led growth through word of mouth' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { moonshot: 'visionary', systematic: 'operator', datadriven: 'analyst', partnerships: 'networker', productled: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
// ============ PAGE 5: Results ============
const page5 = pages.addPage('results', { mobileBreakpoint: 500 });
page5.addRow(row => {
row.addTextPanel('header5', {
label: 'Step 5 of 6: Your Results',
computedValue: () => 'See your entrepreneur archetype!',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
page5.addSpacer({ height: '24px' });
page5.addRow(row => {
row.addTextPanel('resultTitle', {
computedValue: () => {
const top = getTopArchetype();
return `${archetypeInfo[top].emoji} You are ${archetypeInfo[top].title}!`;
},
customStyles: {
fontSize: '1.8rem',
fontWeight: '800',
textAlign: 'center',
color: getArchetypeColor(getTopArchetype()),
padding: '20px',
background: '#f9fafb',
borderRadius: '12px',
border: `3px solid ${getArchetypeColor(getTopArchetype())}`
}
});
});
page5.addRow(row => {
row.addTextPanel('resultDescription', {
computedValue: () => archetypeInfo[getTopArchetype()].description,
customStyles: {
fontSize: '1rem',
color: '#4b5563',
textAlign: 'center',
lineHeight: '1.7',
padding: '20px',
marginTop: '1rem'
}
});
});
page5.addRow(row => {
row.addTextPanel('strengths', {
label: '💪 Your Strengths',
computedValue: () => archetypeInfo[getTopArchetype()].strengths.join(' • '),
customStyles: {
fontSize: '0.95rem',
color: '#059669',
padding: '15px',
background: '#ecfdf5',
borderRadius: '8px',
marginTop: '1rem'
}
});
});
page5.addRow(row => {
row.addTextPanel('challenges', {
label: '🎯 Growth Areas',
computedValue: () => archetypeInfo[getTopArchetype()].challenges.join(' • '),
customStyles: {
fontSize: '0.95rem',
color: '#d97706',
padding: '15px',
background: '#fffbeb',
borderRadius: '8px',
marginTop: '0.5rem'
}
});
});
page5.addRow(row => {
row.addTextPanel('famous', {
label: '⭐ Famous Examples',
computedValue: () => archetypeInfo[getTopArchetype()].famousExamples,
customStyles: {
fontSize: '0.95rem',
color: '#6b7280',
padding: '15px',
background: '#f3f4f6',
borderRadius: '8px',
marginTop: '0.5rem'
}
});
});
page5.addRow(row => {
row.addTextPanel('secondary', {
computedValue: () => {
const secondary = getSecondaryArchetype();
return `Your secondary type is ${archetypeInfo[secondary].emoji} ${archetypeInfo[secondary].title}, adding ${(archetypeInfo[secondary].strengths[0] || '').toLowerCase()} to your toolkit.`;
},
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
textAlign: 'center',
padding: '15px',
marginTop: '1rem',
fontStyle: 'italic'
}
});
});
// ============ PAGE 6: Lead Capture ============
const page6 = pages.addPage('lead-capture', { mobileBreakpoint: 500 });
page6.addRow(row => {
row.addTextPanel('header6', {
label: 'Step 6 of 6: Get Your Report',
computedValue: () => 'Enter your details to receive your personalized entrepreneur profile',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
page6.addSpacer({ height: '24px' });
page6.addRow(row => {
row.addTextPanel('leadCapture', {
label: '📧 Get Your Full Entrepreneur Profile',
computedValue: () => 'Enter your details to receive a detailed PDF with personalized advice for your archetype',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280'
}
});
});
page6.addRow(row => {
row.addTextbox('name', {
label: 'Your Name',
isRequired: true,
placeholder: 'John Smith'
}, '1fr');
row.addEmail('email', {
label: 'Email',
isRequired: true,
placeholder: 'john@startup.com'
}, '1fr');
});
page6.addRow(row => {
row.addTextbox('company', {
label: 'Company (if any)',
placeholder: 'Acme Startup'
}, '1fr');
row.addDropdown('stage', {
label: 'Business Stage',
options: [
{ id: 'idea', name: '💭 Just an idea' },
{ id: 'building', name: '🛠️ Building MVP' },
{ id: 'launched', name: '🚀 Launched' },
{ id: 'growing', name: '📈 Growing' },
{ id: 'scaling', name: '🌍 Scaling' }
],
placeholder: 'Select stage'
}, '1fr');
});
page6.addRow(row => {
row.addCheckboxList('consent', {
options: [
{ id: 'report', name: '📄 Send me my detailed archetype report', isRequired: true },
{ id: 'tips', name: '💡 Send me entrepreneur tips based on my type' },
{ id: 'community', name: '👥 Connect me with similar entrepreneurs' }
],
defaultValue: ['report'],
orientation: 'vertical'
});
});
// ============ PDF REPORT ============
form.configurePdf('entrepreneur-report', pdf => {
pdf.configure({
filename: 'entrepreneur-archetype-report.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: '📄 Download Your Profile',
header: {
title: 'Entrepreneur Archetype Report',
subtitle: 'Your Personalized Founder Profile'
},
footer: {
text: 'Generated by FormTs Entrepreneur Quiz',
showPageNumbers: true
}
});
const top = getTopArchetype();
const secondary = getSecondaryArchetype();
pdf.addSection('Your Primary Archetype', section => {
section.addRow(row => {
row.addField('Type', `${archetypeInfo[top].emoji} ${archetypeInfo[top].title}`);
});
section.addText(archetypeInfo[top].description);
});
pdf.addSection('Strengths & Challenges', section => {
section.addRow(row => {
row.addField('Key Strengths', archetypeInfo[top].strengths.join(', '));
});
section.addRow(row => {
row.addField('Growth Areas', archetypeInfo[top].challenges.join(', '));
});
section.addRow(row => {
row.addField('Famous Examples', archetypeInfo[top].famousExamples);
});
});
pdf.addSection('Your Secondary Type', section => {
section.addRow(row => {
row.addField('Type', `${archetypeInfo[secondary].emoji} ${archetypeInfo[secondary].title}`);
});
section.addText(`Your secondary archetype adds ${(archetypeInfo[secondary].strengths[0] || '').toLowerCase()} to your entrepreneurial toolkit.`);
});
pdf.addPageBreak();
pdf.addSection('Score Breakdown', section => {
const s = scores();
section.addTable(
['Archetype', 'Score', 'Percentage'],
[
['🔮 Visionary', `${s['visionary'] || 0}`, `${Math.round(((s['visionary'] || 0) / 48) * 100)}%`],
['⚙️ Operator', `${s['operator'] || 0}`, `${Math.round(((s['operator'] || 0) / 48) * 100)}%`],
['📊 Analyst', `${s['analyst'] || 0}`, `${Math.round(((s['analyst'] || 0) / 48) * 100)}%`],
['🤝 Networker', `${s['networker'] || 0}`, `${Math.round(((s['networker'] || 0) / 48) * 100)}%`],
['💡 Innovator', `${s['innovator'] || 0}`, `${Math.round(((s['innovator'] || 0) / 48) * 100)}%`]
]
);
});
pdf.addSection('Recommendations for Your Type', section => {
if (top === 'visionary') {
section.addText('1. Partner with strong operators who can execute your vision');
section.addText('2. Set up systems to stay grounded in day-to-day realities');
section.addText('3. Practice patience - transformative change takes time');
section.addText('4. Communicate your vision clearly and consistently');
} else if (top === 'operator') {
section.addText('1. Make time for strategic thinking and long-term planning');
section.addText('2. Learn to delegate and trust others with execution');
section.addText('3. Take calculated risks outside your comfort zone');
section.addText('4. Partner with visionaries who can inspire direction');
} else if (top === 'analyst') {
section.addText('1. Set deadlines to avoid analysis paralysis');
section.addText('2. Trust your intuition once you have enough data');
section.addText('3. Practice making fast decisions on small matters');
section.addText('4. Balance research with action and experimentation');
} else if (top === 'networker') {
section.addText('1. Develop deep expertise in your core domain');
section.addText('2. Learn to say no to protect your time');
section.addText('3. Build systems that don\'t require your presence');
section.addText('4. Balance relationship building with execution');
} else {
section.addText('1. Learn marketing and sales fundamentals');
section.addText('2. Focus on business model before more features');
section.addText('3. Partner with business-minded co-founders');
section.addText('4. Validate demand before building extensively');
}
});
});
// ============ SUBMIT BUTTON ============
form.configureSubmitButton({
label: () => `🚀 Get My Full ${archetypeInfo[getTopArchetype()].title} Report`
});
form.configureSubmitBehavior({
sendToServer: true
});
}