Fundraising & Scaling

Building a Pitch Deck That Gets Meetings

Structure a pitch deck that tells a compelling story and earns the investor meeting.

The Pitch Deck's Only Job

A pitch deck does one thing: gets you a meeting. It is not meant to close the deal. It is not meant to replace the conversation. It is a teaser that makes an investor want to learn more.

This distinction matters for every design decision: clarity over comprehensiveness, story over data dump, simplicity over proof of every claim.

The 12-Slide Structure

Slide 1: Title

Company name, one-sentence description, founder name and contact. That's it.

Slide 2: Problem

The pain point, who experiences it, how frequently, how painful. Use a specific story or data point that makes the problem visceral. "Developers spend 40% of their time on deployment and infrastructure, not building product."

Slide 3: Solution

What you built. One sentence that directly answers the problem. The product screenshot or demo GIF belongs here.

Slide 4: Product Demo

Screenshots, GIF, or embedded video. Show, don't tell. A 60-second demo video replaces 10 slides of feature descriptions.

Slide 5: Traction

This is the most important slide for seed and beyond. MRR, growth rate, user count, retention — show the momentum. If pre-revenue, show waitlist size, pilot customers, or letters of intent.

Slide 6: Market

TAM/SAM/SOM with defensible sources. Investors don't need a $100B market — they need confidence the market is large enough to build a big business.

Slide 7: Business Model

How you make money. Pricing tiers, unit economics (ARPU, LTV, CAC payback). Simple and clear.

Slide 8: Competition

Honest competitive positioning. A 2x2 matrix with you in the top-right is too cliché. Instead, show how the competitive landscape is fragmented and where you uniquely win.

Slide 9: Team

Why this team? Relevant experience, previous exits or notable work, domain expertise. Investors fund teams more than ideas.

Slide 10: Go-to-Market

Current acquisition channels, costs, evidence they work. The plan for the next 18 months. Specificity is credibility.

Slide 11: Financials

3-year revenue projection with clearly stated assumptions. Month-by-month for year 1. Annual for years 2-3. Include the key operating expenses.

Slide 12: The Ask

Amount you're raising, the instrument (SAFE, equity), valuation cap if SAFE. What the money buys (18 months runway, hire 3 engineers, grow to $X ARR).

Design Principles

  • One idea per slide — if two ideas compete, create two slides
  • Large text (minimum 18pt) — readable when presented on a screen
  • Show data in charts, not tables — charts communicate trends instantly
  • Consistent visual design — use your brand colors throughout
  • Under 20 slides — investors have seen thousands of decks

Technical Founder Mistakes

  • Too much technology, not enough business. Investors don't need to understand your architecture. They need to understand why customers pay and why you will win.
  • No traction slide. If you have any metrics, this is your most important slide. Show it.
  • Unrealistic projections. "$100M ARR in 3 years with a team of 5" destroys credibility. Show the math.
  • Ignoring competition. "We have no competitors" signals lack of market research, not a unique opportunity.

The Email Pitch

Getting the deck in front of investors requires a warm intro or a compelling cold email:

text
Subject: [Category] — $X ARR, growing Y% MoM — raising $Z SAFE

[Name], [Mutual connection] suggested I reach out.

I'm building [product] — [one sentence description]. We help [target customer] [key benefit].

We've grown from $0 to $X MRR in N months, with Z% month-over-month growth and N% monthly churn.

We're raising $Z on a $X cap SAFE to [specific use of funds]. [Link to deck or Calendly].

[Name]

Key elements: specific metrics, specific ask, social proof (mutual intro or notable traction).

Key Takeaways

  • The pitch deck's job is to get a meeting, not close the deal — clarity and story beat comprehensiveness
  • The 12-slide structure: problem, solution, demo, traction, market, business model, competition, team, GTM, financials, ask
  • Traction slide is the most important for seed stage — any metrics belong here, front and center
  • Technical founders over-explain the technology — investors need business understanding, not architecture diagrams
  • The cold email: mutual introduction > compelling metrics > specific ask > link to deck

Example

markdown
// Pitch deck outline generator
const pitchDeckOutline = [
  {
    slide: 1, title: 'Title',
    content: 'Company name • One-liner • Founder contact',
    timeToSpend: '10 seconds',
  },
  {
    slide: 2, title: 'Problem',
    content: 'The pain, who feels it, how often, how costly',
    timeToSpend: '60 seconds',
    tip: 'Start with a specific story or data point that makes the pain visceral',
  },
  {
    slide: 5, title: 'Traction',
    content: 'MRR • Growth rate • User count • Retention • Any notable customers',
    timeToSpend: '90 seconds',
    tip: 'The most important slide for seed investors. Put your best number first.',
  },
  {
    slide: 9, title: 'Team',
    content: 'Why this team? Relevant experience, domain expertise, why you will win',
    timeToSpend: '60 seconds',
    tip: 'Investors fund teams. Highlight what makes this team uniquely qualified.',
  },
  {
    slide: 12, title: 'The Ask',
    content: 'Amount • Instrument • Valuation cap • What the money funds',
    timeToSpend: '30 seconds',
    tip: 'Be specific: "$1.5M SAFE on $8M cap to fund 18 months and reach $X ARR"',
  },
];
Try it yourself — MARKDOWN