@mevdragon/vidfarm-devcli 0.5.3 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/demo/README.md +28 -0
- package/demo/dist/app.css +1 -0
- package/demo/dist/app.js +1184 -0
- package/demo/dist/chunks/chunk-DXB73IDG.js +1 -0
- package/demo/dist/chunks/chunk-S7OWAJDS.js +36 -0
- package/demo/dist/chunks/chunk-VTIBZ6AN.js +1 -0
- package/demo/dist/chunks/dist-ADSJKBVE.js +332 -0
- package/demo/dist/chunks/domEditingLayers-VZMLL4AP-SGHWPND4.js +1 -0
- package/demo/dist/chunks/hyperframes-player-XB65TCD6.js +425 -0
- package/demo/dist/chunks/lib-XAQ37YOE.js +1 -0
- package/demo/dist/chunks/src-TJ2QYA4U.js +207 -0
- package/demo/dist/favicon.ico +0 -0
- package/demo/dist/icons/timeline/audio.svg +7 -0
- package/demo/dist/icons/timeline/captions.svg +5 -0
- package/demo/dist/icons/timeline/composition.svg +12 -0
- package/demo/dist/icons/timeline/image.svg +18 -0
- package/demo/dist/icons/timeline/music.svg +10 -0
- package/demo/dist/icons/timeline/text.svg +3 -0
- package/demo/dist/index.html +15 -0
- package/dist/src/account-pages-legacy.js +9396 -0
- package/dist/src/account-pages.js +61 -0
- package/dist/src/app.js +14378 -0
- package/dist/src/cli.js +1 -1
- package/dist/src/composition-runtime.js +613 -0
- package/dist/src/config.js +166 -0
- package/dist/src/context.js +447 -0
- package/dist/src/dev-app-legacy.js +739 -0
- package/dist/src/dev-app.js +6 -0
- package/dist/src/domain.js +2 -0
- package/dist/src/editor-chat-history.js +82 -0
- package/dist/src/editor-chat.js +449 -0
- package/dist/src/editor-dark-theme.js +1128 -0
- package/dist/src/frontend/debug.js +71 -0
- package/dist/src/frontend/flockposter-cache-store.js +124 -0
- package/dist/src/frontend/homepage-client.js +182 -0
- package/dist/src/frontend/homepage-shared.js +4 -0
- package/dist/src/frontend/homepage-store.js +28 -0
- package/dist/src/frontend/homepage-view.js +547 -0
- package/dist/src/frontend/page-runtime-client.js +132 -0
- package/dist/src/frontend/page-runtime-store.js +9 -0
- package/dist/src/frontend/sentry.js +42 -0
- package/dist/src/frontend/template-editor-chat.js +3960 -0
- package/dist/src/help-page.js +346 -0
- package/dist/src/homepage.js +1235 -0
- package/dist/src/hyperframes/composition.js +180 -0
- package/dist/src/index.js +16 -0
- package/dist/src/instrument.js +30 -0
- package/dist/src/lib/crypto.js +45 -0
- package/dist/src/lib/dev-log.js +54 -0
- package/dist/src/lib/display-name.js +11 -0
- package/dist/src/lib/ids.js +24 -0
- package/dist/src/lib/images.js +19 -0
- package/dist/src/lib/json.js +15 -0
- package/dist/src/lib/package-root.js +47 -0
- package/dist/src/lib/template-paths.js +28 -0
- package/dist/src/lib/time.js +7 -0
- package/dist/src/lib/url-clean.js +85 -0
- package/dist/src/page-runtime.js +2 -0
- package/dist/src/page-shell.js +1381 -0
- package/dist/src/primitive-context.js +357 -0
- package/dist/src/primitive-registry.js +2436 -0
- package/dist/src/primitive-sdk.js +4 -0
- package/dist/src/primitives/hyperframes-media.js +108 -0
- package/dist/src/react-page-shell.js +35 -0
- package/dist/src/ready-post-schedule-component.js +1540 -0
- package/dist/src/registry.js +296 -0
- package/dist/src/runtime.js +35 -0
- package/dist/src/services/api-call-history.js +249 -0
- package/dist/src/services/auth.js +152 -0
- package/dist/src/services/billing-pricing.js +39 -0
- package/dist/src/services/billing.js +228 -0
- package/dist/src/services/cast.js +127 -0
- package/dist/src/services/chat-threads.js +92 -0
- package/dist/src/services/composition-sanitize.js +124 -0
- package/dist/src/services/composition-watch.js +79 -0
- package/dist/src/services/fork-access.js +93 -0
- package/dist/src/services/fork-manifest.js +42 -0
- package/dist/src/services/ghostcut.js +179 -0
- package/dist/src/services/hyperframes.js +2307 -0
- package/dist/src/services/job-capacity.js +14 -0
- package/dist/src/services/job-logs.js +197 -0
- package/dist/src/services/jobs.js +136 -0
- package/dist/src/services/local-dynamo.js +0 -0
- package/dist/src/services/media-processing.js +766 -0
- package/dist/src/services/primitive-media-lambda.js +280 -0
- package/dist/src/services/providers.js +2926 -0
- package/dist/src/services/rate-limits.js +262 -0
- package/dist/src/services/serverless-auth.js +382 -0
- package/dist/src/services/serverless-jobs.js +1082 -0
- package/dist/src/services/serverless-provider-keys.js +409 -0
- package/dist/src/services/serverless-records.js +1385 -0
- package/dist/src/services/serverless-template-configs.js +75 -0
- package/dist/src/services/storage.js +383 -0
- package/dist/src/services/template-certification.js +413 -0
- package/dist/src/services/template-loader.js +99 -0
- package/dist/src/services/template-runtime-bundles.js +217 -0
- package/dist/src/services/template-sources.js +1017 -0
- package/dist/src/services/video-normalization.js +2 -0
- package/dist/src/services/webhooks.js +62 -0
- package/dist/src/template-editor-pages.js +2576 -0
- package/dist/src/template-editor-shell.js +2840 -0
- package/dist/src/template-sdk.js +4 -0
- package/dist/src/worker.js +17 -0
- package/package.json +6 -4
- package/public/assets/homepage-app.js +54 -0
- package/public/assets/homepage-client-app.js +80 -0
- package/public/assets/page-runtime-client-app.js +94 -0
- package/src/assets/SELLING_AWARENESS_STAGES.md +579 -0
- package/src/assets/SELLING_WITH_HOOKS.md +377 -0
- package/src/assets/SELLING_WITH_VSLS.md +606 -0
- package/src/assets/favicon.ico +0 -0
- package/src/assets/logo-vidfarm.png +0 -0
|
@@ -0,0 +1,606 @@
|
|
|
1
|
+
# Selling With Video Sales Letters (VSLs) — Comprehensive Reference
|
|
2
|
+
|
|
3
|
+
> **Sources:** @LucasHogie (EffectiveVSL) — ~200 tweets distilled, Mar 2026
|
|
4
|
+
> **Purpose:** Reference doc for when you want to sell with video sales letters and prompt your copywriting.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## What Is a VSL?
|
|
9
|
+
|
|
10
|
+
A Video Sales Letter (VSL) is a pre-recorded video that sits on a landing page and does the selling before a prospect ever gets on a call. It is NOT a product demo, not a company overview video, not a Loom recording in a hoodie. It is a **sales call that runs 24/7 without you being there.**
|
|
11
|
+
|
|
12
|
+
A real VSL:
|
|
13
|
+
- Explains your offer clearly
|
|
14
|
+
- Shows proof it works (case studies, numbers, results)
|
|
15
|
+
- Handles the top 5 objections people always bring up
|
|
16
|
+
- Pre-qualifies prospects (filters OUT tire kickers, filters IN serious buyers)
|
|
17
|
+
- Creates urgency and gives a clear next step (book a call)
|
|
18
|
+
|
|
19
|
+
If your "VSL" is just you explaining what you do for 10 minutes — you've built a brochure, not a sales tool.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Why VSLs Work
|
|
24
|
+
|
|
25
|
+
### The Core Thesis
|
|
26
|
+
|
|
27
|
+
The gap between $20K/mo and $100K/mo for service businesses is NOT service quality — it's **selling systems**. A VSL is the highest-leverage selling system because it replaces the first 30 minutes of every sales call you'll ever have.
|
|
28
|
+
|
|
29
|
+
### The Math
|
|
30
|
+
|
|
31
|
+
| Metric | Without VSL | With VSL |
|
|
32
|
+
|--------|-------------|----------|
|
|
33
|
+
| Ad spend | $10K/mo | $10K/mo |
|
|
34
|
+
| Clicks | 3,000 | 3,000 |
|
|
35
|
+
| Landing page conversion | 2% | 4% |
|
|
36
|
+
| Booked calls | 60 | 120 |
|
|
37
|
+
| Close rate (30%) | 18 deals | 36 deals |
|
|
38
|
+
| Revenue ($3K avg deal) | $54K | $108K |
|
|
39
|
+
|
|
40
|
+
**Result:** Same ad spend, 2x revenue. VSL production is a one-time $5–10K investment.
|
|
41
|
+
|
|
42
|
+
### VSL vs Webinar
|
|
43
|
+
|
|
44
|
+
| | Webinar | VSL |
|
|
45
|
+
|---|---|---|
|
|
46
|
+
| Length | 60–90 min live | 7–12 min recorded |
|
|
47
|
+
| Availability | Requires attendance | Runs 24/7 |
|
|
48
|
+
| Prep effort | 20–40 emails, 3+ weeks setup | One-time build |
|
|
49
|
+
| Nature | Recurring event | Compounding asset |
|
|
50
|
+
| Best for | Info products to entry-level buyers | High-ticket service businesses |
|
|
51
|
+
|
|
52
|
+
### VSL vs Email Sequences
|
|
53
|
+
|
|
54
|
+
> "5 follow-up emails build LESS trust than 1 good video. An email is text on a screen from a stranger. A video is a face, a voice, proof, energy. In B2B, the biggest barrier is trust. And video is the fastest trust-building medium that exists."
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## VSL Length Guidelines
|
|
59
|
+
|
|
60
|
+
### B2B Service Businesses
|
|
61
|
+
|
|
62
|
+
| Length | Type | Use Case |
|
|
63
|
+
|--------|------|----------|
|
|
64
|
+
| 1–2 min | Mini-VSL | Retargeting, social proof clips |
|
|
65
|
+
| 2–4 min | Short-VSL | Simple offers, warm traffic |
|
|
66
|
+
| 6–8 min | Medium-length | Standard high-ticket offers |
|
|
67
|
+
| 9–12 min | Full-length | Complex offers, cold traffic |
|
|
68
|
+
|
|
69
|
+
**Sweet spot: 7–12 minutes.** Anything past 15 min and you're losing people.
|
|
70
|
+
|
|
71
|
+
> "Your target audience doesn't watch long videos? They watched Netflix for 3 hours last night. Average Gen Z watches 162 minutes of YouTube per day. They'll watch 7 minutes if it solves their $50K problem. Your VSL just sucks."
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## VSL Script Structure
|
|
76
|
+
|
|
77
|
+
### The Hook (First 8 Seconds)
|
|
78
|
+
|
|
79
|
+
The first 8 seconds decide everything. Your prospect's thumb is already hovering over the back button.
|
|
80
|
+
|
|
81
|
+
**Rules:**
|
|
82
|
+
- Do NOT start with yourself: "Hi, I'm [name] and I help..."
|
|
83
|
+
- Start with THEIR problem, their frustration, the thing that made them click
|
|
84
|
+
- Introduce yourself AFTER you've earned 30 seconds of attention
|
|
85
|
+
- Every line has one job: make them watch the next line
|
|
86
|
+
|
|
87
|
+
**Hook Types:**
|
|
88
|
+
- **Disqualifier hook** (best for service businesses): Lead with who this is NOT for, making ideal prospects self-select
|
|
89
|
+
- **Entertainment/story hook** (best for info products): Lead with something that looks like a podcast or tutorial, then pivot to selling 15+ min later
|
|
90
|
+
|
|
91
|
+
### Maintaining Attention (Every 30 Seconds)
|
|
92
|
+
|
|
93
|
+
> "Every 30 seconds your viewer is asking: 'Why should I care?' If your VSL doesn't answer that constantly — with a new proof point, a new story, a new specific — they're gone."
|
|
94
|
+
|
|
95
|
+
**Key technique — Open Loops:**
|
|
96
|
+
> "In a minute I'll show you exactly what happened when we tested this..."
|
|
97
|
+
|
|
98
|
+
Your brain can't let go of an unanswered question. It NEEDS the resolution. Most VSLs close every point before opening the next one — that's why people click off at minute 2. Keep loops open to PULL viewers forward.
|
|
99
|
+
|
|
100
|
+
### The 7 Psychology Levers Behind Every Winning VSL
|
|
101
|
+
|
|
102
|
+
1. **Curiosity** — open loops
|
|
103
|
+
2. **Empathy** — relatable story
|
|
104
|
+
3. **Proof** — testimonials, experts
|
|
105
|
+
4. **Authority** — trusted voice
|
|
106
|
+
5. **Urgency** — limited time/stock
|
|
107
|
+
6. **Relief** — solution revealed
|
|
108
|
+
7. **Reward** — better life after purchase
|
|
109
|
+
|
|
110
|
+
Every 7-figure VSL pulls at least four of these in the first 3 minutes.
|
|
111
|
+
|
|
112
|
+
### The Pain Section
|
|
113
|
+
|
|
114
|
+
Go DEEP. Surface-level problems are boring.
|
|
115
|
+
|
|
116
|
+
| Level | Example |
|
|
117
|
+
|-------|---------|
|
|
118
|
+
| Surface (weak) | "You're struggling to get leads" |
|
|
119
|
+
| Deep (strong) | "You're refreshing your inbox at 11pm, hoping for one reply to a cold email you sent to 200 people 3 days ago" |
|
|
120
|
+
|
|
121
|
+
The deep version makes them feel SEEN. That's what converts.
|
|
122
|
+
|
|
123
|
+
### Proof & Testimonials (Placement Matters)
|
|
124
|
+
|
|
125
|
+
**Wrong way:** A face and a quote saying "great service, highly recommend" — does almost nothing for high-ticket.
|
|
126
|
+
|
|
127
|
+
**Right way:** Walk through a full client story:
|
|
128
|
+
1. Where they started
|
|
129
|
+
2. What they tried before
|
|
130
|
+
3. What changed
|
|
131
|
+
4. Where they are now
|
|
132
|
+
|
|
133
|
+
**Critical insight — timing:**
|
|
134
|
+
> "A testimonial on your website = nice. A testimonial at the EXACT moment your prospect is thinking 'but will this work for ME?' inside a VSL = game changer."
|
|
135
|
+
|
|
136
|
+
**What makes good proof:**
|
|
137
|
+
- Wrong: "He's a great guy"
|
|
138
|
+
- Right: "We went from 4 calls a week to 4 calls a DAY"
|
|
139
|
+
|
|
140
|
+
Make the success the star, not your personality.
|
|
141
|
+
|
|
142
|
+
### Objection Handling
|
|
143
|
+
|
|
144
|
+
Every service business has the same 4 objections:
|
|
145
|
+
1. "What makes you different?"
|
|
146
|
+
2. "Can I see results first?"
|
|
147
|
+
3. "How long does it take?"
|
|
148
|
+
4. "What if it doesn't work?"
|
|
149
|
+
|
|
150
|
+
You've answered these 500 times on calls. **Put them in the VSL.** Pre-sell on the basics, then handle specifics live.
|
|
151
|
+
|
|
152
|
+
### One Person, One Problem
|
|
153
|
+
|
|
154
|
+
> "A VSL that converts at 5% for a single niche beats one that converts at 0.3% for five niches. Every single time."
|
|
155
|
+
|
|
156
|
+
Pick one ideal customer. Go deep on their specific problem. Don't try to serve everyone.
|
|
157
|
+
|
|
158
|
+
### Call to Action
|
|
159
|
+
|
|
160
|
+
One clear promise. Proof it works. Book the call. That's it.
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## The Writing Process
|
|
165
|
+
|
|
166
|
+
### How Pros Actually Write VSL Scripts
|
|
167
|
+
|
|
168
|
+
1. Write 3,000 words
|
|
169
|
+
2. Delete 2,500. Rewrite 1,500. Delete 1,000.
|
|
170
|
+
3. Rearrange what's left (~800 words that actually matter)
|
|
171
|
+
4. Build back up to 2–3K words
|
|
172
|
+
5. Expect 4+ full rewrites
|
|
173
|
+
|
|
174
|
+
> "It's SUPPOSED to be painful. Because no one else makes VSLs this good."
|
|
175
|
+
|
|
176
|
+
### Using AI for VSL Scripts
|
|
177
|
+
|
|
178
|
+
AI has fundamentally changed VSL production:
|
|
179
|
+
|
|
180
|
+
> "I used to spend 40+ hours writing a VSL script from scratch. Now I feed my framework into Claude and get a first draft in 20 minutes that's 80% there. The skill isn't writing anymore. It's having the right prompts + TASTE."
|
|
181
|
+
|
|
182
|
+
**Recommended AI stack (as of 2026):**
|
|
183
|
+
- **Claude Code** — copywriting, strategy consulting, prompt engineering
|
|
184
|
+
- **Gemini** — landing page design/code generation
|
|
185
|
+
- Compress your entire framework into a system prompt (5,000+ words)
|
|
186
|
+
- The prompt should cover: hook structure, pain section, proof placement, objection handling, CTA
|
|
187
|
+
|
|
188
|
+
### The DIY Tax
|
|
189
|
+
|
|
190
|
+
| Task | Hours |
|
|
191
|
+
|------|-------|
|
|
192
|
+
| Research | 10 |
|
|
193
|
+
| Script | 15 |
|
|
194
|
+
| Recording | 5 |
|
|
195
|
+
| Editing | 8 |
|
|
196
|
+
| Revisions | 5 |
|
|
197
|
+
| **Total** | **43 hours** |
|
|
198
|
+
|
|
199
|
+
At $100/hr opportunity cost = $4,300. And it probably won't convert as well as one built by a specialist.
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## The Complete VSL Funnel System
|
|
204
|
+
|
|
205
|
+
### Architecture
|
|
206
|
+
|
|
207
|
+
```
|
|
208
|
+
Traffic (ads, organic, referral)
|
|
209
|
+
↓
|
|
210
|
+
Landing Page
|
|
211
|
+
├── Headline (clear, not clever)
|
|
212
|
+
├── VSL video (7-12 min)
|
|
213
|
+
├── Social proof
|
|
214
|
+
└── Application/booking form
|
|
215
|
+
↓
|
|
216
|
+
Pre-qualification Form
|
|
217
|
+
↓
|
|
218
|
+
Confirmation Emails + Reminder Sequence
|
|
219
|
+
↓
|
|
220
|
+
Sales Call (12-15 min, NOT 45 min)
|
|
221
|
+
↓
|
|
222
|
+
Close
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
### What a Proper Landing Page Needs
|
|
226
|
+
|
|
227
|
+
Minimum viable funnel:
|
|
228
|
+
1. A headline that speaks to ONE specific problem
|
|
229
|
+
2. A VSL that pre-sells the offer
|
|
230
|
+
3. Social proof (case studies with specific numbers)
|
|
231
|
+
4. Pre-qualification form (filters bad prospects)
|
|
232
|
+
5. Booking integration
|
|
233
|
+
|
|
234
|
+
What it does NOT need: your life story, a dozen service pages, a blog, animations.
|
|
235
|
+
|
|
236
|
+
### The Trust Funnel Sequence (Cold → Warm → Hot)
|
|
237
|
+
|
|
238
|
+
1. **Short-form video** — builds familiarity (they see your face daily)
|
|
239
|
+
2. **Lead magnet** — captures contact info
|
|
240
|
+
3. **VSL/long-form video** — teaches your system and shows proof
|
|
241
|
+
4. **Retarget warm audience** — book-a-call CTA
|
|
242
|
+
|
|
243
|
+
> "The mistake everyone makes is sending cold traffic straight to 'book a call.' They don't know you yet. The funnel IS the trust-building."
|
|
244
|
+
|
|
245
|
+
### Follow-Up Systems
|
|
246
|
+
|
|
247
|
+
- **Automated email sequences** for no-shows and "let me think about it"
|
|
248
|
+
- **Reminder sequences** pre-call
|
|
249
|
+
- **No-show follow-up** sequences
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
## Faceless VSLs
|
|
254
|
+
|
|
255
|
+
You do NOT need to be on camera.
|
|
256
|
+
|
|
257
|
+
> "Some of the best-performing VSLs are completely faceless. Slides and a voiceover. That's literally it."
|
|
258
|
+
|
|
259
|
+
**Faceless options:**
|
|
260
|
+
- Stock footage + voiceover
|
|
261
|
+
- Screen recordings + slides
|
|
262
|
+
- AI-generated voice
|
|
263
|
+
- Hired voice actor
|
|
264
|
+
|
|
265
|
+
The conversion comes from the script, structure, and proof placement. Not your face.
|
|
266
|
+
|
|
267
|
+
---
|
|
268
|
+
|
|
269
|
+
## Sales Calls: Before vs After VSL
|
|
270
|
+
|
|
271
|
+
### Before VSL
|
|
272
|
+
```
|
|
273
|
+
Prospect: "So tell me what you do"
|
|
274
|
+
You: *45 minute presentation from scratch*
|
|
275
|
+
Prospect: "Let me think about it"
|
|
276
|
+
|
|
277
|
+
→ 15 calls/week, closing 3
|
|
278
|
+
→ 12 hours wasted on people who were never going to buy
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
### After VSL
|
|
282
|
+
```
|
|
283
|
+
Prospect: "I watched the video. I'm in. What's onboarding look like?"
|
|
284
|
+
You: "Here's the invoice."
|
|
285
|
+
|
|
286
|
+
→ 3 calls/week, closing 3
|
|
287
|
+
→ Calls are 12-15 minutes
|
|
288
|
+
→ Close rate goes UP, stress goes way down
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
> "The deal is won or lost BEFORE the call starts."
|
|
292
|
+
|
|
293
|
+
---
|
|
294
|
+
|
|
295
|
+
## Pricing & Revenue Architecture
|
|
296
|
+
|
|
297
|
+
### How to Price High-Ticket
|
|
298
|
+
|
|
299
|
+
- Don't "charge your worth" — charge based on RESULTS
|
|
300
|
+
- A coach who takes clients from $5K/mo to $20K/mo can charge $5K because the math works
|
|
301
|
+
- Show the worst case outcome with specific numbers, timelines, and outcomes
|
|
302
|
+
- Make the risk feel manageable
|
|
303
|
+
|
|
304
|
+
### Closing $10K+ Deals
|
|
305
|
+
|
|
306
|
+
1. **"Clear over clever"** — emotional manipulation does NOT work on high-net-worth buyers
|
|
307
|
+
2. **Show proof that removes doubt** + show worst-case outcome
|
|
308
|
+
3. **Use a VSL that answers every question** before the call
|
|
309
|
+
4. **Keep the call short** — they just need confirmation
|
|
310
|
+
5. **Make the risk feel like nothing** compared to the upside
|
|
311
|
+
|
|
312
|
+
### The Value Ladder
|
|
313
|
+
|
|
314
|
+
How to 3–5x revenue per client without getting a single new lead:
|
|
315
|
+
|
|
316
|
+
| Step | Offer | Price |
|
|
317
|
+
|------|-------|-------|
|
|
318
|
+
| 1. Core offer | Main service | $3–5K |
|
|
319
|
+
| 2. Upsell | Premium tier with more access | $8–10K |
|
|
320
|
+
| 3. Downsell | Smaller version for people who said no | $500–1K |
|
|
321
|
+
| 4. Continuity | Ongoing support retainer | $500/mo |
|
|
322
|
+
|
|
323
|
+
### Revenue By Pricing Strategy
|
|
324
|
+
|
|
325
|
+
Same $10K/mo take-home, wildly different lifestyles:
|
|
326
|
+
|
|
327
|
+
| Revenue | Price | Clients needed |
|
|
328
|
+
|---------|-------|----------------|
|
|
329
|
+
| $50K/mo | $1K projects | 50 clients |
|
|
330
|
+
| $30K/mo | $3K projects | 10 clients |
|
|
331
|
+
| $20K/mo | $5K projects | 4 clients |
|
|
332
|
+
| $15K/mo | $10K projects | 2 clients |
|
|
333
|
+
|
|
334
|
+
---
|
|
335
|
+
|
|
336
|
+
## The $20–30K/mo Plateau
|
|
337
|
+
|
|
338
|
+
### Symptoms
|
|
339
|
+
- Making enough that quitting is insane, but not enough to comfortably hire
|
|
340
|
+
- Doing everything yourself — every call, every proposal, every follow-up
|
|
341
|
+
- 55+ hours/week for $12K take-home after expenses
|
|
342
|
+
- Referral-dependent with no pipeline ("those months are rough")
|
|
343
|
+
- Can't stop cold DMing even at $30K/mo
|
|
344
|
+
|
|
345
|
+
### Root Cause
|
|
346
|
+
You don't have selling systems. You ARE the selling system. That doesn't scale.
|
|
347
|
+
|
|
348
|
+
### The Revenue Levels
|
|
349
|
+
|
|
350
|
+
| Level | What Changes |
|
|
351
|
+
|-------|-------------|
|
|
352
|
+
| $10K/mo | Need to be good at your craft |
|
|
353
|
+
| $25K/mo | Need craft + client acquisition skills |
|
|
354
|
+
| $50K+ | Need craft + acquisition + systems that sell without you |
|
|
355
|
+
|
|
356
|
+
### The Fix
|
|
357
|
+
- Video doing the heavy lifting before anyone gets on a call
|
|
358
|
+
- Application forms qualifying prospects before calls
|
|
359
|
+
- Automated follow-up replacing manual chasing
|
|
360
|
+
- A front end that communicates what you can only say live today
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## Common Mistakes
|
|
365
|
+
|
|
366
|
+
### 1. Landing Pages Without Video
|
|
367
|
+
> "Agency owners spend $3K/mo on ads sending traffic to a landing page with no video, no social proof, a headline written in 5 minutes, and a 'book a call' button — then wonder why cost per lead is $200."
|
|
368
|
+
|
|
369
|
+
### 2. "Free Strategy Calls"
|
|
370
|
+
> "You spend 45 minutes giving away your best advice. The prospect says 'this was SO helpful!' Then they take everything you said and try to do it themselves."
|
|
371
|
+
|
|
372
|
+
### 3. Outdated VSLs
|
|
373
|
+
Your prices changed, you have new case studies, your pitch evolved — but the video from 18 months ago runs 24/7. An outdated VSL actively LOSES deals.
|
|
374
|
+
|
|
375
|
+
**However:** If it's still converting, don't touch it. Some clients run the same VSL for 2+ years. Don't fix what's making you money because you're bored.
|
|
376
|
+
|
|
377
|
+
### 4. Leading With Price
|
|
378
|
+
If the selling point of your VSL production is that it's "affordable" — you've already lost. The selling point is that it CONVERTS and pays for itself in week one.
|
|
379
|
+
|
|
380
|
+
### 5. "Build in Public" for Service Businesses
|
|
381
|
+
> "Great advice if your audience is other builders. Terrible if your audience is BUYERS. Your clients don't want to watch you figure it out. They want to hire someone who already has. Build in private. Show results in public."
|
|
382
|
+
|
|
383
|
+
---
|
|
384
|
+
|
|
385
|
+
## Getting Social Proof (Without Begging)
|
|
386
|
+
|
|
387
|
+
Weekly system:
|
|
388
|
+
1. Screenshot every client win from support chats/DMs
|
|
389
|
+
2. Save every tagged post and story before they expire
|
|
390
|
+
3. Record 2-min reaction clips at milestone moments
|
|
391
|
+
4. Screenshot every 5-star review
|
|
392
|
+
5. Run a "wins" thread in your community every Friday
|
|
393
|
+
|
|
394
|
+
Within 60 days: more proof than 99% of competitors.
|
|
395
|
+
|
|
396
|
+
---
|
|
397
|
+
|
|
398
|
+
## The Customer Journey Post-Sale
|
|
399
|
+
|
|
400
|
+
Even the best VSL is pointless without delivery. The framework:
|
|
401
|
+
|
|
402
|
+
1. **ACTIVATE** — Get them their first result fast
|
|
403
|
+
2. **TESTIMONIAL** — Ask for proof once they're happy
|
|
404
|
+
3. **REFER** — Incentivize them to send friends
|
|
405
|
+
4. **ASCEND** — Sell them the next thing before a competitor does
|
|
406
|
+
|
|
407
|
+
> "Most businesses don't even nail #1 and then hope the rest happens."
|
|
408
|
+
|
|
409
|
+
---
|
|
410
|
+
|
|
411
|
+
## Key Principles (Quick Reference)
|
|
412
|
+
|
|
413
|
+
| Principle | Detail |
|
|
414
|
+
|-----------|--------|
|
|
415
|
+
| One person, one problem | Go deep on one niche, not shallow on five |
|
|
416
|
+
| Clear, not clever | High-ticket buyers want clarity, not manipulation |
|
|
417
|
+
| Script > production | A well-written slides+voiceover VSL beats a poorly-written cinematic one |
|
|
418
|
+
| Every 30 seconds | Re-earn attention with new proof, stories, specifics |
|
|
419
|
+
| Open loops | Keep unanswered questions pulling viewers forward |
|
|
420
|
+
| Pain goes deep | Describe the FEELING, not just the surface problem |
|
|
421
|
+
| Proof has timing | Place testimonials at the moment of doubt |
|
|
422
|
+
| Handle objections | Pre-answer the 4-5 questions you always get on calls |
|
|
423
|
+
| The VSL qualifies | Good prospects stay, tire kickers leave |
|
|
424
|
+
| Update when necessary | If prices/positioning change, update. If it still converts, don't. |
|
|
425
|
+
| Faceless is fine | Script and structure convert, not your face |
|
|
426
|
+
| AI for first drafts | Use frameworks + prompts, then apply taste |
|
|
427
|
+
|
|
428
|
+
---
|
|
429
|
+
|
|
430
|
+
## Copywriting Prompts & Frameworks
|
|
431
|
+
|
|
432
|
+
When prompting AI for VSL scripts, include:
|
|
433
|
+
|
|
434
|
+
1. **Target audience** — exactly who, their revenue level, their specific situation
|
|
435
|
+
2. **Core problem** — the deep emotional pain, not the surface symptom
|
|
436
|
+
3. **Your offer** — what you do, how it works, timeline, deliverables
|
|
437
|
+
4. **Proof points** — specific case studies with numbers (before/after)
|
|
438
|
+
5. **Objections** — the 4-5 things prospects always ask
|
|
439
|
+
6. **Unique mechanism** — WHY your approach works (not just that it does)
|
|
440
|
+
7. **Clear CTA** — book a call, apply, etc.
|
|
441
|
+
|
|
442
|
+
**Structure to request in the prompt:**
|
|
443
|
+
- Hook (first 8 seconds — their problem, not you)
|
|
444
|
+
- Problem amplification (deep pain, specific scenarios)
|
|
445
|
+
- Authority establishment (brief — credentials + results)
|
|
446
|
+
- Solution reveal (your mechanism/approach)
|
|
447
|
+
- Proof (case studies woven in at moments of doubt)
|
|
448
|
+
- Objection handling (preemptive)
|
|
449
|
+
- Offer stack (what they get, how it works)
|
|
450
|
+
- Risk reversal (guarantee or similar)
|
|
451
|
+
- CTA (one clear next step)
|
|
452
|
+
|
|
453
|
+
---
|
|
454
|
+
|
|
455
|
+
## VSL Page & Funnel Optimization (2026 Pro Tips)
|
|
456
|
+
|
|
457
|
+
> **Source:** @JeremyHaynes — VSL pro tips, Mar 2026
|
|
458
|
+
|
|
459
|
+
### The Summary Section (First 60–90 Seconds)
|
|
460
|
+
|
|
461
|
+
The single highest-impact structural change you can make: **treat the first 60–90 seconds as a compressed version of your entire VSL.** Everything that's covered throughout the full video should be said in miniature form in this opening window.
|
|
462
|
+
|
|
463
|
+
**Why this works:** Human behavior is driven by efficiency and energy conservation. Viewers don't want to watch your whole video — they want to determine as quickly as possible whether it's for them and whether they should take action. They are competing with your incentive for them to watch more.
|
|
464
|
+
|
|
465
|
+
> Think of it as the tweet version of what you'd otherwise say in the full newsletter. Summarize everything, then expand on each point for the rest of the VSL.
|
|
466
|
+
|
|
467
|
+
**This is especially critical for affluent demographics** who prefer to make decisions fast. If you're running a longer VSL aimed at wealthy buyers, the summary section lets them act the moment they feel certain enough — without forcing them through 20 minutes first.
|
|
468
|
+
|
|
469
|
+
### Video Chaptering
|
|
470
|
+
|
|
471
|
+
Add chapter markers to your VSL (the same way YouTube videos have timestamp sections). Every modern video player supports this.
|
|
472
|
+
|
|
473
|
+
**Why:** Nobody wants to watch your VSL linearly like you wish they would. A large portion of viewers will scrub to the section they care about. By adding chapters, you:
|
|
474
|
+
- Increase overall consumption (people who'd otherwise bounce will skip to what matters to them)
|
|
475
|
+
- Improve retention metrics
|
|
476
|
+
- Let viewers consume in their preferred order
|
|
477
|
+
|
|
478
|
+
If someone's done with what you're saying, they're going to move on regardless. Chapters keep them on YOUR video instead of off the page entirely.
|
|
479
|
+
|
|
480
|
+
### The Button Withholding Decision
|
|
481
|
+
|
|
482
|
+
Should the apply/book button appear immediately or after a time delay? This is a context-dependent decision based on three factors:
|
|
483
|
+
|
|
484
|
+
| Factor | Show Button Immediately | Withhold Button |
|
|
485
|
+
|--------|------------------------|-----------------|
|
|
486
|
+
| **Budget** | Can't afford inflated cost-per-call while pixel relearns | Can endure short-term cost spike while pixel optimizes for high-intent watchers |
|
|
487
|
+
| **Sales team skill** | Strong closers who can nurture cold leads regardless | Weak closers who need prospects pre-sold before the call |
|
|
488
|
+
| **Volume needs** | Team demands full calendars, even lower-quality leads | Team prefers fewer, higher-intent appointments |
|
|
489
|
+
|
|
490
|
+
**Key tradeoff:** Withholding the button dramatically reduces scheduling volume initially and inflates cost per qualified call. It also reduces the conversion data flowing back to your pixel, which can break pixel conditioning and keep you stuck in learning phase.
|
|
491
|
+
|
|
492
|
+
**However:** If you can endure the process, withholding trains the pixel to find people who actually watch the VSL and THEN apply — meaning higher intent leads over time.
|
|
493
|
+
|
|
494
|
+
#### The Play Bar Question
|
|
495
|
+
|
|
496
|
+
Should you show or hide the video scrub bar?
|
|
497
|
+
|
|
498
|
+
- **If you're withholding the button → also withhold the play bar.** Otherwise someone scrubs to the end, feels ready to act, but has no button because the time threshold hasn't passed. Bad experience.
|
|
499
|
+
- **If the button is visible → show the play bar.** Hiding it while the button is available actually lowers intent. People who want to skip ahead get annoyed, and frustrated viewers convert at lower quality.
|
|
500
|
+
- **Majority of top performers** are showing the play bar + using video chaptering and seeing strong results.
|
|
501
|
+
|
|
502
|
+
### Pixel Conditioning Interaction
|
|
503
|
+
|
|
504
|
+
In 2026, exiting learning phase matters significantly for campaign performance. Withholding the button reduces conversion volume sent back to the pixel, which can keep you stuck in learning mode.
|
|
505
|
+
|
|
506
|
+
- There's no static answer for how many conversions you need (the old "50 in a week" rule is outdated)
|
|
507
|
+
- Could be as few as 5 or as many as hundreds depending on the campaign
|
|
508
|
+
- The goal: send enough high-intent conversion signals back to the pixel to exit learning phase
|
|
509
|
+
|
|
510
|
+
**The ideal scenario:** Withhold the button → only high-intent watchers apply → pixel receives exclusively high-intent signals → pixel finds more of those people. But this only works if you're operating at enough scale to keep the data flowing.
|
|
511
|
+
|
|
512
|
+
### Maximizing Play Rate
|
|
513
|
+
|
|
514
|
+
Play rate = percentage of page visitors who actually press play. Key tactics:
|
|
515
|
+
|
|
516
|
+
**1. Video Thumbnails**
|
|
517
|
+
- Use animated video thumbnails (a few-second clip) — they still dramatically outperform static images in 2026
|
|
518
|
+
- The thumbnail should demonstrate what people most want to know when they hit the page
|
|
519
|
+
- Pick a section of the VSL that shows the information viewers care about, or record a separate short thumbnail clip
|
|
520
|
+
- If using a static image for page speed optimization, same principle: show what the video covers that the viewer cares about
|
|
521
|
+
- **Recommended players:** Wistia or Vidalytics (stay away from YouTube/Vimeo for VSL hosting)
|
|
522
|
+
|
|
523
|
+
**2. Isolate the Video as the Focal Point**
|
|
524
|
+
This is critical: **if you put too much information on the page, people will scroll instead of watching.**
|
|
525
|
+
|
|
526
|
+
> People bias toward energy conservation and efficiency. Given the choice between reading a page and watching a video, they'll scroll, decide, and leave — without ever pressing play.
|
|
527
|
+
|
|
528
|
+
**The proven page layout for maximum play rate:**
|
|
529
|
+
1. Headline
|
|
530
|
+
2. VSL video
|
|
531
|
+
3. Application/button embedded on the page
|
|
532
|
+
|
|
533
|
+
That's it. No lengthy copy sections. No feature lists. No about-us blocks. Make the video the ONLY way to get the information they came for.
|
|
534
|
+
|
|
535
|
+
### Maximizing Engagement Rate
|
|
536
|
+
|
|
537
|
+
Engagement rate = average percentage of the VSL that viewers consume. A 10-min VSL watched for 3 min on average = 30% engagement rate.
|
|
538
|
+
|
|
539
|
+
**Important nuance:** High engagement rate is NOT always good.
|
|
540
|
+
- **Good sign:** People are hooked and want to hear everything you're saying
|
|
541
|
+
- **Bad sign:** People are interested but can't understand what you do or how it works, so they HAVE to keep watching trying to figure it out
|
|
542
|
+
|
|
543
|
+
> If you're highly effective at articulating yourself, you can prompt action and create certainty in fewer words. The goal is efficient clarity, not maximum watch time.
|
|
544
|
+
|
|
545
|
+
**Tactics to increase engagement:**
|
|
546
|
+
1. **Edit the video well** — jump cuts + captions as minimum, but visual edits, music, sound effects, and memes significantly help retention in 2026. People's attention spans are fried.
|
|
547
|
+
2. **Tonality and authority** — how you speak matters as much as what you say
|
|
548
|
+
3. **Message congruency** — the VSL must feel like a natural continuation of whatever ad or content got them to the page. Mismatched messaging = instant drop-off.
|
|
549
|
+
4. **Storytine flow** — the overall narrative arc should pull people forward
|
|
550
|
+
|
|
551
|
+
### VSL Length by Audience (2026 Data)
|
|
552
|
+
|
|
553
|
+
| Audience | Optimal Length | Notes |
|
|
554
|
+
|----------|---------------|-------|
|
|
555
|
+
| **Affluent/rich demographics** | 2–5 minutes | Shorter, more direct, concentrated information. Use the summary section technique. |
|
|
556
|
+
| **General public** | 10–20 minutes (up to 60 min) | Responds well to longer content. Can justify button withholding for quality filtering. |
|
|
557
|
+
| **Typical sweet spot** | 10–20 minutes | Where most successful VSLs currently land across audiences |
|
|
558
|
+
|
|
559
|
+
> One client uses a literal unedited podcast (~1 hour) as their VSL for a general public audience and it works. Rich people would never sit through that.
|
|
560
|
+
|
|
561
|
+
### VSL Presentation Styles (All Working in 2026)
|
|
562
|
+
|
|
563
|
+
| Style | Description | Best For |
|
|
564
|
+
|-------|-------------|----------|
|
|
565
|
+
| **Google Doc / Slide + Talking Head** | Split screen: document/slides on left, you on right reading/discussing | Information-dense offers, consulting |
|
|
566
|
+
| **Classic Talking Head** | Direct to camera, edited like a YouTube video | Personal brand, authority-driven offers |
|
|
567
|
+
| **Slides + Voiceover** | Screen recording with slides and voice narration, no face | Shy presenters, faceless brands, quick production |
|
|
568
|
+
|
|
569
|
+
No single style dominates — it's an even mix. Pick what matches your strengths and audience.
|
|
570
|
+
|
|
571
|
+
---
|
|
572
|
+
|
|
573
|
+
## Copywriting Prompts & Frameworks
|
|
574
|
+
|
|
575
|
+
When prompting AI for VSL scripts, include:
|
|
576
|
+
|
|
577
|
+
1. **Target audience** — exactly who, their revenue level, their specific situation
|
|
578
|
+
2. **Audience wealth level** — this determines VSL length, pacing, and whether to use the summary section technique
|
|
579
|
+
3. **Core problem** — the deep emotional pain, not the surface symptom
|
|
580
|
+
4. **Your offer** — what you do, how it works, timeline, deliverables
|
|
581
|
+
5. **Proof points** — specific case studies with numbers (before/after)
|
|
582
|
+
6. **Objections** — the 4-5 things prospects always ask
|
|
583
|
+
7. **Unique mechanism** — WHY your approach works (not just that it does)
|
|
584
|
+
8. **Clear CTA** — book a call, apply, etc.
|
|
585
|
+
|
|
586
|
+
**Structure to request in the prompt:**
|
|
587
|
+
- Summary section (first 60–90 seconds — compressed version of the entire pitch)
|
|
588
|
+
- Hook (first 8 seconds — their problem, not you)
|
|
589
|
+
- Problem amplification (deep pain, specific scenarios)
|
|
590
|
+
- Authority establishment (brief — credentials + results)
|
|
591
|
+
- Solution reveal (your mechanism/approach)
|
|
592
|
+
- Proof (case studies woven in at moments of doubt)
|
|
593
|
+
- Objection handling (preemptive)
|
|
594
|
+
- Offer stack (what they get, how it works)
|
|
595
|
+
- Risk reversal (guarantee or similar)
|
|
596
|
+
- CTA (one clear next step)
|
|
597
|
+
|
|
598
|
+
**Page setup instructions to include:**
|
|
599
|
+
- Minimal page: headline + video + button only
|
|
600
|
+
- Video thumbnail that previews what viewers care about most
|
|
601
|
+
- Chapter markers for key sections
|
|
602
|
+
- Button timing decision based on audience + sales team capability
|
|
603
|
+
|
|
604
|
+
---
|
|
605
|
+
|
|
606
|
+
*Last updated: 2026-03-18 | Consolidated from @LucasHogie distillation + @JeremyHaynes 2026 pro tips*
|
|
Binary file
|
|
Binary file
|