bobo-ai-cli 1.0.1

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.
Files changed (234) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +216 -0
  3. package/dist/agent.d.ts +9 -0
  4. package/dist/agent.js +144 -0
  5. package/dist/agent.js.map +1 -0
  6. package/dist/config.d.ts +15 -0
  7. package/dist/config.js +76 -0
  8. package/dist/config.js.map +1 -0
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +366 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/knowledge-commands.d.ts +2 -0
  13. package/dist/knowledge-commands.js +40 -0
  14. package/dist/knowledge-commands.js.map +1 -0
  15. package/dist/knowledge.d.ts +17 -0
  16. package/dist/knowledge.js +112 -0
  17. package/dist/knowledge.js.map +1 -0
  18. package/dist/memory.d.ts +17 -0
  19. package/dist/memory.js +215 -0
  20. package/dist/memory.js.map +1 -0
  21. package/dist/planner.d.ts +22 -0
  22. package/dist/planner.js +130 -0
  23. package/dist/planner.js.map +1 -0
  24. package/dist/project.d.ts +25 -0
  25. package/dist/project.js +117 -0
  26. package/dist/project.js.map +1 -0
  27. package/dist/rules-commands.d.ts +2 -0
  28. package/dist/rules-commands.js +51 -0
  29. package/dist/rules-commands.js.map +1 -0
  30. package/dist/skills.d.ts +28 -0
  31. package/dist/skills.js +349 -0
  32. package/dist/skills.js.map +1 -0
  33. package/dist/structured/loader.d.ts +19 -0
  34. package/dist/structured/loader.js +147 -0
  35. package/dist/structured/loader.js.map +1 -0
  36. package/dist/structured/paths.d.ts +2 -0
  37. package/dist/structured/paths.js +14 -0
  38. package/dist/structured/paths.js.map +1 -0
  39. package/dist/structured/project-scaffold.d.ts +7 -0
  40. package/dist/structured/project-scaffold.js +60 -0
  41. package/dist/structured/project-scaffold.js.map +1 -0
  42. package/dist/structured/render-markdown.d.ts +37 -0
  43. package/dist/structured/render-markdown.js +47 -0
  44. package/dist/structured/render-markdown.js.map +1 -0
  45. package/dist/structured/render-table.d.ts +1 -0
  46. package/dist/structured/render-table.js +15 -0
  47. package/dist/structured/render-table.js.map +1 -0
  48. package/dist/structured/search.d.ts +10 -0
  49. package/dist/structured/search.js +104 -0
  50. package/dist/structured/search.js.map +1 -0
  51. package/dist/structured/skill-runner.d.ts +15 -0
  52. package/dist/structured/skill-runner.js +60 -0
  53. package/dist/structured/skill-runner.js.map +1 -0
  54. package/dist/structured/types.d.ts +212 -0
  55. package/dist/structured/types.js +97 -0
  56. package/dist/structured/types.js.map +1 -0
  57. package/dist/structured-skills-commands.d.ts +3 -0
  58. package/dist/structured-skills-commands.js +126 -0
  59. package/dist/structured-skills-commands.js.map +1 -0
  60. package/dist/structured-template-commands.d.ts +2 -0
  61. package/dist/structured-template-commands.js +34 -0
  62. package/dist/structured-template-commands.js.map +1 -0
  63. package/dist/tools/index.d.ts +3 -0
  64. package/dist/tools/index.js +450 -0
  65. package/dist/tools/index.js.map +1 -0
  66. package/dist/ui.d.ts +19 -0
  67. package/dist/ui.js +72 -0
  68. package/dist/ui.js.map +1 -0
  69. package/dist/web.d.ts +4 -0
  70. package/dist/web.js +124 -0
  71. package/dist/web.js.map +1 -0
  72. package/knowledge/advanced-patterns.md +70 -0
  73. package/knowledge/agent-directives.md +74 -0
  74. package/knowledge/dream.md +36 -0
  75. package/knowledge/engineering.md +46 -0
  76. package/knowledge/error-catalog.md +33 -0
  77. package/knowledge/index.json +170 -0
  78. package/knowledge/memory/cache-optimization-and-skill-integration.md +102 -0
  79. package/knowledge/memory/engineering-patterns.md +134 -0
  80. package/knowledge/memory/feedback_root_structure.md +16 -0
  81. package/knowledge/memory/project-contexts.md +69 -0
  82. package/knowledge/memory/tools-and-services.md +85 -0
  83. package/knowledge/rules/agents.md +62 -0
  84. package/knowledge/rules/blocking-rules.md +323 -0
  85. package/knowledge/rules/cache-management.md +379 -0
  86. package/knowledge/rules/capability-evolution.md +132 -0
  87. package/knowledge/rules/coding.md +126 -0
  88. package/knowledge/rules/engineering-workflows.md +225 -0
  89. package/knowledge/rules/evomap-content-guidelines.md +354 -0
  90. package/knowledge/rules/evomap-guide.md +224 -0
  91. package/knowledge/rules/git.md +31 -0
  92. package/knowledge/rules/hooks.md +106 -0
  93. package/knowledge/rules/performance.md +101 -0
  94. package/knowledge/rules/remotion-auto-production.md +1120 -0
  95. package/knowledge/rules/security.md +46 -0
  96. package/knowledge/rules/testing.md +32 -0
  97. package/knowledge/rules/work-mode.md +208 -0
  98. package/knowledge/rules.md +62 -0
  99. package/knowledge/skills/Skill_Seekers.md +1722 -0
  100. package/knowledge/skills/ab-test-setup.md +557 -0
  101. package/knowledge/skills/agent-sdk-dev.md +238 -0
  102. package/knowledge/skills/agent-tools.md +136 -0
  103. package/knowledge/skills/analytics-tracking.md +597 -0
  104. package/knowledge/skills/artifacts-builder.md +89 -0
  105. package/knowledge/skills/asana.md +13 -0
  106. package/knowledge/skills/backend-expert.md +97 -0
  107. package/knowledge/skills/brand-voice.md +481 -0
  108. package/knowledge/skills/browser-use.md +419 -0
  109. package/knowledge/skills/cache-optimization-skill.md +179 -0
  110. package/knowledge/skills/canvas-design.md +147 -0
  111. package/knowledge/skills/citation-validator.md +203 -0
  112. package/knowledge/skills/clangd-lsp.md +52 -0
  113. package/knowledge/skills/code-review-expert.md +85 -0
  114. package/knowledge/skills/code-review.md +280 -0
  115. package/knowledge/skills/code-simplifier.md +13 -0
  116. package/knowledge/skills/commit-commands.md +258 -0
  117. package/knowledge/skills/competitor-alternatives.md +795 -0
  118. package/knowledge/skills/content-atomizer.md +910 -0
  119. package/knowledge/skills/content-research-writer.md +605 -0
  120. package/knowledge/skills/context-optimization-suite.md +162 -0
  121. package/knowledge/skills/context7.md +13 -0
  122. package/knowledge/skills/copy-editing.md +494 -0
  123. package/knowledge/skills/copywriting.md +510 -0
  124. package/knowledge/skills/csharp-lsp.md +40 -0
  125. package/knowledge/skills/decision-making-framework.md +154 -0
  126. package/knowledge/skills/developer-growth-analysis.md +335 -0
  127. package/knowledge/skills/direct-response-copy.md +2336 -0
  128. package/knowledge/skills/docker-expert.md +229 -0
  129. package/knowledge/skills/document-skills.md +13 -0
  130. package/knowledge/skills/documentation-expert.md +126 -0
  131. package/knowledge/skills/email-sequence.md +1061 -0
  132. package/knowledge/skills/email-sequences.md +910 -0
  133. package/knowledge/skills/example-plugin.md +72 -0
  134. package/knowledge/skills/explanatory-output-style.md +82 -0
  135. package/knowledge/skills/feature-dev.md +458 -0
  136. package/knowledge/skills/file-organizer.md +466 -0
  137. package/knowledge/skills/firebase.disabled.md +13 -0
  138. package/knowledge/skills/form-cro.md +488 -0
  139. package/knowledge/skills/free-tool-strategy.md +636 -0
  140. package/knowledge/skills/frontend-design-offical.md +55 -0
  141. package/knowledge/skills/frontend-design.md +41 -0
  142. package/knowledge/skills/frontend-expert.md +93 -0
  143. package/knowledge/skills/github.md +13 -0
  144. package/knowledge/skills/gitlab.md +13 -0
  145. package/knowledge/skills/gopls-lsp.md +32 -0
  146. package/knowledge/skills/got-controller.md +218 -0
  147. package/knowledge/skills/greptile.md +72 -0
  148. package/knowledge/skills/hookify.md +376 -0
  149. package/knowledge/skills/image-editor.md +189 -0
  150. package/knowledge/skills/image-enhancer.md +109 -0
  151. package/knowledge/skills/jdtls-lsp.md +49 -0
  152. package/knowledge/skills/json-canvas.md +654 -0
  153. package/knowledge/skills/keyword-research.md +559 -0
  154. package/knowledge/skills/kotlin-lsp.md +28 -0
  155. package/knowledge/skills/laravel-boost.md +13 -0
  156. package/knowledge/skills/launch-strategy.md +394 -0
  157. package/knowledge/skills/lead-magnet.md +393 -0
  158. package/knowledge/skills/learning-output-style.md +106 -0
  159. package/knowledge/skills/linear.md +13 -0
  160. package/knowledge/skills/lua-lsp.md +47 -0
  161. package/knowledge/skills/marketing-ideas.md +720 -0
  162. package/knowledge/skills/marketing-psychology.md +534 -0
  163. package/knowledge/skills/mcp-builder.md +369 -0
  164. package/knowledge/skills/meeting-insights-analyzer.md +347 -0
  165. package/knowledge/skills/memory-evolution-system.md +172 -0
  166. package/knowledge/skills/multi-lens-thinking.md +407 -0
  167. package/knowledge/skills/nano-banana-pro.md +116 -0
  168. package/knowledge/skills/newsletter.md +736 -0
  169. package/knowledge/skills/notebooklm.md +296 -0
  170. package/knowledge/skills/obsidian-bases.md +634 -0
  171. package/knowledge/skills/obsidian-markdown.md +651 -0
  172. package/knowledge/skills/onboarding-cro.md +494 -0
  173. package/knowledge/skills/orchestrator.md +681 -0
  174. package/knowledge/skills/page-cro.md +379 -0
  175. package/knowledge/skills/paid-ads.md +624 -0
  176. package/knowledge/skills/paywall-upgrade-cro.md +651 -0
  177. package/knowledge/skills/php-lsp.md +36 -0
  178. package/knowledge/skills/planning-with-files.md +193 -0
  179. package/knowledge/skills/playwright.md +13 -0
  180. package/knowledge/skills/plugin-dev.md +434 -0
  181. package/knowledge/skills/popup-cro.md +520 -0
  182. package/knowledge/skills/positioning-angles.md +330 -0
  183. package/knowledge/skills/pr-review-toolkit.md +359 -0
  184. package/knowledge/skills/pricing-strategy.md +777 -0
  185. package/knowledge/skills/programmatic-seo.md +714 -0
  186. package/knowledge/skills/pyright-lsp.md +43 -0
  187. package/knowledge/skills/quality-assurance-framework.md +168 -0
  188. package/knowledge/skills/question-refiner.md +160 -0
  189. package/knowledge/skills/ralph-loop.md +205 -0
  190. package/knowledge/skills/refactoring-expert.md +103 -0
  191. package/knowledge/skills/referral-program.md +668 -0
  192. package/knowledge/skills/research-executor.md +164 -0
  193. package/knowledge/skills/review-with-security.md +12 -0
  194. package/knowledge/skills/rust-analyzer-lsp.md +50 -0
  195. package/knowledge/skills/schema-markup.md +647 -0
  196. package/knowledge/skills/security-audit-expert.md +124 -0
  197. package/knowledge/skills/security-expert.md +140 -0
  198. package/knowledge/skills/security-guidance.md +13 -0
  199. package/knowledge/skills/seedance-prompt.md +139 -0
  200. package/knowledge/skills/self-evolution.md +1160 -0
  201. package/knowledge/skills/seo-audit.md +432 -0
  202. package/knowledge/skills/seo-content.md +787 -0
  203. package/knowledge/skills/serena.md +13 -0
  204. package/knowledge/skills/signup-flow-cro.md +409 -0
  205. package/knowledge/skills/skill-creator.md +220 -0
  206. package/knowledge/skills/skill-manager.md +226 -0
  207. package/knowledge/skills/skill-share.md +98 -0
  208. package/knowledge/skills/slack.md +13 -0
  209. package/knowledge/skills/social-content.md +878 -0
  210. package/knowledge/skills/spec-flow-skill.md +124 -0
  211. package/knowledge/skills/stripe.md +13 -0
  212. package/knowledge/skills/supabase.md +13 -0
  213. package/knowledge/skills/swift-lsp.md +40 -0
  214. package/knowledge/skills/synthesizer.md +236 -0
  215. package/knowledge/skills/template-skill.md +16 -0
  216. package/knowledge/skills/testing-expert.md +99 -0
  217. package/knowledge/skills/theme-factory.md +72 -0
  218. package/knowledge/skills/tiktok-research.md +208 -0
  219. package/knowledge/skills/typescript-lsp.md +36 -0
  220. package/knowledge/skills/ui-ux-pro-max.md +247 -0
  221. package/knowledge/skills/verify.md +15 -0
  222. package/knowledge/skills/visual-prompt-engineer.md +102 -0
  223. package/knowledge/skills/webapp-testing.md +111 -0
  224. package/knowledge/skills/wide-research.md +191 -0
  225. package/knowledge/system.md +93 -0
  226. package/knowledge/task-router.md +37 -0
  227. package/knowledge/verification.md +38 -0
  228. package/knowledge/workflows/3d-viz.md +47 -0
  229. package/knowledge/workflows/data-pipeline.md +47 -0
  230. package/knowledge/workflows/db-migration.md +51 -0
  231. package/knowledge/workflows/feature-dev.md +41 -0
  232. package/knowledge/workflows/tdd-flow.md +52 -0
  233. package/knowledge/workflows/ui-verify.md +51 -0
  234. package/package.json +60 -0
@@ -0,0 +1,2336 @@
1
+ ---
2
+ id: "direct-response-copy"
3
+ title: "Direct Response Copy"
4
+ category: "marketing"
5
+ tags: ["direct response copy", "the core principle", "headlines", "opening lines", "curiosity gaps and open loops", "pain quantification", "the so what? chain", "the founder story", "testimonials"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/direct-response-copy"
9
+ ---
10
+
11
+ ---
12
+ name: direct-response-copy
13
+ description: 'Write copy that converts. Use when writing landing pages, emails, sales copy, headlines, CTAs, social posts, or any persuasive content. Triggers on: make this convert, write copy for X, help me sell X, punch this up, write a landing page, write sales copy. Produces internet-native copy that sounds like a smart friend explaining something while quietly deploying every persuasion principle in the book. Includes complete reference material from Schwartz, Hopkins, Ogilvy, Halbert, Caples, Sugarman, and Collier.'
14
+ ---
15
+
16
+ # Direct Response Copy
17
+
18
+ Here's what separates copy that converts from copy that just exists: the good stuff sounds like a person talking to you. Not a marketing team. Not a guru. Not a robot. A person who figured something out and wants to share it.
19
+
20
+ That's what this skill does. It writes copy that feels natural while deploying the persuasion principles that actually work. The reader shouldn't notice the technique. They should just find themselves nodding along and clicking the button.
21
+
22
+ ## The core principle
23
+
24
+ Write like you're explaining to a smart friend who's skeptical but curious. Back up every claim with specifics. Make the transformation viscerally clear.
25
+
26
+ That's it. Everything else flows from there.
27
+
28
+ ---
29
+
30
+ ## Headlines
31
+
32
+ The headline does 80% of the work. One headline can outpull another by 19.5x. Same product, same offer, different headline.
33
+
34
+ ### The master formula
35
+
36
+ > **[Action verb] + [specific outcome] + [timeframe or contrast]**
37
+
38
+ - "Ship your startup in days, not weeks"
39
+ - "Save 4 hours per person every single week"
40
+ - "Build a $10K/month business in 90 days"
41
+
42
+ The contrast version ("days, not weeks") creates before/after in six words.
43
+
44
+ ### The story headline
45
+
46
+ John Caples wrote the most famous ad headline ever:
47
+
48
+ > "They Laughed When I Sat Down at the Piano... But When I Started to Play!"
49
+
50
+ It's a complete story in 15 words. Embarrassment, then triumph. Universal emotion. You have to know what happened next.
51
+
52
+ **The pattern:** "They [doubted] when I [action]... But when I [result]..."
53
+
54
+ ### The specificity headline
55
+
56
+ Ogilvy's Rolls-Royce:
57
+
58
+ > "At 60 miles an hour, the loudest noise in this new Rolls-Royce comes from the electric clock."
59
+
60
+ Doesn't say "quiet car." Shows you with specific detail. The reader concludes "this must be quiet" themselves. Self-persuasion is stronger than being told.
61
+
62
+ **The pattern:** [Specific number/metric] + [Unexpected comparison or detail]
63
+
64
+ ### The question headline
65
+
66
+ > "Do You Make These Mistakes in English?"
67
+
68
+ This ran for 40 years. Works because the reader immediately thinks "what mistakes?" and self-selects.
69
+
70
+ **The pattern:** "Do you [common struggle]?" or "What if you could [desirable outcome]?"
71
+
72
+ ### The transformation headline
73
+
74
+ > "From Broke Musician to $100K/Year Music Teacher"
75
+
76
+ Before and after in one line. The reader sees themselves in the "before."
77
+
78
+ **The pattern:** "From [bad state] to [good state]"
79
+
80
+ ### What makes headlines fail
81
+
82
+ - Trying to be clever instead of clear
83
+ - Forgetting self-interest (what's in it for them?)
84
+ - Vague claims instead of specific benefits
85
+ - No curiosity gap (tells everything, nothing left to discover)
86
+
87
+ ---
88
+
89
+ ## Opening lines
90
+
91
+ The first sentence has one job: get them to read the second sentence.
92
+
93
+ ### The direct challenge
94
+
95
+ > "You've been using Claude wrong."
96
+
97
+ Stops the scroll. Creates tension. Self-selects readers who suspect you might be right.
98
+
99
+ ### The story opening
100
+
101
+ > "Last Tuesday, I opened my laptop and saw a number I couldn't believe: $47,329 in one day."
102
+
103
+ The reader is IN the scene before they know they're reading sales copy.
104
+
105
+ ### The confession
106
+
107
+ > "I'll be honest with you. I almost gave up on this business three times."
108
+
109
+ Vulnerability disarms skepticism. They think "they're like me."
110
+
111
+ ### The specific result
112
+
113
+ > "In 9 months, we did $400k+ on a vibe-coded website using these exact methods."
114
+
115
+ Specific numbers create credibility. Reader wants to know how.
116
+
117
+ ### The question
118
+
119
+ > "Have you ever stared at a blank page, knowing you need to write something that sells... and just froze?"
120
+
121
+ If the question matches their reality, they're hooked.
122
+
123
+ ### The short sentence (Sugarman's approach)
124
+
125
+ > "It's simple."
126
+
127
+ > "Here's the truth."
128
+
129
+ > "This works."
130
+
131
+ No friction to start reading. They're into paragraph two before they realize it.
132
+
133
+ ### Openings to avoid
134
+
135
+ - "In today's fast-paced world..."
136
+ - "Are you ready to take your business to the next level?"
137
+ - "Welcome! I'm so glad you're here."
138
+ - "In this article, you'll learn..."
139
+ - "Let's dive in!"
140
+
141
+ These are generic. They could be about anything. They don't demonstrate understanding.
142
+
143
+ ---
144
+
145
+ ## Curiosity gaps and open loops
146
+
147
+ The human brain craves closure. Open a loop, and they'll keep reading to close it.
148
+
149
+ ### What's an open loop?
150
+
151
+ Incomplete information that creates psychological tension. You tease something without revealing it.
152
+
153
+ TV shows end every episode with a cliffhanger. You can't NOT watch the next one. Same principle in copy.
154
+
155
+ ### Creating the gap
156
+
157
+ **Weak (no gap):** "10 Tips for Better Writing"
158
+
159
+ **Strong (gap):** "I tested 47 headlines. One pattern beat everything else by 3x."
160
+
161
+ The weak version tells you exactly what you'll get. The strong version creates a question: which pattern?
162
+
163
+ ### Seeds of curiosity
164
+
165
+ End paragraphs with hooks that pull into the next section:
166
+
167
+ - "But that's not even the best part."
168
+ - "Here's where it gets interesting."
169
+ - "Let me explain why."
170
+ - "Which brings me to the real secret."
171
+ - "Now here's the thing..."
172
+
173
+ Use 2-4 per page. Every paragraph ending with "but there's more" gets tiresome.
174
+
175
+ ### The partial reveal
176
+
177
+ > "The formula has three parts. The first one is obvious. The third one is counterintuitive. But the second one? That's where the magic happens."
178
+
179
+ Now they need to know the second part.
180
+
181
+ ### Closing loops
182
+
183
+ You must close every loop you open. Tease "the one thing that changed everything" and never deliver? They'll never trust you again.
184
+
185
+ Small loops: close within 1-3 paragraphs. Big loops: close by the end of the piece.
186
+
187
+ ---
188
+
189
+ ## Flow techniques: the slippery slide
190
+
191
+ Sugarman: "Your readers should be so compelled to read your copy that they cannot stop reading until they read all of it as if sliding down a slippery slide."
192
+
193
+ Once they start, they can't stop. Every element pulls them to the next.
194
+
195
+ ### Bucket brigades
196
+
197
+ Short phrases that smooth transitions between paragraphs:
198
+
199
+ - And
200
+ - So
201
+ - Now
202
+ - But
203
+ - Look
204
+ - Here's why
205
+ - Truth is
206
+ - Turns out
207
+ - The result?
208
+ - Think about it
209
+
210
+ **Without:** "Most landing pages focus on features. Benefits are what customers care about."
211
+
212
+ **With:** "Most landing pages focus on features. Here's the thing: Benefits are what customers care about."
213
+
214
+ The transition phrase smooths entry into the second paragraph.
215
+
216
+ ### The stutter technique
217
+
218
+ Repeat a word from the last sentence in the first sentence of the next paragraph:
219
+
220
+ > "Now we're going to look at a more sophisticated technique.
221
+ >
222
+ > A technique used by professional writers, but often overlooked by copywriters."
223
+
224
+ "Technique" bridges the gap. Smoother than starting fresh.
225
+
226
+ ### Short first sentences
227
+
228
+ The first sentence of any section should be stupidly easy to read:
229
+
230
+ > "It's simple."
231
+
232
+ > "Here's the problem."
233
+
234
+ > "This works."
235
+
236
+ Low friction to start. Momentum builds from there.
237
+
238
+ ### Vary paragraph length
239
+
240
+ Same-length paragraphs = monotonous reading.
241
+
242
+ Short.
243
+
244
+ Then a medium paragraph that expands with more detail.
245
+
246
+ Then short again.
247
+
248
+ This creates rhythm. The eye moves easily.
249
+
250
+ ### Momentum killers
251
+
252
+ - Jargon they have to pause to understand
253
+ - Long paragraphs with no breaks
254
+ - Tangents that don't connect to the main thread
255
+ - Weak transitions that jar the reader
256
+ - Same sentence structure repeated too many times
257
+
258
+ ---
259
+
260
+ ## Pain quantification
261
+
262
+ Vague problems feel overwhelming. Quantified problems feel solvable.
263
+
264
+ Don't just describe the pain. Do the math:
265
+
266
+ > "4 hrs to set up emails + 6 hrs designing a landing page + 4 hrs to handle Stripe webhooks + 2 hrs for SEO tags + ∞ hrs overthinking...
267
+ >
268
+ > = 22+ hours of headaches.
269
+ >
270
+ > There's an easier way."
271
+
272
+ When readers see "22+ hours," they calculate whether that's worth paying to eliminate. You've turned abstract frustration into a number they can weigh against your price.
273
+
274
+ Another approach: the scenario that makes them feel it:
275
+
276
+ > "Imagine the scene: you and your team get an urgent email, so you rapidly reply. But just after you hit send, your team replies as well. In the best case, you look disorganized. In the worst case, you contradict each other."
277
+
278
+ They've been there. Now they feel the problem instead of just acknowledging it.
279
+
280
+ ---
281
+
282
+ ## The So What? Chain
283
+
284
+ AI stops at the first layer of benefit. "Saves time." "Increases productivity." "Helps you grow." Weak.
285
+
286
+ For every feature, ask "so what?" until you hit something emotional or financial:
287
+
288
+ > **Feature:** Fast database
289
+ > "So what?"
290
+ > **Functional:** Queries load in milliseconds
291
+ > "So what?"
292
+ > **Financial:** Users don't bounce, revenue doesn't leak
293
+ > "So what?"
294
+ > **Emotional:** You stop waking up stressed about churn
295
+
296
+ The bottom of the chain is where the copy lives. Not "saves 4 hours" but "close your laptop at 5pm instead of 9pm." Not "automates outreach" but "wake up to replies instead of a blank inbox."
297
+
298
+ Three levels deep. Then write from there.
299
+
300
+ ---
301
+
302
+ ## Rhythm: alternation
303
+
304
+ Here's where most AI-generated copy fails. It's either all choppy fragments or all flowing paragraphs. Real human writing alternates.
305
+
306
+ Short sentence. Impact. Then a longer one that breathes, adds context, feels like actual conversation.
307
+
308
+ Watch how Hormozi does it:
309
+
310
+ > "Customers do NOT buy code. Customers buy a life transformation."
311
+
312
+ Punchy. Declarative. Repeated structure.
313
+
314
+ Now Justin Welsh:
315
+
316
+ > "Once upon a time, you had a job. You traded hours for dollars, clocked in and out, and waited for the weekend. Your skills were confined to a cubicle and your ambitions to an annual review and a 4% raise."
317
+
318
+ Longer. Conversational. Building through parallel structure.
319
+
320
+ Both work. The key is knowing when to punch and when to breathe.
321
+
322
+ **The pattern:**
323
+
324
+ - Hook (short, sharp)
325
+ - Expand (breathe, add context)
326
+ - Land it (kicker that punctuates)
327
+
328
+ Then repeat.
329
+
330
+ ---
331
+
332
+ ## The founder story
333
+
334
+ Almost every high-converting creator page includes a first-person story. The format: humble origins, struggle, discovery, success, offer.
335
+
336
+ > "Hey, it's Marc 👋 In 2018, I believed I was Mark Zuckerberg, built a startup for 1 year, and got 0 users... A few years after my burnout, I restarted the journey differently: I shipped like a madman. 16 startups in 2 years. Now I'm happy and earn $45,000 a month."
337
+
338
+ Why this works:
339
+
340
+ - Self-deprecating humor ("I believed I was Mark Zuckerberg") disarms skepticism
341
+ - Specific numbers ("16 startups in 2 years," "$45,000 a month") prove results
342
+ - The implicit message: I was where you are. I found the answer. Here it is.
343
+
344
+ The arc is always: **vulnerability → credibility → shared journey**
345
+
346
+ If you're writing for a founder, get their story. This isn't optional. It's the highest-trust element on the page.
347
+
348
+ ---
349
+
350
+ ## Testimonials
351
+
352
+ Generic testimonials ("Great product!") carry zero persuasive weight. Structure them as mini case studies:
353
+
354
+ > **[Before state] + [action taken] + [specific outcome] + [timeframe] + [emotional reaction]**
355
+
356
+ Examples:
357
+
358
+ - "I shipped in 6 days as a noob coder. It would have taken me months. I wanna cry 🥲"
359
+ - "I managed to exit and sell for 5 figures in a few weeks. Best investment I've made in so long."
360
+ - "We were able to buy our first business within 4 months of joining."
361
+
362
+ The specifics are everything. "4 months" is believable. "Helped me succeed" is not.
363
+
364
+ **Authority stacking:** If you have recognizable names, lead with them. Borrowed credibility creates instant trust transfer.
365
+
366
+ ---
367
+
368
+ ## Disqualification
369
+
370
+ This feels counterintuitive but works consistently. Tell certain people they're not a fit:
371
+
372
+ > "You're a good fit for this if:
373
+ > ✅ You know this is a tool, and you'll need to use it
374
+ > ✅ You're willing to reassess your existing ideas
375
+ >
376
+ > You're NOT a good fit if:
377
+ > ❌ You equate success with just buying a course
378
+ > ❌ You're not willing to do the unsexy work required"
379
+
380
+ Why this converts: It flips from "please buy" to "prove you're worthy." Velvet rope effect. Also pre-filters customers likely to complain.
381
+
382
+ Even simpler, for handling objections:
383
+
384
+ > "Couldn't I just do this myself with all the free content out there?"
385
+ >
386
+ > "If you could, you would have already. 🤷🏻"
387
+
388
+ ---
389
+
390
+ ## CTAs
391
+
392
+ Weak CTAs command action. Strong CTAs describe the benefit:
393
+
394
+ | Weak | Strong |
395
+ | ------------ | ------------------------------- |
396
+ | "Sign Up" | "Get ShipFast" |
397
+ | "Learn More" | "See the exact template I used" |
398
+ | "Subscribe" | "Send me the first lesson free" |
399
+ | "Buy Now" | "Start building" |
400
+
401
+ Below the CTA, add friction reducers:
402
+
403
+ > "$199 once. Join 2,600+ marketers. 2 minutes to install."
404
+
405
+ Pattern: **[Risk reversal] + [Social proof] + [Speed/ease]**
406
+
407
+ ---
408
+
409
+ ## Internet-native voice markers
410
+
411
+ Patterns that signal "written by someone who lives online, not a marketing team":
412
+
413
+ **Revenue transparency:**
414
+
415
+ - "Now I'm happy and earn $45,000 a month"
416
+ - Specific numbers that would make corporate uncomfortable
417
+
418
+ **Honest limitations:**
419
+
420
+ - "One note: 3D model generation isn't great yet"
421
+ - Acknowledging imperfection builds authenticity
422
+
423
+ **Strategic emoji:**
424
+
425
+ - "I wanna cry 🥲"
426
+ - Use sparingly but deliberately
427
+
428
+ **In-group language:**
429
+
430
+ - "Ship like a madman"
431
+ - "Indie hacker" / "solopreneur"
432
+ - Language your audience uses with each other
433
+
434
+ ---
435
+
436
+ ## The full sequence
437
+
438
+ When building a complete landing page:
439
+
440
+ 1. **Hook** — Outcome headline with specific number or timeframe
441
+ 2. **Problem** — Quantify the pain (hours wasted, money lost)
442
+ 3. **Agitate** — Scenario or story that makes the problem vivid
443
+ 4. **Credibility** — Founder story, authority endorsements, or proof numbers
444
+ 5. **Solution** — What the product does, framed as transformation
445
+ 6. **Proof** — Testimonials with specific outcomes
446
+ 7. **Objections** — FAQ or "fit/not fit" section
447
+ 8. **Offer** — Pricing with value justification
448
+ 9. **Urgency** — Only if authentic
449
+ 10. **Final CTA** — Benefit-oriented, friction reducers below
450
+
451
+ You don't need all ten every time. But this is the complete arc when you need it.
452
+
453
+ ---
454
+
455
+ ## AI tells to avoid
456
+
457
+ Readers are getting better at spotting AI-generated content. These patterns destroy trust instantly.
458
+
459
+ **Overused words:**
460
+
461
+ - "delve" / "dive into" / "dig into"
462
+ - "comprehensive" / "robust" / "cutting-edge"
463
+ - "utilize" (just say "use")
464
+ - "leverage" (as a verb)
465
+ - "crucial" / "vital" / "essential"
466
+ - "unlock" / "unleash" / "supercharge"
467
+ - "game-changer" / "revolutionary"
468
+ - "landscape" / "navigate" / "streamline"
469
+
470
+ **Overused phrases:**
471
+
472
+ - "In today's fast-paced world..."
473
+ - "It's important to note that..."
474
+ - "When it comes to..."
475
+ - "In order to..." (just say "to")
476
+ - "Whether you're a... or a..."
477
+ - "Are you ready to take your X to the next level?"
478
+ - "Let's dive in" / "Without further ado"
479
+
480
+ **Punctuation tells:**
481
+
482
+ - Too many em-dashes (limit to 1-2 per piece, use periods instead)
483
+ - Long sentences with 4+ commas (break them up)
484
+ - Colons in titles repeatedly
485
+ - Semicolons where periods would work
486
+
487
+ **Structural tells:**
488
+
489
+ - Every paragraph is the same length
490
+ - Every bullet point starts the same way
491
+ - Overly organized with too many headings
492
+ - Bold on every key term
493
+ - Numbered lists where the numbers don't matter
494
+
495
+ **Voice tells:**
496
+
497
+ - Passive voice throughout
498
+ - No "I" or "you" anywhere
499
+ - Hedging: "some may find," "it's possible that," "can potentially"
500
+ - No contractions
501
+ - Perfectly grammatical but lifeless
502
+
503
+ **The fix:**
504
+
505
+ Read your copy out loud. If you stumble, a reader will too. If it sounds like a textbook, rewrite it.
506
+
507
+ Real humans:
508
+
509
+ - Use contractions
510
+ - Write sentence fragments sometimes
511
+ - Have opinions without hedging
512
+ - Use "I" and "you" freely
513
+ - Make unexpected word choices
514
+
515
+ ---
516
+
517
+ ## Example transformation
518
+
519
+ **Generic:**
520
+
521
+ > "Our comprehensive SaaS boilerplate helps developers launch faster with cutting-edge features and best practices built in."
522
+
523
+ **Internet-native:**
524
+
525
+ > "Ship your startup in days, not weeks.
526
+ >
527
+ > You know the drill. You've got an idea, you're excited, and then you spend the next month setting up authentication, payment processing, email templates, and DNS records. By the time the boring stuff is done, you've lost momentum. Or worse, someone else shipped first.
528
+ >
529
+ > ShipFast is everything you need to launch, nothing you don't. Stripe, emails, SEO, auth. Done. You write your features, we handle the infrastructure.
530
+ >
531
+ > 2,894 makers ship faster with ShipFast. The next one could be you.
532
+ >
533
+ > Get ShipFast →"
534
+
535
+ The second version: specific numbers, pain quantification, transformation focus, social proof, benefit-oriented CTA. And it sounds like a person wrote it.
536
+
537
+ ---
538
+
539
+ ## The test
540
+
541
+ Before you ship, read it out loud. Ask:
542
+
543
+ 1. Does it sound like someone talking, or someone "writing copy"?
544
+ 2. Would I actually say this to a friend?
545
+ 3. Is every claim backed by a specific number or proof?
546
+ 4. Does the rhythm alternate (punchy moments, then breathing room)?
547
+ 5. Is it about THEM (their transformation) or about ME (my product)?
548
+ 6. Are there open loops pulling them forward?
549
+ 7. Does it end with momentum?
550
+
551
+ If any answer is no, rewrite that part.
552
+
553
+ The goal isn't to hide that you're selling. It's to sell like a human, with honesty, specificity, and respect for the reader's intelligence.
554
+
555
+ ---
556
+
557
+ ---
558
+
559
+ # REFERENCE MATERIAL
560
+
561
+ The following sections provide deeper frameworks and extensive examples.
562
+
563
+ ---
564
+
565
+ ---
566
+
567
+ # Classic Direct Response Frameworks
568
+
569
+ The fundamentals that haven't changed since 1923. Every modern conversion technique traces back to these principles.
570
+
571
+ ---
572
+
573
+ ## Eugene Schwartz: The 5 Levels of Awareness (1966)
574
+
575
+ From "Breakthrough Advertising." The most important framework for knowing what to say.
576
+
577
+ Your headline and approach must match where your reader is:
578
+
579
+ ### Level 1: Unaware
580
+
581
+ They don't know they have a problem.
582
+
583
+ **Your job:** Lead with identity or emotion, not the problem.
584
+ **Headline approach:** "Do you ever feel like..." or lead with transformation story.
585
+ **Example:** "The diary of a bored housewife" (not selling anything yet, just connecting)
586
+
587
+ ### Level 2: Problem-Aware
588
+
589
+ They know they have a problem but don't know solutions exist.
590
+
591
+ **Your job:** Name the problem vividly, then introduce that solutions exist.
592
+ **Headline approach:** Problem-focused headline, agitate, then reveal solution category.
593
+ **Example:** "Are you ever tongue-tied at a party?" (Dale Carnegie)
594
+
595
+ ### Level 3: Solution-Aware
596
+
597
+ They know solutions exist but don't know your product.
598
+
599
+ **Your job:** Show your specific mechanism or approach is different/better.
600
+ **Headline approach:** Lead with your unique mechanism or approach.
601
+ **Example:** "A new way to remove wrinkles without surgery"
602
+
603
+ ### Level 4: Product-Aware
604
+
605
+ They know your product but haven't bought yet.
606
+
607
+ **Your job:** Overcome objections, add proof, create urgency.
608
+ **Headline approach:** Lead with differentiator, offer, or proof.
609
+ **Example:** "Now with 2x the cleaning power" or "Join 10,000 happy customers"
610
+
611
+ ### Level 5: Most Aware
612
+
613
+ They know your product and want it. Just need a push.
614
+
615
+ **Your job:** Make it easy. Price, offer, availability.
616
+ **Headline approach:** Lead with the deal.
617
+ **Example:** "$199 today only" or "Back in stock"
618
+
619
+ **The rule:** The less aware they are, the longer your copy needs to be. Most aware = short. Unaware = long journey.
620
+
621
+ ---
622
+
623
+ ## Claude Hopkins: Scientific Advertising (1923)
624
+
625
+ The father of tested, measured advertising. Core principles:
626
+
627
+ ### 1. Advertising is salesmanship in print
628
+
629
+ "The only purpose of advertising is to make sales."
630
+
631
+ ### 2. Reason-why copy
632
+
633
+ Don't just claim. Explain WHY your product works. Hopkins spent 3 weeks researching Schlitz beer to find the "reason why" (the way they purified water). Every beer did it. Only Schlitz talked about it.
634
+
635
+ ### 3. Specificity creates believability
636
+
637
+ "Cleans 99.6% of bacteria" beats "Cleans almost all bacteria."
638
+ Numbers. Details. Process. These create belief.
639
+
640
+ ### 4. Offer service, not salesmanship
641
+
642
+ "I never ask people to buy. The ads all offer service, perhaps a free sample. They sound altruistic. But they get a reading and action."
643
+
644
+ ### 5. Test everything
645
+
646
+ Use coupons, codes, split tests. "Almost any question can be answered, cheaply, quickly, and finally, by a test campaign."
647
+
648
+ ### 6. Headlines do the heavy lifting
649
+
650
+ "If you have 10 hours to spend on a piece of copy, spend 8 of them on the headline."
651
+
652
+ ---
653
+
654
+ ## David Ogilvy: Confessions of an Advertising Man (1963)
655
+
656
+ Ogilvy took Hopkins' principles and added brand-building sophistication.
657
+
658
+ ### The Rolls-Royce Principle
659
+
660
+ "At 60 miles an hour, the loudest noise in this new Rolls-Royce comes from the electric clock."
661
+
662
+ This headline works because:
663
+
664
+ - It's specific (60 miles, electric clock)
665
+ - It SHOWS don't tells (doesn't say "quiet car")
666
+ - It's borrowed credibility (from a magazine review)
667
+ - It creates a mental image
668
+
669
+ Ogilvy spent 3 weeks researching. The headline came from a magazine quote. He wrote 26 headlines before picking this one.
670
+
671
+ ### Key Ogilvy principles:
672
+
673
+ **On headlines:**
674
+
675
+ - "On average, 5x as many people read the headline as read the body copy."
676
+ - "Include the brand name in the headline."
677
+ - "Headlines with news are remembered 22% more."
678
+ - "Specifics are more credible than generalities."
679
+
680
+ **On copy:**
681
+
682
+ - "Write the way you talk. Naturally."
683
+ - "Do not address your readers as though they were gathered together in a stadium. Address them as individuals."
684
+ - "Tell the truth, but make the truth fascinating."
685
+ - "Give facts. Readers remember facts, not adjectives."
686
+
687
+ **On images:**
688
+
689
+ - "Story appeal" in photos gets attention. The eye patch in Hathaway shirt ads worked because people wondered "what's the story?"
690
+ - Photos of the product in use outperform product shots alone.
691
+
692
+ ---
693
+
694
+ ## Gary Halbert: The Boron Letters (1984)
695
+
696
+ Halbert wrote from prison to his son. Raw, practical, street-smart.
697
+
698
+ ### 1. Find a starving crowd first
699
+
700
+ "What unique advantage would you want if opening a restaurant? The answer isn't location or great food. It's a starving crowd."
701
+
702
+ Find people who desperately want what you're selling. The offer matters more than the copy.
703
+
704
+ ### 2. Write to one person
705
+
706
+ Use "you" and "I." Date your letters. Use the person's name. Create intimacy.
707
+
708
+ "Did you know that your family name was recorded with a coat-of-arms in ancient heraldic archives more than seven centuries ago?"
709
+
710
+ This opened his most successful letter ever (600 million sent).
711
+
712
+ ### 3. Tell stories, not pitches
713
+
714
+ The Boron Letters themselves are stories. His ads were stories. Stories disarm skepticism and create emotional connection.
715
+
716
+ ### 4. Handwrite great ads
717
+
718
+ Copy successful ads by hand to internalize the rhythm and structure. Don't type. Write.
719
+
720
+ ### 5. Read your copy aloud
721
+
722
+ "As you do that, you will hear the words that are lumpy and bumpy, like walking over a stony path. Those need fixing."
723
+
724
+ ### 6. AIDA still works
725
+
726
+ Attention → Interest → Desire → Action
727
+ "The simple formulas work because human psychology doesn't change."
728
+
729
+ ---
730
+
731
+ ## John Caples: Tested Advertising Methods (1932)
732
+
733
+ Caples tested obsessively. His data-backed principles:
734
+
735
+ ### The Piano Headline
736
+
737
+ "They Laughed When I Sat Down at the Piano... But When I Started to Play!"
738
+
739
+ Why it worked:
740
+
741
+ - It's a STORY in 15 words
742
+ - Universal emotion (being laughed at, then vindicated)
743
+ - Curiosity (what happened next?)
744
+ - Self-selection (anyone who's wanted to learn music relates)
745
+
746
+ ### Caples' headline rules:
747
+
748
+ 1. Self-interest: Show them what's in it for them
749
+ 2. News: Announce something new
750
+ 3. Curiosity: But never curiosity alone. Curiosity + benefit.
751
+ 4. Positive over negative: "Gain" beats "avoid loss" (usually)
752
+ 5. Quick and easy: People want shortcuts
753
+
754
+ ### His most important finding:
755
+
756
+ "The headline is 80% of the advertisement."
757
+
758
+ One headline can outpull another by 19.5x. Same product. Same offer. Different headline = 1,950% difference in response.
759
+
760
+ ### What makes headlines fail:
761
+
762
+ - Trying to be clever instead of clear
763
+ - Forgetting self-interest
764
+ - Vague claims instead of specific benefits
765
+
766
+ ---
767
+
768
+ ## Joseph Sugarman: The Adweek Copywriting Handbook (1998)
769
+
770
+ Mail-order master. Sold BluBlockers, calculators, gadgets through long-copy print ads.
771
+
772
+ ### The Slippery Slide
773
+
774
+ "Your readers should be so compelled to read your copy that they cannot stop reading until they read all of it as if sliding down a slippery slide."
775
+
776
+ The job of the headline is to get them to read the first sentence.
777
+ The job of the first sentence is to get them to read the second.
778
+ And so on.
779
+
780
+ ### Every element has one job
781
+
782
+ 1. Headline: Get attention, draw to subheadline
783
+ 2. Subheadline: Give more info, draw into copy
784
+ 3. First sentence: Short, easy to read
785
+ 4. Body: Slide them down to the CTA
786
+ 5. CTA: Tell them exactly what to do
787
+
788
+ ### Seeds of curiosity
789
+
790
+ End paragraphs with hooks:
791
+
792
+ - "But there's more."
793
+ - "Let me explain."
794
+ - "Here's why this matters."
795
+ - "And that's not all."
796
+
797
+ These pull readers into the next section.
798
+
799
+ ### 31 psychological triggers
800
+
801
+ Sugarman identified 31 triggers that make people buy. The biggest:
802
+
803
+ - **Honesty:** "If you're honest in your copy, it shows."
804
+ - **Proof:** Never make claims bigger than your proof.
805
+ - **Specificity:** "$1,237" beats "over $1,000"
806
+ - **Familiarity:** Connect new to familiar concepts
807
+ - **Story:** Humans are wired for narrative
808
+
809
+ ### The buying environment
810
+
811
+ Your copy must create the right "buying environment." This includes:
812
+
813
+ - Layout and design that feels appropriate
814
+ - Price anchoring
815
+ - Logical flow that answers objections as they arise
816
+ - Ending with clear action
817
+
818
+ ---
819
+
820
+ ## Robert Collier: The Robert Collier Letter Book (1937)
821
+
822
+ Master of mail-order letters. His principles:
823
+
824
+ ### Enter the conversation in their mind
825
+
826
+ "Always enter the conversation already taking place in the customer's mind."
827
+
828
+ You don't create desire. You channel existing desire toward your product.
829
+
830
+ ### The 6 essentials of every letter:
831
+
832
+ 1. Opening that grabs attention
833
+ 2. Description or explanation
834
+ 3. Argument for why they should buy
835
+ 4. Persuasion to buy NOW
836
+ 5. Risk-free offer
837
+ 6. Clear call to action
838
+
839
+ ### Visualization
840
+
841
+ Make them SEE themselves using the product, enjoying the benefit. Paint the picture vividly.
842
+
843
+ ---
844
+
845
+ ## The Meta-Lesson
846
+
847
+ All the greats agree on these fundamentals:
848
+
849
+ 1. **Know your audience deeply** before writing a word
850
+ 2. **Lead with the reader's self-interest**, not your product
851
+ 3. **Be specific**, never vague
852
+ 4. **Tell stories** to disarm and connect
853
+ 5. **Test everything** because your opinion doesn't matter
854
+ 6. **The headline does most of the work**
855
+ 7. **Write like you talk**, not like you "write"
856
+ 8. **Honesty and proof** beat hype every time
857
+
858
+ ---
859
+
860
+ ---
861
+
862
+ # Headline Formulas and Examples
863
+
864
+ Headlines do 80% of the work. One headline can outpull another by 19.5x. These are the patterns that work.
865
+
866
+ ---
867
+
868
+ ## The Master Formula
869
+
870
+ > **[Action verb] + [Specific outcome] + [Timeframe or contrast]**
871
+
872
+ Examples:
873
+
874
+ - "Ship your startup in days, not weeks"
875
+ - "Build a $10K/month business in 90 days"
876
+ - "Save 4 hours per person every single week"
877
+ - "Write copy that converts in half the time"
878
+
879
+ The contrast version ("days, not weeks") creates before/after in six words.
880
+
881
+ ---
882
+
883
+ ## The Story Headline
884
+
885
+ John Caples' most famous:
886
+
887
+ > "They Laughed When I Sat Down at the Piano... But When I Started to Play!"
888
+
889
+ Why it works:
890
+
891
+ - Complete story in 15 words
892
+ - Universal emotion (embarrassment → triumph)
893
+ - Creates curiosity about what happened
894
+ - Self-selects the right reader
895
+
896
+ **Variations:**
897
+
898
+ - "They laughed when I started my cleaning business... but when I quit my day job..."
899
+ - "They grinned when the waiter spoke to me in French... but their laughter changed to amazement at my reply"
900
+
901
+ **The formula:**
902
+
903
+ > "They [doubted/laughed/dismissed] when I [action]... But when I [result]..."
904
+
905
+ ---
906
+
907
+ ## The Specificity Headline
908
+
909
+ Ogilvy's Rolls-Royce:
910
+
911
+ > "At 60 miles an hour, the loudest noise in this new Rolls-Royce comes from the electric clock."
912
+
913
+ Why it works:
914
+
915
+ - "60 miles" is specific, not "high speed"
916
+ - "Electric clock" is specific, not "interior"
917
+ - Shows don't tells (doesn't say "quiet car")
918
+ - Reader concludes "this must be quiet" themselves
919
+
920
+ **The formula:**
921
+
922
+ > [Specific number/metric] + [Unexpected comparison or detail]
923
+
924
+ **Modern examples:**
925
+
926
+ - "I tested 47 headlines. One pattern beat everything else by 3x."
927
+ - "We analyzed 2.7 million cold emails. Here's what the top 1% do differently."
928
+ - "After 10 years and $45M in sales, I've found exactly 3 things that matter."
929
+
930
+ ---
931
+
932
+ ## The How-To Headline
933
+
934
+ Simple and bulletproof:
935
+
936
+ > "How to [Achieve desired outcome]"
937
+
938
+ **Examples:**
939
+
940
+ - "How to Win Friends and Influence People"
941
+ - "How to Write Copy That Sells"
942
+ - "How to Make $1,000 in Your First Week"
943
+
944
+ **Variations:**
945
+
946
+ - "How to [outcome] without [common pain]"
947
+ - "How to [outcome] in [timeframe]"
948
+ - "How to [outcome] even if [objection]"
949
+
950
+ **Examples with variations:**
951
+
952
+ - "How to Lose Weight Without Giving Up Your Favorite Foods"
953
+ - "How to Build a 6-Figure Business in 12 Months"
954
+ - "How to Get Clients Even If You're Just Starting Out"
955
+
956
+ ---
957
+
958
+ ## The Question Headline
959
+
960
+ Questions they're already asking themselves:
961
+
962
+ > "Do You Make These Mistakes in English?"
963
+
964
+ Legendary ad ran for 40 years. Works because:
965
+
966
+ - Reader immediately thinks "what mistakes?"
967
+ - Self-selects (only interested people keep reading)
968
+ - Creates curiosity gap
969
+
970
+ **The formula:**
971
+
972
+ > "Do you [common mistake/struggle]?"
973
+ > "Are you [undesirable state]?"
974
+ > "What if you could [desirable outcome]?"
975
+
976
+ **Examples:**
977
+
978
+ - "Do You Close the Bathroom Door Even When You're the Only One Home?"
979
+ - "Are You Still Trading Time for Money?"
980
+ - "What if Your Next Landing Page Converted at 30%?"
981
+
982
+ ---
983
+
984
+ ## The Secret Headline
985
+
986
+ Implies insider knowledge:
987
+
988
+ > "The Secret of Making People Like You"
989
+
990
+ **The formula:**
991
+
992
+ > "The Secret of [Desirable outcome]"
993
+ > "The Secret [Industry insiders/experts] Don't Want You to Know"
994
+ > "[Number] Secrets of [Successful group]"
995
+
996
+ **Examples:**
997
+
998
+ - "The Secret of Writing Headlines That Get Clicked"
999
+ - "7 Secrets of Top Copywriters"
1000
+ - "The Secret Formula Behind $100M Ads"
1001
+
1002
+ **Warning:** Overused. Works best when you actually have something surprising to reveal.
1003
+
1004
+ ---
1005
+
1006
+ ## The Reason-Why Headline
1007
+
1008
+ Hopkins' favorite. Explain WHY:
1009
+
1010
+ > "Why Some People Almost Always Make Money in the Stock Market"
1011
+
1012
+ **The formula:**
1013
+
1014
+ > "Why [Desirable outcome happens]"
1015
+ > "Why [Surprising statement]"
1016
+ > "[Number] Reasons Why [Claim]"
1017
+
1018
+ **Examples:**
1019
+
1020
+ - "Why Your Ads Aren't Working (And What to Do Instead)"
1021
+ - "Why I Switched from [Popular option] to [Your option]"
1022
+ - "5 Reasons Why Smart Marketers Are Abandoning Facebook"
1023
+
1024
+ ---
1025
+
1026
+ ## The Number Headline
1027
+
1028
+ Numbers stop the scroll:
1029
+
1030
+ > "101 Ways to Save Money on Your Taxes"
1031
+
1032
+ **Why numbers work:**
1033
+
1034
+ - Specific = credible
1035
+ - Promise clear, bounded value
1036
+ - Easy to scan
1037
+
1038
+ **The formula:**
1039
+
1040
+ > "[Number] [Ways/Tips/Secrets/Mistakes] to [Outcome]"
1041
+
1042
+ **Best numbers:**
1043
+
1044
+ - Odd numbers outperform even (7 beats 6)
1045
+ - Specific beats round (37 beats 40)
1046
+ - Higher can work for comprehensive guides (101 tips)
1047
+ - Lower works for "essentials" (3 things that matter)
1048
+
1049
+ **Examples:**
1050
+
1051
+ - "7 Copywriting Mistakes That Kill Conversions"
1052
+ - "37 Headline Formulas That Get Clicked"
1053
+ - "The 3 Things Every Landing Page Needs"
1054
+
1055
+ ---
1056
+
1057
+ ## The Warning/Mistake Headline
1058
+
1059
+ Fear of loss is powerful:
1060
+
1061
+ > "Don't Even Think About Buying a Home Until You Read This"
1062
+
1063
+ **The formula:**
1064
+
1065
+ > "Don't [Action] Until [Condition]"
1066
+ > "[Number] Mistakes [Audience] Make"
1067
+ > "Warning: [Danger statement]"
1068
+
1069
+ **Examples:**
1070
+
1071
+ - "Don't Write Another Ad Until You Read This"
1072
+ - "5 Mistakes New Copywriters Make (And How to Avoid Them)"
1073
+ - "Warning: Your Landing Page Is Losing 73% of Visitors"
1074
+
1075
+ ---
1076
+
1077
+ ## The Newsjacking Headline
1078
+
1079
+ Timely + relevant:
1080
+
1081
+ > "What [Current event] Means for [Your audience]"
1082
+
1083
+ **The formula:**
1084
+
1085
+ > "[Current event/trend] + [Your angle]"
1086
+ > "The [Year] Guide to [Topic]"
1087
+ > "[Trend] Is Dead. Here's What's Replacing It."
1088
+
1089
+ **Examples:**
1090
+
1091
+ - "What the Google Update Means for Your SEO Strategy"
1092
+ - "The 2024 Guide to Cold Email That Actually Works"
1093
+ - "Traditional Marketing Is Dead. Here's What's Replacing It."
1094
+
1095
+ ---
1096
+
1097
+ ## The Transformation Headline
1098
+
1099
+ Before → After in one line:
1100
+
1101
+ > "From Broke Musician to $100K/Year Music Teacher"
1102
+
1103
+ **The formula:**
1104
+
1105
+ > "From [Bad state] to [Good state]"
1106
+ > "How I Went from [Before] to [After]"
1107
+ > "[Before] → [After]: [How]"
1108
+
1109
+ **Examples:**
1110
+
1111
+ - "From Zero to $10K MRR in 6 Months"
1112
+ - "How I Went from 0 Followers to 100K in One Year"
1113
+ - "Freelancer to Agency Owner: My 3-Year Journey"
1114
+
1115
+ ---
1116
+
1117
+ ## The Contrarian Headline
1118
+
1119
+ Challenge conventional wisdom:
1120
+
1121
+ > "Everything You Know About [Topic] Is Wrong"
1122
+
1123
+ **The formula:**
1124
+
1125
+ > "[Common belief] Is Wrong. Here's Why."
1126
+ > "Stop [Common advice]"
1127
+ > "Why [Contrarian position]"
1128
+
1129
+ **Examples:**
1130
+
1131
+ - "Stop Trying to Go Viral"
1132
+ - "Why I Stopped A/B Testing (And What I Do Instead)"
1133
+ - "Everything You Know About SEO Is Wrong"
1134
+
1135
+ **Warning:** Must deliver on the promise. Contrarian for contrarian's sake backfires.
1136
+
1137
+ ---
1138
+
1139
+ ## The Direct Statement Headline
1140
+
1141
+ Sometimes simple wins:
1142
+
1143
+ > "We're Looking for Writers"
1144
+
1145
+ **The formula:**
1146
+
1147
+ > [Direct statement of value or offer]
1148
+
1149
+ **Examples:**
1150
+
1151
+ - "Get Better at Copywriting"
1152
+ - "Marketing Help for Startups"
1153
+ - "Write Faster. Convert More."
1154
+
1155
+ Works when your audience is highly aware and just needs the offer.
1156
+
1157
+ ---
1158
+
1159
+ ## Headline Testing Principles
1160
+
1161
+ From John Caples' decades of testing:
1162
+
1163
+ 1. **Self-interest beats cleverness.** "How to win friends" beats "The science of human relations"
1164
+
1165
+ 2. **News hooks attention.** "New" "Announcing" "Finally" "Just released"
1166
+
1167
+ 3. **Curiosity alone fails.** Curiosity + benefit works. Pure curiosity = clickbait that disappoints.
1168
+
1169
+ 4. **Specifics beat generalities.** "Save $327 on your taxes" beats "Save money on your taxes"
1170
+
1171
+ 5. **Longer headlines can work.** "At 60 miles an hour, the loudest noise in this new Rolls-Royce comes from the electric clock" is 18 words. It's the best headline Ogilvy ever wrote.
1172
+
1173
+ 6. **Test at least 5.** Ogilvy wrote 26 headlines for Rolls-Royce. Upworthy writes 25 per article. One will be 2-10x better than the rest.
1174
+
1175
+ ---
1176
+
1177
+ ## Hall of Fame Headlines
1178
+
1179
+ Keep these on file:
1180
+
1181
+ - "They Laughed When I Sat Down at the Piano... But When I Started to Play!" (Caples)
1182
+ - "Do You Make These Mistakes in English?" (Sherwin Cody)
1183
+ - "At 60 miles an hour, the loudest noise in this new Rolls-Royce comes from the electric clock." (Ogilvy)
1184
+ - "How to Win Friends and Influence People" (Dale Carnegie)
1185
+ - "The Secret of Making People Like You" (Unknown)
1186
+ - "Amazing Secret Discovered by 29 Year Old" (Eugene Schwartz)
1187
+ - "They Call Me Lucky, But I Invented My Own Luck" (Unknown)
1188
+ - "The Lazy Man's Way to Riches" (Joe Karbo)
1189
+ - "Lose 10 Pounds in 10 Days" (Diet industry)
1190
+ - "Are You Ever Tongue-Tied at a Party?" (Dale Carnegie)
1191
+
1192
+ ---
1193
+
1194
+ ---
1195
+
1196
+ # Opening Lines and Hooks
1197
+
1198
+ The first sentence has one job: get them to read the second sentence.
1199
+
1200
+ ---
1201
+
1202
+ ## The Direct Challenge
1203
+
1204
+ Open by challenging what they believe or do:
1205
+
1206
+ > "You've been using Claude wrong."
1207
+
1208
+ > "Everything you know about pricing is backwards."
1209
+
1210
+ > "Most marketing advice is designed to make you feel busy, not successful."
1211
+
1212
+ **Why it works:**
1213
+
1214
+ - Stops the scroll
1215
+ - Creates tension
1216
+ - Self-selects readers who suspect you might be right
1217
+
1218
+ **The formula:**
1219
+
1220
+ > "You've been [doing X] wrong."
1221
+ > "Most [advice/people/companies] [get this wrong]."
1222
+ > "[Common belief] is actually [wrong/backwards/dangerous]."
1223
+
1224
+ ---
1225
+
1226
+ ## The Story Opening
1227
+
1228
+ Caples' piano ad doesn't start with product. It starts with scene:
1229
+
1230
+ > "Arthur had just played 'The Rosary.' The room rang with applause."
1231
+
1232
+ The reader is IN the scene before they know they're reading an ad.
1233
+
1234
+ **Modern examples:**
1235
+
1236
+ > "I was $78,000 in debt, working 70-hour weeks, and my marriage was falling apart. Then I discovered something that changed everything."
1237
+
1238
+ > "Last Tuesday, I opened my laptop and saw a number I couldn't believe: $47,329 in one day."
1239
+
1240
+ > "It was 2 AM and I was still coding. The launch was in 6 hours. I had no idea if anyone would show up."
1241
+
1242
+ **The formula:**
1243
+
1244
+ > [Specific moment] + [Tension or curiosity] + [Implied transformation]
1245
+
1246
+ ---
1247
+
1248
+ ## The Confession Opening
1249
+
1250
+ Vulnerability disarms skepticism:
1251
+
1252
+ > "I'll be honest with you. I almost gave up on this business three times."
1253
+
1254
+ > "Here's something embarrassing: I used to think copywriting was about being clever."
1255
+
1256
+ > "I made every mistake in the book. Spent $50,000 on ads that didn't work. Launched products nobody wanted."
1257
+
1258
+ **Why it works:**
1259
+
1260
+ - Honesty creates trust
1261
+ - Reader thinks "they're like me"
1262
+ - Sets up the transformation
1263
+
1264
+ **The formula:**
1265
+
1266
+ > "I'll be honest..."
1267
+ > "Here's something I rarely admit..."
1268
+ > "I made every mistake..."
1269
+
1270
+ ---
1271
+
1272
+ ## The Specific Result Opening
1273
+
1274
+ Lead with proof:
1275
+
1276
+ > "Last month, this landing page generated $127,394 in sales."
1277
+
1278
+ > "In 9 months, we did $400k+ on a vibe-coded website using these exact methods."
1279
+
1280
+ > "I've sent 600 million of these letters. Here's what I learned."
1281
+
1282
+ **Why it works:**
1283
+
1284
+ - Specific numbers create credibility
1285
+ - Reader wants to know how
1286
+ - Anchors the transformation to a real result
1287
+
1288
+ **The formula:**
1289
+
1290
+ > "[Specific result] + [Implied 'here's how']"
1291
+
1292
+ ---
1293
+
1294
+ ## The Question Opening
1295
+
1296
+ Enter the conversation in their head:
1297
+
1298
+ > "Have you ever stared at a blank page, knowing you need to write something that sells... and just froze?"
1299
+
1300
+ > "What would you do with an extra 10 hours a week?"
1301
+
1302
+ > "Do you ever wonder why some people seem to effortlessly attract clients while you're struggling to get noticed?"
1303
+
1304
+ **Why it works:**
1305
+
1306
+ - If the question matches their reality, they're hooked
1307
+ - Creates internal "yes" response
1308
+ - Self-selects the right reader
1309
+
1310
+ **The formula:**
1311
+
1312
+ > "Have you ever [common struggle]?"
1313
+ > "Do you ever wonder why [comparison/frustration]?"
1314
+ > "What would you do with [desirable outcome]?"
1315
+
1316
+ ---
1317
+
1318
+ ## The Contrarian Opening
1319
+
1320
+ Flip conventional wisdom:
1321
+
1322
+ > "Stop writing headlines."
1323
+
1324
+ > "The best marketing advice is to do less marketing."
1325
+
1326
+ > "I'm going to tell you something nobody else will: your product doesn't matter."
1327
+
1328
+ **Why it works:**
1329
+
1330
+ - Pattern interrupt
1331
+ - Creates "wait, what?" response
1332
+ - Reader has to keep going to understand
1333
+
1334
+ **The formula:**
1335
+
1336
+ > "Stop [doing what everyone says to do]."
1337
+ > "The best [X] advice is [opposite of expected]."
1338
+ > "[Extreme or surprising statement]."
1339
+
1340
+ **Warning:** Must pay off. Contrarian opening + conventional content = disappointment.
1341
+
1342
+ ---
1343
+
1344
+ ## The "Imagine" Opening
1345
+
1346
+ Future-pace them into the transformation:
1347
+
1348
+ > "Imagine waking up tomorrow and your landing page has already made 3 sales while you slept."
1349
+
1350
+ > "Picture this: you open your inbox and see 47 new leads, all from one email you wrote once."
1351
+
1352
+ > "Imagine never having to explain your business again because your website does it perfectly."
1353
+
1354
+ **Why it works:**
1355
+
1356
+ - Engages visualization
1357
+ - Reader experiences the benefit emotionally
1358
+ - Creates desire before the pitch
1359
+
1360
+ **The formula:**
1361
+
1362
+ > "Imagine [specific desirable scenario]."
1363
+ > "Picture this: [vivid future state]."
1364
+
1365
+ ---
1366
+
1367
+ ## The Pattern Interrupt Opening
1368
+
1369
+ Break expectations completely:
1370
+
1371
+ > "Don't read this."
1372
+
1373
+ > "This isn't for you."
1374
+
1375
+ > "I'm going to try to talk you OUT of buying this."
1376
+
1377
+ **Why it works:**
1378
+
1379
+ - Reverse psychology
1380
+ - Creates curiosity
1381
+ - Breaks the "sales pitch" pattern
1382
+
1383
+ **The formula:**
1384
+
1385
+ > "[Opposite of what they expect from sales copy]"
1386
+
1387
+ ---
1388
+
1389
+ ## The Time-Stamp Opening
1390
+
1391
+ Creates immediacy and credibility:
1392
+
1393
+ > "It's 4:37 AM and I can't sleep. I keep thinking about what I'm about to share with you."
1394
+
1395
+ > "I'm writing this from gate B7 at LAX, 20 minutes before my flight boards."
1396
+
1397
+ > "Last Tuesday at exactly 2:14 PM, something happened that changed how I think about marketing."
1398
+
1399
+ **Why it works:**
1400
+
1401
+ - Feels personal, not scripted
1402
+ - Creates intimacy
1403
+ - Reader feels they're getting something fresh
1404
+
1405
+ **The formula:**
1406
+
1407
+ > "[Specific time/place] + [What you're about to share]"
1408
+
1409
+ ---
1410
+
1411
+ ## The Short-Sentence Opening
1412
+
1413
+ Sugarman's approach: first sentence should be stupidly easy to read:
1414
+
1415
+ > "It's simple."
1416
+
1417
+ > "Here's the truth."
1418
+
1419
+ > "This works."
1420
+
1421
+ > "Let me explain."
1422
+
1423
+ **Why it works:**
1424
+
1425
+ - No friction to start reading
1426
+ - Creates momentum
1427
+ - Reader is into paragraph two before they realize it
1428
+
1429
+ **The formula:**
1430
+
1431
+ > [2-4 word sentence that creates curiosity or makes a claim]
1432
+
1433
+ ---
1434
+
1435
+ ## The "Math" Opening
1436
+
1437
+ Quantify the problem or opportunity:
1438
+
1439
+ > "5 minutes explaining your business + 10 minutes prompting + 15 minutes editing = hours of your week, every week, forever."
1440
+
1441
+ > "You're losing $1,847 every month. Here's the math."
1442
+
1443
+ > "The average landing page converts at 2.35%. The top 10% convert at 11.45%. That gap? It's not traffic. It's copy."
1444
+
1445
+ **Why it works:**
1446
+
1447
+ - Makes abstract problems concrete
1448
+ - Numbers feel objective/trustworthy
1449
+ - Creates clear gap they want to close
1450
+
1451
+ **The formula:**
1452
+
1453
+ > "[Problem math] = [Painful total]"
1454
+ > "The gap between [average] and [top] is [specific difference]."
1455
+
1456
+ ---
1457
+
1458
+ ## Opening Lines to Avoid
1459
+
1460
+ These scream "AI wrote this" or "generic marketing":
1461
+
1462
+ - "In today's fast-paced world..."
1463
+ - "Are you ready to take your business to the next level?"
1464
+ - "Welcome! I'm so glad you're here."
1465
+ - "Have you ever wanted to..."
1466
+ - "What if I told you..."
1467
+ - "The secret they don't want you to know..."
1468
+ - "In this article, you'll learn..."
1469
+ - "Let's dive in!"
1470
+
1471
+ **The problem:** They're generic. They could be about anything. They don't demonstrate understanding of the reader.
1472
+
1473
+ ---
1474
+
1475
+ ## The Meta-Principle
1476
+
1477
+ Your opening should do at least one of these:
1478
+
1479
+ 1. **Match their mental state** (enter the conversation in their head)
1480
+ 2. **Create curiosity** (open a loop they need to close)
1481
+ 3. **Make a bold claim** (backed up later with proof)
1482
+ 4. **Tell a story** (that they see themselves in)
1483
+ 5. **Challenge a belief** (that they're not sure about anyway)
1484
+
1485
+ If your opening does none of these, rewrite it.
1486
+
1487
+ ---
1488
+
1489
+ # Curiosity Gaps and Open Loops
1490
+
1491
+ The human brain craves closure. Open a loop, and they'll keep reading to close it.
1492
+
1493
+ ---
1494
+
1495
+ ## What Is an Open Loop?
1496
+
1497
+ An open loop is incomplete information that creates psychological tension. Your brain wants to resolve it.
1498
+
1499
+ **TV shows use this:** Every episode ends with a cliffhanger. You can't NOT watch the next one.
1500
+
1501
+ **In copy:** You tease information without revealing it, pulling readers forward to find the answer.
1502
+
1503
+ ---
1504
+
1505
+ ## The Curiosity Gap
1506
+
1507
+ The gap between what we know and what we want to know.
1508
+
1509
+ **Weak:** "10 Tips for Better Writing"
1510
+ **Strong:** "The Ancient Secret Writing Technique That Transformed My Bank Account"
1511
+
1512
+ The weak version tells you exactly what you'll get. No gap.
1513
+ The strong version creates questions: What technique? How ancient? How much money?
1514
+
1515
+ **The rule:** Clear enough to understand, mysterious enough to provoke questions.
1516
+
1517
+ ---
1518
+
1519
+ ## Open Loop Techniques
1520
+
1521
+ ### 1. The Incomplete Story
1522
+
1523
+ Start a story, don't finish it:
1524
+
1525
+ > "I was $78,000 in debt when I discovered something that changed everything. But before I tell you what it is, you need to understand why most advice about money is wrong..."
1526
+
1527
+ The reader now HAS to know what you discovered.
1528
+
1529
+ ### 2. The Numbered Tease
1530
+
1531
+ Promise something specific, delay the reveal:
1532
+
1533
+ > "I tested 47 headlines. One pattern beat everything else by 3x. I'll show you exactly what it is in a moment, but first..."
1534
+
1535
+ Now they're reading for the one pattern.
1536
+
1537
+ ### 3. The "But First" Delay
1538
+
1539
+ > "The answer might surprise you. But first, let me explain why this matters."
1540
+
1541
+ You've promised an answer. They'll stick around for it.
1542
+
1543
+ ### 4. The Partial Reveal
1544
+
1545
+ Give part of the information:
1546
+
1547
+ > "The formula has three parts. The first one is obvious. The third one is counterintuitive. But the second one? That's where the magic happens."
1548
+
1549
+ Now they need to know the second part.
1550
+
1551
+ ### 5. The Future Promise
1552
+
1553
+ > "In a few minutes, you'll understand exactly why most landing pages fail. And you'll know exactly how to fix yours."
1554
+
1555
+ You've told them what they'll get. Now they want it.
1556
+
1557
+ ---
1558
+
1559
+ ## Seeds of Curiosity (Sugarman)
1560
+
1561
+ End paragraphs with hooks that pull into the next section:
1562
+
1563
+ **Transition phrases:**
1564
+
1565
+ - "But that's not even the best part."
1566
+ - "Here's where it gets interesting."
1567
+ - "Let me explain why."
1568
+ - "And that's when everything changed."
1569
+ - "But there's a problem."
1570
+ - "What happened next surprised even me."
1571
+ - "Which brings me to the real secret."
1572
+ - "Now here's the thing..."
1573
+ - "But wait. There's more to this story."
1574
+
1575
+ **The placement:** Use at the end of paragraphs, especially when transitioning between ideas or before you reveal something important.
1576
+
1577
+ **Don't overuse:** Every paragraph ending with "but there's more" becomes tiresome. 2-4 per page is plenty.
1578
+
1579
+ ---
1580
+
1581
+ ## The Information Gap Principle
1582
+
1583
+ Psychologist George Loewenstein's research:
1584
+
1585
+ > "Curiosity arises when we're aware of a gap in our knowledge."
1586
+
1587
+ To create curiosity:
1588
+
1589
+ 1. Make them aware there's something they don't know
1590
+ 2. Make them want to know it
1591
+ 3. Delay the answer just long enough
1592
+
1593
+ **Example:**
1594
+
1595
+ > "Most copywriters make this mistake. It's costing them thousands of dollars in lost conversions. And they have no idea."
1596
+
1597
+ You've created three gaps:
1598
+
1599
+ - What mistake?
1600
+ - How much is it costing them?
1601
+ - Why don't they know?
1602
+
1603
+ Now they'll read to close all three.
1604
+
1605
+ ---
1606
+
1607
+ ## Curiosity in Headlines
1608
+
1609
+ **Weak (no gap):** "How to Write Better Headlines"
1610
+ **Strong (gap):** "Why Your Headlines Aren't Working (And the 2-Minute Fix)"
1611
+
1612
+ **Weak:** "5 Ways to Improve Your Landing Page"
1613
+ **Strong:** "I Analyzed 1,000 Landing Pages. One Element Predicted Conversion Rate Better Than Anything Else."
1614
+
1615
+ The strong versions create specific questions the reader needs answered.
1616
+
1617
+ ---
1618
+
1619
+ ## Open Loops in Email Subject Lines
1620
+
1621
+ **Open loop:** "The $50,000 mistake I made last year"
1622
+
1623
+ - What mistake? You have to open to find out.
1624
+
1625
+ **Open loop:** "This one change added 247 subscribers in a week"
1626
+
1627
+ - What change? Open to find out.
1628
+
1629
+ **Open loop:** "Don't make this launch mistake (I almost did)"
1630
+
1631
+ - What mistake? What happened? Open.
1632
+
1633
+ **Too vague (bad):** "Quick question"
1634
+
1635
+ - No specific gap. Could be anything.
1636
+
1637
+ **Too complete (bad):** "5 tips for writing better emails"
1638
+
1639
+ - No gap. You already know what it is.
1640
+
1641
+ ---
1642
+
1643
+ ## Closing Loops
1644
+
1645
+ **Critical:** You must close the loops you open.
1646
+
1647
+ If you tease "the one thing that changed everything" and never deliver, readers feel cheated. They won't trust you again.
1648
+
1649
+ **The timing:**
1650
+
1651
+ - Small loops: close within 1-3 paragraphs
1652
+ - Medium loops: close within the section
1653
+ - Big loops: close by the end of the piece
1654
+
1655
+ **The payoff must be worth the wait.** If you create huge curiosity and deliver mediocre content, you've damaged trust.
1656
+
1657
+ ---
1658
+
1659
+ ## Multiple Loops
1660
+
1661
+ You can stack loops, but manage them carefully:
1662
+
1663
+ **Opening:**
1664
+
1665
+ > "I'm going to share three things with you today.
1666
+ >
1667
+ > The first is obvious. You probably already know it.
1668
+ > The second is counterintuitive. It goes against everything you've been told.
1669
+ > The third? It's the one that will change how you think about marketing forever.
1670
+ >
1671
+ > Let's start with the obvious one..."
1672
+
1673
+ Now they're reading for all three, but especially the third.
1674
+
1675
+ **Close each one before opening too many more.** 3-4 open loops at once is manageable. More than that creates confusion.
1676
+
1677
+ ---
1678
+
1679
+ ## The "But Wait" Technique
1680
+
1681
+ Classic late-night TV, but works in copy:
1682
+
1683
+ > "You get the complete training program, all 12 modules, the workbook, and the template library.
1684
+ >
1685
+ > But that's not all.
1686
+ >
1687
+ > When you join today, you also get..."
1688
+
1689
+ The "but that's not all" creates a micro-loop. They need to see what else.
1690
+
1691
+ ---
1692
+
1693
+ ## Curiosity Killers
1694
+
1695
+ What NOT to do:
1696
+
1697
+ **Being too vague:**
1698
+
1699
+ > "Something amazing happened..."
1700
+
1701
+ Too generic. No specific gap.
1702
+
1703
+ **Being too complete:**
1704
+
1705
+ > "I made $50,000 by selling an online course about productivity."
1706
+
1707
+ No gap left. You answered everything.
1708
+
1709
+ **Creating gaps you don't close:**
1710
+
1711
+ > "The secret I'm about to share will change everything..."
1712
+ > [Never actually shares the secret]
1713
+
1714
+ This is manipulation. It destroys trust.
1715
+
1716
+ **Clickbait:**
1717
+
1718
+ > "You won't BELIEVE what happened next!"
1719
+
1720
+ Creates gap but signals low-quality content. Sophisticated readers bounce.
1721
+
1722
+ ---
1723
+
1724
+ ## The Meta-Principle
1725
+
1726
+ Curiosity is about **information asymmetry**.
1727
+
1728
+ You know something they want to know. Your job is to:
1729
+
1730
+ 1. Make them aware of the gap
1731
+ 2. Make the answer seem valuable
1732
+ 3. Deliver on the promise
1733
+
1734
+ Do this ethically, and you'll hold attention through any length of copy.
1735
+
1736
+ ---
1737
+
1738
+ ---
1739
+
1740
+ # Flow Techniques: The Slippery Slide
1741
+
1742
+ How to keep readers moving from headline to CTA without friction.
1743
+
1744
+ ---
1745
+
1746
+ ## The Slippery Slide Concept
1747
+
1748
+ Joseph Sugarman:
1749
+
1750
+ > "Your readers should be so compelled to read your copy that they cannot stop reading until they read all of it as if sliding down a slippery slide."
1751
+
1752
+ Once they start, they can't stop. Every element has one job: get them to read the next element.
1753
+
1754
+ - Headline → gets them to read the subheadline
1755
+ - Subheadline → gets them into the first sentence
1756
+ - First sentence → gets them to the second
1757
+ - Each paragraph → pulls them to the next
1758
+ - Everything → slides them toward the CTA
1759
+
1760
+ ---
1761
+
1762
+ ## The Bucket Brigade
1763
+
1764
+ A chain of short phrases that smooth transitions between paragraphs:
1765
+
1766
+ **Common bucket brigade phrases:**
1767
+
1768
+ - And
1769
+ - So
1770
+ - Now
1771
+ - But
1772
+ - Look
1773
+ - Also
1774
+ - First
1775
+ - Listen
1776
+ - By now
1777
+ - You see
1778
+ - Truth is
1779
+ - Turns out
1780
+ - Of course
1781
+ - In fact
1782
+ - Here's why
1783
+ - Here's the thing
1784
+ - Think about it
1785
+ - Bottom line
1786
+ - The result?
1787
+ - What does this mean?
1788
+
1789
+ **How they work:**
1790
+
1791
+ Without bucket brigade:
1792
+
1793
+ > "Most landing pages fail because they focus on features, not benefits.
1794
+ >
1795
+ > Benefits are what the customer actually cares about."
1796
+
1797
+ With bucket brigade:
1798
+
1799
+ > "Most landing pages fail because they focus on features, not benefits.
1800
+ >
1801
+ > Here's the thing: Benefits are what the customer actually cares about."
1802
+
1803
+ The "Here's the thing" smooths the entry into the second paragraph. The reader doesn't pause between ideas.
1804
+
1805
+ ---
1806
+
1807
+ ## Seeds of Curiosity
1808
+
1809
+ Sugarman's technique for ending paragraphs:
1810
+
1811
+ Instead of ending paragraphs flatly, end with a hook:
1812
+
1813
+ **Without seed:**
1814
+
1815
+ > "This is the first principle of good headlines."
1816
+
1817
+ **With seed:**
1818
+
1819
+ > "This is the first principle of good headlines. But the second principle is where most people fail."
1820
+
1821
+ The reader HAS to continue to find out the second principle.
1822
+
1823
+ **Seed phrases:**
1824
+
1825
+ - "But there's more."
1826
+ - "Let me explain."
1827
+ - "And that's not all."
1828
+ - "Here's why that matters."
1829
+ - "Which brings me to..."
1830
+ - "Now comes the interesting part."
1831
+ - "But that's not even the best part."
1832
+
1833
+ **Placement:**
1834
+
1835
+ - At the end of subheads
1836
+ - When switching between ideas
1837
+ - Before slow sections (to maintain momentum)
1838
+ - Early in the copy to build momentum
1839
+
1840
+ ---
1841
+
1842
+ ## The Stutter Technique
1843
+
1844
+ Repeat a word from the last sentence in the first sentence of the next paragraph:
1845
+
1846
+ > "Now we're going to look at a more sophisticated technique.
1847
+ >
1848
+ > A technique used by professional writers, but often overlooked by copywriters."
1849
+
1850
+ The word "technique" bridges the gap. Smoother than starting fresh.
1851
+
1852
+ **Another example:**
1853
+
1854
+ > "The key is specificity. Vague claims don't convert.
1855
+ >
1856
+ > Specificity signals honesty. When you say '$47,329 in one day,' that's believable. When you say 'lots of money,' it's not."
1857
+
1858
+ "Specificity" carries from one paragraph to the next.
1859
+
1860
+ ---
1861
+
1862
+ ## Know Your ABCs
1863
+
1864
+ Logical flow. Point A leads to Point B leads to Point C.
1865
+
1866
+ **Broken flow:**
1867
+
1868
+ > "Energy prices are rising.
1869
+ >
1870
+ > You should invest in cryptocurrency."
1871
+
1872
+ Wait, what? How did we get from energy to crypto? The reader's brain stumbles.
1873
+
1874
+ **Fixed flow:**
1875
+
1876
+ > "Energy prices are rising.
1877
+ >
1878
+ > In fact, prices are rising everywhere. Inflation is eating into your savings.
1879
+ >
1880
+ > To beat inflation, your money needs to grow faster than 8% per year.
1881
+ >
1882
+ > Traditional savings accounts pay less than 1%.
1883
+ >
1884
+ > That's why more people are looking at alternative investments like cryptocurrency."
1885
+
1886
+ Each point connects to the next. The reader slides from energy prices to crypto without friction.
1887
+
1888
+ ---
1889
+
1890
+ ## The Language of Logic
1891
+
1892
+ Transition words that signal logical connections:
1893
+
1894
+ **Cause and effect:**
1895
+
1896
+ - Therefore
1897
+ - As a result
1898
+ - Because of this
1899
+ - This is why
1900
+ - That's why
1901
+
1902
+ **Contrast:**
1903
+
1904
+ - But
1905
+ - However
1906
+ - On the other hand
1907
+ - Yet
1908
+ - Despite this
1909
+
1910
+ **Addition:**
1911
+
1912
+ - Also
1913
+ - Moreover
1914
+ - Furthermore
1915
+ - What's more
1916
+ - Not only that
1917
+
1918
+ **Example:**
1919
+
1920
+ - For instance
1921
+ - For example
1922
+ - Consider this
1923
+ - Take [X]
1924
+
1925
+ **Emphasis:**
1926
+
1927
+ - In fact
1928
+ - Indeed
1929
+ - The truth is
1930
+ - Actually
1931
+ - Really
1932
+
1933
+ These signal to the reader's brain how this paragraph relates to the last one.
1934
+
1935
+ ---
1936
+
1937
+ ## Short First Sentences
1938
+
1939
+ Sugarman's rule: The first sentence should be short and easy to read.
1940
+
1941
+ **Long first sentence:**
1942
+
1943
+ > "When you think about all the different ways that marketing has changed over the past decade, it's remarkable how many new channels have emerged."
1944
+
1945
+ Heavy. Requires commitment to start.
1946
+
1947
+ **Short first sentence:**
1948
+
1949
+ > "Marketing has changed."
1950
+
1951
+ Easy. You're already reading. Now you'll read the next sentence.
1952
+
1953
+ **More short openers:**
1954
+
1955
+ - "Here's the problem."
1956
+ - "It's simple."
1957
+ - "This works."
1958
+ - "Let me explain."
1959
+ - "Consider this."
1960
+ - "I was wrong."
1961
+
1962
+ ---
1963
+
1964
+ ## Paragraph Length Variation
1965
+
1966
+ Same-length paragraphs = monotonous reading
1967
+
1968
+ Vary them:
1969
+
1970
+ Short.
1971
+
1972
+ Then a medium paragraph that expands on the idea with a bit more detail and context.
1973
+
1974
+ Then maybe a longer one when you need to explain something more complex, build an argument with multiple points, or tell a story that requires setup, conflict, and resolution. These longer paragraphs have their place.
1975
+
1976
+ Then short again.
1977
+
1978
+ This creates rhythm. The eye moves easily. The brain doesn't fatigue.
1979
+
1980
+ ---
1981
+
1982
+ ## The Question Bridge
1983
+
1984
+ Questions pull readers forward:
1985
+
1986
+ > "So what does this mean for your landing page?"
1987
+ >
1988
+ > "It means you need to focus on benefits, not features."
1989
+
1990
+ The question creates a micro-gap. The answer closes it. Reader momentum continues.
1991
+
1992
+ **Use sparingly:** Too many questions feels like an interrogation.
1993
+
1994
+ ---
1995
+
1996
+ ## The "Rule of One"
1997
+
1998
+ Mark Ford's principle: Each paragraph should make ONE point.
1999
+
2000
+ If you're making two points, you need two paragraphs.
2001
+
2002
+ **Muddled:**
2003
+
2004
+ > "Headlines are important and you should always test them, plus make sure to use specific numbers because specificity builds credibility and don't forget to match the headline to your audience's awareness level."
2005
+
2006
+ **Clear:**
2007
+
2008
+ > "Headlines do 80% of the work.
2009
+ >
2010
+ > Always test at least 5. One will outperform the others by 2-10x.
2011
+ >
2012
+ > Use specific numbers. '$47,329' beats 'lots of money.'
2013
+ >
2014
+ > Match your headline to your audience's awareness level."
2015
+
2016
+ One point per paragraph. Easy to follow. Easy to remember.
2017
+
2018
+ ---
2019
+
2020
+ ## Momentum Killers
2021
+
2022
+ Things that stop the slide:
2023
+
2024
+ - **Jargon** they have to pause to understand
2025
+ - **Long paragraphs** with no breaks
2026
+ - **Tangents** that don't connect to the main thread
2027
+ - **Weak transitions** that jar the reader
2028
+ - **Same sentence structure** repeated too many times
2029
+ - **All short sentences** (choppy)
2030
+ - **All long sentences** (exhausting)
2031
+ - **Unanswered questions** left hanging
2032
+ - **Excessive hedging** ("It might possibly help some people in certain situations")
2033
+
2034
+ ---
2035
+
2036
+ ## The Meta-Principle
2037
+
2038
+ Every element should either:
2039
+
2040
+ 1. **Pull them forward** (curiosity, promise of value)
2041
+ 2. **Push them forward** (bucket brigades, transitions)
2042
+ 3. **Slide them forward** (easy reading, momentum)
2043
+
2044
+ If any element does none of these, it's friction. Cut it or fix it.
2045
+
2046
+ ---
2047
+
2048
+ # Modern Internet-Native Copy Examples
2049
+
2050
+ How the classics translate to landing pages, tweets, and creator brands.
2051
+
2052
+ ---
2053
+
2054
+ ## Founder Story Examples
2055
+
2056
+ ### Marc Lou (ShipFast)
2057
+
2058
+ > "Hey, it's Marc 👋
2059
+ >
2060
+ > In 2018, I believed I was Mark Zuckerberg, built a startup for 1 year, and got 0 users...
2061
+ >
2062
+ > A few years after my burnout, I restarted the journey differently: I shipped like a madman—16 startups in 2 years.
2063
+ >
2064
+ > Now I'm happy and earn $45,000 a month."
2065
+
2066
+ **Why it works:**
2067
+
2068
+ - Self-deprecating ("I believed I was Mark Zuckerberg")
2069
+ - Specific failure (0 users)
2070
+ - Specific success ($45,000/month, 16 startups in 2 years)
2071
+ - Vulnerability → credibility → shared journey
2072
+
2073
+ ### Codie Sanchez (Contrarian Thinking)
2074
+
2075
+ > "After nearly two decades on Wall Street, I realized the real path to wealth is in unsexy businesses—laundromats, car washes, HVAC."
2076
+
2077
+ **Why it works:**
2078
+
2079
+ - Credibility (Wall Street)
2080
+ - Contrarian insight (unsexy > sexy)
2081
+ - Specific examples (laundromats, car washes, HVAC)
2082
+
2083
+ ---
2084
+
2085
+ ## Pain Quantification Examples
2086
+
2087
+ ### ShipFast
2088
+
2089
+ > "4 hrs to set up emails + 6 hrs designing a landing page + 4 hrs to handle Stripe webhooks + 2 hrs for SEO tags + 1 hr applying for Google OAuth + 3 hrs for DNS records + 2 hrs for protected API routes + ∞ hrs overthinking...
2090
+ >
2091
+ > = 22+ hours of headaches.
2092
+ >
2093
+ > There's an easier way."
2094
+
2095
+ **Why it works:**
2096
+
2097
+ - Makes vague problem (launching is hard) concrete (22+ hours)
2098
+ - Lists specific micro-tasks they recognize
2099
+ - Reader can calculate: "Is this worth $199 to skip?"
2100
+
2101
+ ### Superhuman
2102
+
2103
+ > "Imagine the scene: you and your team get an urgent email, so you rapidly reply. But just after you hit send, your team replies as well. In the best case, you look disorganized. In the worst case, you contradict each other."
2104
+
2105
+ **Why it works:**
2106
+
2107
+ - Vivid scenario they've experienced
2108
+ - Paints the emotional pain (embarrassment)
2109
+ - Makes abstract problem (email chaos) tangible
2110
+
2111
+ ---
2112
+
2113
+ ## Specific Outcome Testimonials
2114
+
2115
+ **Formula:** [Before state] + [Action] + [Specific outcome] + [Timeframe] + [Emotion]
2116
+
2117
+ ### ShipFast testimonials:
2118
+
2119
+ > "I shipped in 6 days as a noob coder. It would have taken me months. I wanna cry 🥲"
2120
+
2121
+ > "I made more in 6 days than minimum wage in Spain."
2122
+
2123
+ > "I managed to exit & sell for 5 figures in a few weeks. Best investment I've made in so long."
2124
+
2125
+ ### Contrarian Thinking:
2126
+
2127
+ > "We were able to buy our first business within 4 months of joining."
2128
+
2129
+ **Why they work:**
2130
+
2131
+ - Specific timeframes (6 days, 4 months)
2132
+ - Specific outcomes (5 figures, bought a business)
2133
+ - Emotional language (wanna cry, best investment)
2134
+ - NOT: "Great product! Highly recommend."
2135
+
2136
+ ---
2137
+
2138
+ ## Disqualification Examples
2139
+
2140
+ ### Justin Welsh
2141
+
2142
+ > "You're a good fit for this if:
2143
+ > ✅ You know this is a tool, and you'll need to use it
2144
+ > ✅ You're willing to reassess your existing ideas
2145
+ >
2146
+ > You're NOT a good fit if:
2147
+ > ❌ You equate success with just buying a course
2148
+ > ❌ You're not willing to do the unsexy work required"
2149
+
2150
+ ### FAQ objection handling:
2151
+
2152
+ > "Couldn't I just do this myself with all the free content out there?"
2153
+ >
2154
+ > "If you could, you would have already. 🤷🏻"
2155
+
2156
+ **Why it works:**
2157
+
2158
+ - Flips from "please buy" to "prove you're worthy"
2159
+ - Creates velvet rope effect
2160
+ - Pre-filters bad customers
2161
+ - The FAQ response is short, honest, slightly challenging
2162
+
2163
+ ---
2164
+
2165
+ ## Benefit-Oriented CTAs
2166
+
2167
+ **Weak (command action):**
2168
+
2169
+ - Sign Up
2170
+ - Learn More
2171
+ - Buy Now
2172
+ - Subscribe
2173
+
2174
+ **Strong (describe benefit):**
2175
+
2176
+ - Get ShipFast
2177
+ - Start building
2178
+ - Enter your new home
2179
+ - See the exact template I used
2180
+ - Send me the first lesson free
2181
+
2182
+ **Below-CTA friction reducers:**
2183
+
2184
+ > "$199 once. Join 2,600+ marketers. 2 minutes to install."
2185
+
2186
+ **Formula:** [Risk reversal] + [Social proof] + [Speed/ease]
2187
+
2188
+ ---
2189
+
2190
+ ## Revenue Transparency
2191
+
2192
+ Internet-native voice marker. Creates trust through specific vulnerability:
2193
+
2194
+ > "Now I'm happy and earn $45,000 a month."
2195
+
2196
+ > "$65K MRR" in bio
2197
+
2198
+ > "The Vibe Marketing community did $400k+ in 9 months."
2199
+
2200
+ **Why it works:**
2201
+
2202
+ - Specific numbers corporate would never share
2203
+ - Proves claims with real data
2204
+ - Creates aspirational but believable target
2205
+
2206
+ ---
2207
+
2208
+ ## Honest Limitations
2209
+
2210
+ Another trust marker:
2211
+
2212
+ > "One note: 3D model generation isn't great yet."
2213
+
2214
+ > "This isn't for complete beginners. You need basic coding knowledge."
2215
+
2216
+ > "Fair warning: setup takes about 30 minutes the first time."
2217
+
2218
+ **Why it works:**
2219
+
2220
+ - Honesty about imperfection builds credibility
2221
+ - Shows you're not hiding anything
2222
+ - Makes other claims more believable
2223
+
2224
+ ---
2225
+
2226
+ ## Strategic Emoji Use
2227
+
2228
+ Internet-native, not professional-sanitized:
2229
+
2230
+ > "I wanna cry 🥲"
2231
+
2232
+ > "If you could, you would have already 🤷🏻"
2233
+
2234
+ > "Hey, it's Marc 👋"
2235
+
2236
+ **Rules:**
2237
+
2238
+ - Sparingly (1-2 per page, not every sentence)
2239
+ - To add emotional tone
2240
+ - Where a human would naturally use them
2241
+ - NOT: 🎉🚀💪 LAUNCH YOUR BUSINESS TODAY! 🔥💯
2242
+
2243
+ ---
2244
+
2245
+ ## In-Group Language
2246
+
2247
+ Signals "I'm one of you":
2248
+
2249
+ - "Ship like a madman"
2250
+ - "Indie hacker" / "solopreneur"
2251
+ - "Vibe-coded"
2252
+ - "MRR" (Monthly Recurring Revenue)
2253
+ - "GTM" (Go to Market)
2254
+
2255
+ **Why it works:**
2256
+
2257
+ - Creates belonging
2258
+ - Filters for the right audience
2259
+ - Builds instant rapport with insiders
2260
+
2261
+ ---
2262
+
2263
+ ## Before/After Contrast Headlines
2264
+
2265
+ ### Modern examples:
2266
+
2267
+ > "Ship your startup in days, not weeks."
2268
+
2269
+ > "From idea to launch in one weekend."
2270
+
2271
+ > "Stop building for months. Start shipping in days."
2272
+
2273
+ **The structure:**
2274
+
2275
+ > [Before: slow/painful] → [After: fast/easy]
2276
+
2277
+ In six words, you've painted transformation.
2278
+
2279
+ ---
2280
+
2281
+ ## The Modern Sales Page Flow
2282
+
2283
+ Based on analysis of ShipFast, Superhuman, Contrarian Thinking:
2284
+
2285
+ 1. **Outcome headline** with specific number or timeframe
2286
+ 2. **Problem section** with quantified pain
2287
+ 3. **Agitate** with scenario they recognize
2288
+ 4. **Credibility** through founder story or proof numbers
2289
+ 5. **Solution** framed as transformation, not features
2290
+ 6. **Social proof** with specific-outcome testimonials
2291
+ 7. **FAQ / Fit section** with disqualification
2292
+ 8. **Offer** with price justification
2293
+ 9. **Final CTA** with friction reducers
2294
+
2295
+ Not every page uses all nine. But this is the complete playbook.
2296
+
2297
+ ---
2298
+
2299
+ ## Voice Markers Summary
2300
+
2301
+ **Signals "internet-native, not corporate":**
2302
+
2303
+ | Corporate | Internet-native |
2304
+ | -------------------------- | ------------------------------- |
2305
+ | "Significant revenue" | "$45,000/month" |
2306
+ | "Many satisfied customers" | "2,894 makers" |
2307
+ | "Get started today" | "Start building" |
2308
+ | No limitations mentioned | "3D generation isn't great yet" |
2309
+ | Stock photo testimonials | "I wanna cry 🥲" |
2310
+ | "We at [Company]..." | "Hey, it's Marc 👋" |
2311
+ | Formal language | "Ship like a madman" |
2312
+ | Rounded numbers | "$47,329" (specific) |
2313
+
2314
+ ---
2315
+
2316
+ ## The Meta-Lesson
2317
+
2318
+ Modern internet-native copy is classic direct response + authenticity markers.
2319
+
2320
+ The principles haven't changed since Hopkins:
2321
+
2322
+ - Specific beats vague
2323
+ - Benefits beat features
2324
+ - Stories beat pitches
2325
+ - Proof beats claims
2326
+
2327
+ What's different:
2328
+
2329
+ - Personal voice over corporate voice
2330
+ - Revenue transparency
2331
+ - Honest limitations
2332
+ - Emoji and in-group language
2333
+ - Shorter attention spans = tighter copy
2334
+ - Mobile-first formatting
2335
+
2336
+ The fundamentals are 100 years old. The packaging is 2024.