sinapse-ai 9.3.0 → 9.4.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.
Files changed (192) hide show
  1. package/.claude/CLAUDE.md +56 -343
  2. package/.claude/rules/agent-authority.md +6 -0
  3. package/.claude/rules/agent-handoff.md +5 -0
  4. package/.claude/rules/cross-squad-routing.md +5 -0
  5. package/.claude/rules/hook-governance.md +6 -0
  6. package/.claude/rules/mcp-usage.md +3 -1
  7. package/.claude/rules/safe-collaboration.md +10 -0
  8. package/.claude/rules/security-data-protection.md +9 -0
  9. package/.claude/rules/squad-awareness.md +3 -1
  10. package/.claude/rules/tool-examples.md +6 -0
  11. package/.claude/rules/workflow-execution.md +7 -0
  12. package/.codex/agents/analyst.md +253 -72
  13. package/.codex/agents/architect.md +455 -68
  14. package/.codex/agents/data-engineer.md +492 -106
  15. package/.codex/agents/developer.md +560 -0
  16. package/.codex/agents/devops.md +518 -69
  17. package/.codex/agents/product-lead.md +335 -0
  18. package/.codex/agents/project-lead.md +377 -0
  19. package/.codex/agents/quality-gate.md +449 -0
  20. package/.codex/agents/sinapse-orqx.md +9 -7
  21. package/.codex/agents/sprint-lead.md +287 -0
  22. package/.codex/agents/squad-creator.md +344 -0
  23. package/.codex/agents/ux-design-expert.md +495 -0
  24. package/.codex/delegation-matrix.json +756 -44
  25. package/.codex/handoff-packet.schema.json +30 -6
  26. package/.sinapse-ai/data/entity-registry.yaml +175 -363
  27. package/.sinapse-ai/data/registry-update-log.jsonl +16 -0
  28. package/.sinapse-ai/development/agents/analyst.md +90 -0
  29. package/.sinapse-ai/development/agents/architect.md +73 -0
  30. package/.sinapse-ai/development/agents/developer.md +69 -0
  31. package/.sinapse-ai/development/agents/devops.md +117 -0
  32. package/.sinapse-ai/development/agents/quality-gate.md +85 -0
  33. package/.sinapse-ai/development/checklists/agent-quality-gate.md +27 -0
  34. package/.sinapse-ai/development/checklists/brownfield-compatibility-checklist.md +20 -0
  35. package/.sinapse-ai/development/checklists/code-review-checklist.md +106 -0
  36. package/.sinapse-ai/development/checklists/issue-triage-checklist.md +9 -0
  37. package/.sinapse-ai/development/checklists/memory-audit-checklist.md +16 -0
  38. package/.sinapse-ai/development/checklists/pr-quality-checklist.md +72 -0
  39. package/.sinapse-ai/development/checklists/security-deployment-checklist.md +54 -0
  40. package/.sinapse-ai/development/checklists/self-critique-checklist.md +19 -1
  41. package/.sinapse-ai/development/skills/debug.md +57 -0
  42. package/.sinapse-ai/development/skills/fast-review.md +69 -0
  43. package/.sinapse-ai/development/skills/research-synthesis.md +77 -0
  44. package/.sinapse-ai/development/skills/security-scan.md +73 -0
  45. package/.sinapse-ai/development/skills/verify.md +53 -0
  46. package/.sinapse-ai/development/templates/squad/agent-template.md +17 -4
  47. package/.sinapse-ai/development/templates/squad/checklist-template.md +13 -5
  48. package/.sinapse-ai/development/templates/squad/task-template.md +7 -0
  49. package/.sinapse-ai/development/templates/squad/workflow-template.yaml +7 -0
  50. package/.sinapse-ai/development/workflows/fast-track.yaml +87 -0
  51. package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +3 -1
  52. package/.sinapse-ai/install-manifest.yaml +71 -35
  53. package/docs/codex-integration-process.md +22 -0
  54. package/docs/codex-parity-program.md +27 -0
  55. package/docs/ide-integration.md +36 -0
  56. package/package.json +1 -1
  57. package/squads/claude-code-mastery/knowledge-base/claude-code-internals-reference.md +927 -0
  58. package/squads/squad-brand/knowledge-base/archetype-brand-mapping.md +12 -1
  59. package/squads/squad-brand/knowledge-base/brand-activism-cultural-branding.md +216 -0
  60. package/squads/squad-brand/knowledge-base/brand-audit-criteria.md +58 -0
  61. package/squads/squad-brand/knowledge-base/brand-digital-strategy.md +188 -0
  62. package/squads/squad-brand/knowledge-base/brand-legal-ip.md +222 -0
  63. package/squads/squad-brand/knowledge-base/brand-naming-framework.md +163 -0
  64. package/squads/squad-brand/knowledge-base/branding-master-reference.md +1001 -0
  65. package/squads/squad-brand/knowledge-base/color-psychology.md +25 -12
  66. package/squads/squad-brand/knowledge-base/employer-personal-branding.md +206 -0
  67. package/squads/squad-brand/knowledge-base/routing-catalog.md +34 -0
  68. package/squads/squad-brand/knowledge-base/sonic-branding-principles.md +6 -1
  69. package/squads/squad-brand/knowledge-base/typography-personality.md +34 -0
  70. package/squads/squad-claude/knowledge-base/context-window-optimization.md +334 -0
  71. package/squads/squad-claude/knowledge-base/knowledge-architecture-reference.md +403 -0
  72. package/squads/squad-claude/knowledge-base/memory-systems-reference.md +412 -0
  73. package/squads/squad-claude/knowledge-base/obsidian-claude-integration.md +423 -0
  74. package/squads/squad-claude/knowledge-base/retrieval-augmented-generation.md +320 -0
  75. package/squads/squad-claude/knowledge-base/skill-creation-patterns.md +380 -0
  76. package/squads/squad-claude/knowledge-base/swarm-orchestration-patterns.md +411 -0
  77. package/squads/squad-cloning/knowledge-base/clone-quality-assurance.md +211 -0
  78. package/squads/squad-cloning/knowledge-base/confidence-scoring.md +51 -0
  79. package/squads/squad-cloning/knowledge-base/cross-squad-deployment.md +47 -0
  80. package/squads/squad-cloning/knowledge-base/ethical-guidelines.md +237 -0
  81. package/squads/squad-cloning/knowledge-base/knowledge-graph-for-clones.md +295 -0
  82. package/squads/squad-cloning/knowledge-base/memory-architecture-for-clones.md +229 -0
  83. package/squads/squad-cloning/knowledge-base/multi-agent-deployment-patterns.md +320 -0
  84. package/squads/squad-cloning/knowledge-base/skill-standard-for-clones.md +262 -0
  85. package/squads/squad-cloning/knowledge-base/sop-extraction-guide.md +243 -0
  86. package/squads/squad-commercial/knowledge-base/account-based-selling.md +206 -0
  87. package/squads/squad-commercial/knowledge-base/ai-as-competitive-infrastructure.md +14 -0
  88. package/squads/squad-commercial/knowledge-base/ai-in-sales.md +199 -0
  89. package/squads/squad-commercial/knowledge-base/brazilian-sales-context.md +195 -0
  90. package/squads/squad-commercial/knowledge-base/customer-success-operations.md +83 -2
  91. package/squads/squad-commercial/knowledge-base/prospecting-pipeline-generation.md +69 -0
  92. package/squads/squad-commercial/knowledge-base/sales-enablement-playbook.md +260 -0
  93. package/squads/squad-commercial/knowledge-base/sales-methodology-comparison.md +185 -0
  94. package/squads/squad-commercial/knowledge-base/sales-revenue-master-reference.md +1123 -0
  95. package/squads/squad-content/knowledge-base/brazilian-content-context.md +176 -0
  96. package/squads/squad-content/knowledge-base/competitor-analysis-methods.md +40 -1
  97. package/squads/squad-content/knowledge-base/content-architecture-taxonomy.md +206 -0
  98. package/squads/squad-content/knowledge-base/content-formats-encyclopedia.md +58 -1
  99. package/squads/squad-content/knowledge-base/content-references-bibliography.md +130 -0
  100. package/squads/squad-content/knowledge-base/content-strategy-master-reference.md +1097 -0
  101. package/squads/squad-content/knowledge-base/content-tech-stack.md +150 -0
  102. package/squads/squad-content/knowledge-base/copywriting-formulas-library.md +188 -0
  103. package/squads/squad-content/knowledge-base/email-newsletter-strategy.md +161 -0
  104. package/squads/squad-content/knowledge-base/platform-algorithm-intelligence.md +86 -1
  105. package/squads/squad-content/knowledge-base/social-algorithms-master-reference.md +1007 -0
  106. package/squads/squad-content/knowledge-base/video-audio-content-playbook.md +218 -0
  107. package/squads/squad-copy/knowledge-base/ai-copy-production.md +254 -0
  108. package/squads/squad-copy/knowledge-base/brazilian-copywriting-context.md +242 -0
  109. package/squads/squad-copy/knowledge-base/email-copywriting-system.md +299 -0
  110. package/squads/squad-copy/knowledge-base/landing-page-copy-architecture.md +267 -0
  111. package/squads/squad-copy/knowledge-base/power-words-catalog.md +205 -0
  112. package/squads/squad-copy/knowledge-base/seo-copywriting.md +255 -0
  113. package/squads/squad-copy/knowledge-base/video-script-copywriting.md +239 -0
  114. package/squads/squad-council/knowledge-base/brand-strategy-models.md +193 -0
  115. package/squads/squad-council/knowledge-base/growth-strategy-models.md +267 -0
  116. package/squads/squad-council/knowledge-base/innovation-disruption-frameworks.md +193 -0
  117. package/squads/squad-council/knowledge-base/market-analysis-frameworks.md +240 -0
  118. package/squads/squad-council/knowledge-base/organizational-leadership-models.md +212 -0
  119. package/squads/squad-council/knowledge-base/sales-strategy-models.md +215 -0
  120. package/squads/squad-courses/knowledge-base/course-launch-strategy.md +251 -0
  121. package/squads/squad-courses/knowledge-base/domain-advocacia-curriculum.md +385 -0
  122. package/squads/squad-courses/knowledge-base/domain-contabilidade-curriculum.md +266 -0
  123. package/squads/squad-courses/knowledge-base/platform-comparison.md +68 -0
  124. package/squads/squad-courses/knowledge-base/video-production-guide.md +70 -0
  125. package/squads/squad-cybersecurity/knowledge-base/cloud-security-reference.md +363 -0
  126. package/squads/squad-cybersecurity/knowledge-base/compliance-frameworks.md +273 -0
  127. package/squads/squad-cybersecurity/knowledge-base/database-security.md +438 -0
  128. package/squads/squad-cybersecurity/knowledge-base/incident-response-playbook.md +420 -0
  129. package/squads/squad-cybersecurity/knowledge-base/network-security-reference.md +477 -0
  130. package/squads/squad-cybersecurity/knowledge-base/penetration-testing-methodology.md +350 -0
  131. package/squads/squad-cybersecurity/knowledge-base/vulnerability-management.md +349 -0
  132. package/squads/squad-design/knowledge-base/brazilian-design-context.md +223 -0
  133. package/squads/squad-design/knowledge-base/component-api-patterns.md +208 -4
  134. package/squads/squad-design/knowledge-base/design-system-master-reference.md +1302 -0
  135. package/squads/squad-design/knowledge-base/design-systems-frameworks.md +91 -1
  136. package/squads/squad-design/knowledge-base/responsive-modern-css.md +96 -4
  137. package/squads/squad-design/knowledge-base/wcag-aria-reference.md +117 -5
  138. package/squads/squad-design/knowledge-base/web-performance-reference.md +127 -4
  139. package/squads/squad-finance/knowledge-base/brazilian-taxation.md +263 -0
  140. package/squads/squad-finance/knowledge-base/contabilidade-master-reference.md +998 -0
  141. package/squads/squad-finance/knowledge-base/finance-master-reference.md +946 -0
  142. package/squads/squad-finance/knowledge-base/financial-reporting-analysis.md +316 -0
  143. package/squads/squad-finance/knowledge-base/fintech-brazilian-context.md +242 -0
  144. package/squads/squad-finance/knowledge-base/fpa-planning-frameworks.md +286 -0
  145. package/squads/squad-finance/knowledge-base/ma-and-transactions.md +285 -0
  146. package/squads/squad-finance/knowledge-base/risk-management.md +233 -0
  147. package/squads/squad-finance/knowledge-base/startups-venture-capital.md +337 -0
  148. package/squads/squad-growth/knowledge-base/ai-growth-playbook.md +216 -0
  149. package/squads/squad-growth/knowledge-base/attribution-models.md +78 -0
  150. package/squads/squad-growth/knowledge-base/brazilian-growth-context.md +208 -0
  151. package/squads/squad-growth/knowledge-base/community-led-growth.md +175 -0
  152. package/squads/squad-growth/knowledge-base/content-marketing-flywheel.md +190 -0
  153. package/squads/squad-growth/knowledge-base/email-lifecycle-framework.md +192 -0
  154. package/squads/squad-growth/knowledge-base/growth-frameworks-catalog.md +82 -0
  155. package/squads/squad-growth/knowledge-base/growth-master-reference.md +1168 -0
  156. package/squads/squad-growth/knowledge-base/routing-catalog.md +53 -11
  157. package/squads/squad-paidmedia/knowledge-base/audiences-segmentation-deep.md +285 -0
  158. package/squads/squad-paidmedia/knowledge-base/creative-strategy-deep.md +294 -0
  159. package/squads/squad-paidmedia/knowledge-base/google-ads-account-architecture.md +87 -0
  160. package/squads/squad-paidmedia/knowledge-base/meta-ads-campaign-architecture.md +76 -0
  161. package/squads/squad-paidmedia/knowledge-base/paid-media-metrics-reference.md +117 -0
  162. package/squads/squad-paidmedia/knowledge-base/paid-traffic-master-reference.md +1308 -0
  163. package/squads/squad-paidmedia/knowledge-base/routing-catalog.md +95 -18
  164. package/squads/squad-paidmedia/knowledge-base/traffic-masters-frameworks.md +71 -0
  165. package/squads/squad-product/knowledge-base/brazilian-product-context.md +284 -0
  166. package/squads/squad-product/knowledge-base/discovery-methodology-playbook.md +141 -0
  167. package/squads/squad-product/knowledge-base/pm-frameworks-reference.md +125 -9
  168. package/squads/squad-product/knowledge-base/product-analytics-formulas.md +72 -0
  169. package/squads/squad-product/knowledge-base/product-led-growth-reference.md +155 -13
  170. package/squads/squad-product/knowledge-base/product-market-fit-framework.md +222 -0
  171. package/squads/squad-product/knowledge-base/routing-catalog.md +32 -0
  172. package/squads/squad-research/knowledge-base/agentic-second-brain-reference.md +591 -0
  173. package/squads/squad-research/knowledge-base/ai-augmented-research.md +212 -0
  174. package/squads/squad-research/knowledge-base/brazilian-market-research-sources.md +197 -0
  175. package/squads/squad-research/knowledge-base/community-platforms-reference.md +786 -0
  176. package/squads/squad-research/knowledge-base/community-research-methods.md +194 -0
  177. package/squads/squad-research/knowledge-base/mixed-methods-research-design.md +168 -0
  178. package/squads/squad-research/knowledge-base/network-effects-analysis.md +192 -0
  179. package/squads/squad-research/knowledge-base/qualitative-research-deep-methods.md +202 -0
  180. package/squads/squad-research/knowledge-base/quantitative-research-methods.md +208 -0
  181. package/squads/squad-research/knowledge-base/research-frameworks-encyclopedia.md +40 -0
  182. package/squads/squad-research/knowledge-base/research-synthesis-frameworks.md +223 -0
  183. package/squads/squad-storytelling/knowledge-base/brand-mythology-framework.md +236 -0
  184. package/squads/squad-storytelling/knowledge-base/brazilian-storytelling-context.md +237 -0
  185. package/squads/squad-storytelling/knowledge-base/data-storytelling.md +232 -0
  186. package/squads/squad-storytelling/knowledge-base/improv-storytelling.md +226 -0
  187. package/squads/squad-storytelling/knowledge-base/persuasion-narrative-techniques.md +269 -0
  188. package/squads/squad-storytelling/knowledge-base/social-movement-narratives.md +191 -0
  189. package/squads/squad-storytelling/knowledge-base/video-storytelling.md +252 -0
  190. package/squads/claude-code-mastery/data/swarm-orchestration-patterns.yaml +0 -378
  191. package/squads/squad-animations/knowledge-base/framer-motion-complete-reference.md +0 -710
  192. package/squads/squad-animations/knowledge-base/web-animations-api-view-transitions.md +0 -478
@@ -0,0 +1,1168 @@
1
+ # Growth Master Reference
2
+
3
+ > **Source:** MS-004 Growth Master System Research (42+ sources, verified 2026-04-07)
4
+ > **Squad:** squad-growth | **Orchestrator:** Catalyst
5
+ > **Scope:** Frameworks, SEO, analytics, experimentation, retention, viral, CRO, Brazilian context
6
+
7
+ ---
8
+
9
+ ## Table of Contents
10
+
11
+ 1. [Growth Frameworks](#1-growth-frameworks)
12
+ 2. [North Star Metric](#2-north-star-metric)
13
+ 3. [Growth Loops](#3-growth-loops)
14
+ 4. [Product-Led Growth (PLG)](#4-product-led-growth-plg)
15
+ 5. [SEO & Organic Acquisition](#5-seo--organic-acquisition)
16
+ 6. [Content Marketing Flywheel](#6-content-marketing-flywheel)
17
+ 7. [Analytics Stack](#7-analytics-stack)
18
+ 8. [Experimentation & A/B Testing](#8-experimentation--ab-testing)
19
+ 9. [Retention & Hook Model](#9-retention--hook-model)
20
+ 10. [Viral & Referral Mechanics](#10-viral--referral-mechanics)
21
+ 11. [CRO — Conversion Rate Optimization](#11-cro--conversion-rate-optimization)
22
+ 12. [Brazilian Growth Context](#12-brazilian-growth-context)
23
+ 13. [Prioritization Frameworks](#13-prioritization-frameworks)
24
+ 14. [Data-Driven Decision Making](#14-data-driven-decision-making)
25
+ 15. [Email & Lifecycle Marketing](#15-email--lifecycle-marketing)
26
+ 16. [AI & Growth](#16-ai--growth)
27
+ 17. [Key People & Bibliography](#17-key-people--bibliography)
28
+ 18. [Actionable Checklists](#18-actionable-checklists)
29
+
30
+ ---
31
+
32
+ ## 1. Growth Frameworks
33
+
34
+ ### 1.1 AARRR — Pirate Metrics (Dave McClure, 2007)
35
+
36
+ The five stages of the user lifecycle:
37
+
38
+ | Stage | Metric | Key Question | Examples |
39
+ |-------|--------|--------------|----------|
40
+ | **Acquisition** | New users/visitors | How do users find you? | SEO, ads, referral, PR |
41
+ | **Activation** | % reaching "aha moment" | Do users have a positive first experience? | Complete onboarding, first value |
42
+ | **Retention** | % returning | Do users come back? | DAU/MAU, recurring login |
43
+ | **Revenue** | Revenue per user | Do users pay? | Trial-to-paid, ARPU |
44
+ | **Referral** | % who refer | Do users bring others? | K-factor, NPS, invites |
45
+
46
+ ### 1.2 RARRA — Retention-First Reordering (Brian Balfour / Reforge)
47
+
48
+ Prioritization order should be **RARRA**, not AARRR:
49
+
50
+ ```
51
+ Retention → Activation → Revenue → Referral → Acquisition
52
+ ```
53
+
54
+ **Rationale:** Acquiring users who don't stay is a leaky bucket. Fix retention first, then optimize upstream.
55
+
56
+ ### 1.3 Reforge Growth Model — Four Loops
57
+
58
+ 1. **Acquisition Loop** — How new users arrive (paid, viral, content, sales)
59
+ 2. **Engagement Loop** — How users keep using (Trigger → Action → Variable Reward → Investment)
60
+ 3. **Monetization Loop** — How value converts to revenue (freemium → upgrade → expansion)
61
+ 4. **Defensibility** — How advantages accumulate (network effects, data moats, brand)
62
+
63
+ ### 1.4 Growth Eras
64
+
65
+ | Era | Period | Focus |
66
+ |-----|--------|-------|
67
+ | Growth Hacking | 2010-2015 | Tactical hacks, viral tricks, underused channels |
68
+ | Growth as Discipline | 2015-2020 | Reforge, systematic frameworks, dedicated teams |
69
+ | Growth Engineering | 2020-present | Product-integrated, retention-first, PLG, AI automation |
70
+
71
+ ### 1.5 Sustainable Growth Requires
72
+
73
+ 1. **Strong retention** — Product solves a real problem and creates habit
74
+ 2. **Compound loops** — Existing user activity generates new users
75
+ 3. **Channel diversification** — Portfolio of channels at different maturities
76
+ 4. **Data moats** — Advantages that accumulate with scale (network effects, proprietary data)
77
+
78
+ > **Law of Shitty Clickthroughs** (Andrew Chen): Every acquisition channel degrades over time. Banner CTR was 78% in 1994, now below 0.1%.
79
+
80
+ ---
81
+
82
+ ## 2. North Star Metric
83
+
84
+ ### Definition
85
+
86
+ The single metric that best captures the core value a product delivers to users. Serves as organizational alignment — all teams optimize toward the same guiding star.
87
+
88
+ ### Criteria for a Good NSM
89
+
90
+ 1. Reflects value delivery to the user (not just revenue)
91
+ 2. Is a leading indicator of future revenue
92
+ 3. Is measurable and actionable
93
+ 4. Can be influenced by multiple teams
94
+
95
+ ### Classic Examples
96
+
97
+ | Company | NSM | Logic |
98
+ |---------|-----|-------|
99
+ | Facebook | DAU | Daily engagement = value for users and advertisers |
100
+ | Airbnb | Nights booked | Core value: completed stays |
101
+ | Spotify | Listening time | More listening = more value = more retention |
102
+ | Slack | Messages sent per team | Adoption within the organization |
103
+ | HubSpot | Weekly Active Teams | Recurring team engagement |
104
+ | Dropbox | Files synced | Core value: active storage |
105
+
106
+ ### Guardrails
107
+
108
+ NSM does NOT replace guardrail metrics. If Spotify optimized only for listening time, it could degrade quality (infinite autoplay). Guardrails like NPS, churn, and revenue prevent perverse optimization.
109
+
110
+ ---
111
+
112
+ ## 3. Growth Loops
113
+
114
+ ### Why Loops > Funnels
115
+
116
+ | Aspect | Funnel (Linear) | Loop (Compound) |
117
+ |--------|-----------------|-----------------|
118
+ | Source | Constant external input (budget) | Output becomes input |
119
+ | Marginal cost | Constant or increasing | Decreasing |
120
+ | Curve | Flat (or decelerating) | Exponential (J-curve) |
121
+ | Sustainability | Depends on budget | Self-sustaining |
122
+ | Examples | Ads, outbound sales | Viral, UGC, network effects |
123
+
124
+ ### Acquisition Loops
125
+
126
+ **1. Viral Loop:**
127
+ ```
128
+ User → Uses product → Invites/shares → New user → Uses product → ...
129
+ ```
130
+ Examples: Slack, Zoom, Calendly
131
+
132
+ **2. UGC Loop:**
133
+ ```
134
+ User → Creates content → Content indexed by Google → New user finds it → Creates content → ...
135
+ ```
136
+ Examples: Pinterest, Reddit, Quora, Stack Overflow
137
+
138
+ **3. Paid Loop:**
139
+ ```
140
+ Revenue → Invest in ads → New users → Revenue → Invest more → ...
141
+ ```
142
+ Works if LTV > CAC with margin to reinvest.
143
+
144
+ **4. Sales Loop:**
145
+ ```
146
+ Revenue → Hire salespeople → New clients → Revenue → Hire more → ...
147
+ ```
148
+
149
+ ### Engagement Loops
150
+
151
+ | Loop Type | Mechanism | Examples |
152
+ |-----------|-----------|----------|
153
+ | Personal Utility | User stores data → data becomes valuable → returns | Notion, Google Drive |
154
+ | Social | User posts → receives feedback → motivated → posts more | Instagram, LinkedIn |
155
+ | Notification | Event → push/email → user returns → generates activity | WhatsApp, Slack |
156
+
157
+ ### Monetization Loops
158
+
159
+ **Expansion Revenue:**
160
+ ```
161
+ User → Uses more → Hits limits → Upgrades plan → Uses more → ...
162
+ ```
163
+
164
+ **Marketplace Liquidity:**
165
+ ```
166
+ More sellers → More options → More buyers → More demand → More sellers → ...
167
+ ```
168
+
169
+ > **Goal:** Every company should identify and optimize at least one compound loop. Linear loops (paid, outbound) bootstrap and complement but shouldn't be the only growth source.
170
+
171
+ ---
172
+
173
+ ## 4. Product-Led Growth (PLG)
174
+
175
+ ### Core Principles
176
+
177
+ 1. **Product is the channel** — User experiences value before talking to sales
178
+ 2. **Self-serve first** — Frictionless onboarding, no mandatory demo
179
+ 3. **Minimum time-to-value** — User hits "aha moment" ASAP
180
+ 4. **Bottom-up adoption** — Individual users adopt, then organization buys
181
+ 5. **Data-driven expansion** — Upsell based on behavior, not sales pitch
182
+
183
+ ### PLG Examples
184
+
185
+ | Company | PLG Model | Mechanism |
186
+ |---------|-----------|-----------|
187
+ | Slack | Freemium + viral | Teams adopt, then buy |
188
+ | Zoom | Freemium + viral | Host uses, guests experience |
189
+ | Figma | Freemium + collaboration | Designers share, teams adopt |
190
+ | Notion | Freemium + templates | Templates attract, workflows retain |
191
+ | Calendly | Freemium + viral | Every scheduling link = marketing |
192
+ | Loom | Freemium + viral | Every video sent = marketing |
193
+
194
+ ### Pricing Models
195
+
196
+ | Model | Free Duration | Typical Conversion | Best For |
197
+ |-------|---------------|-------------------|----------|
198
+ | **Freemium** | Permanent (limited) | 2-5% | High volume, low touch |
199
+ | **Free Trial** | 7-30 days (full access) | 15-25% (great); 8-12% (good) | Complex products needing time |
200
+ | **Reverse Trial** | Starts premium, downgrades | 10-15% | Products where premium value isn't immediate |
201
+ | **Hybrid (PLG + Sales)** | Self-serve + sales-assisted | Varies | SMB self-serve, Enterprise sales |
202
+
203
+ ### Product Qualified Leads (PQLs)
204
+
205
+ Users who demonstrate purchase intent through product behavior:
206
+
207
+ | Signal | Weight | Threshold |
208
+ |--------|--------|-----------|
209
+ | Users in workspace | 5 | >= 5 |
210
+ | Premium features used | 4 | >= 3 |
211
+ | Pricing page visits | 3 | >= 2 in 7 days |
212
+ | Weekly active time | 3 | >= 3 hours |
213
+ | Active integrations | 2 | >= 2 |
214
+
215
+ ### Onboarding Framework
216
+
217
+ 1. **Sign-up** — Minimum fields, social login, no credit card (freemium)
218
+ 2. **Welcome Survey** — 2-3 questions to personalize (JTBD, role, goal)
219
+ 3. **Setup Checklist** — Clear steps with visual progress
220
+ 4. **Quick Win** — First value in <5 minutes
221
+ 5. **Celebrate** — Positive reinforcement at milestones
222
+ 6. **Ongoing Education** — Contextual tooltips, educational emails
223
+
224
+ **Onboarding Metrics:**
225
+ - Time-to-First-Value (TTFV)
226
+ - Activation Rate (% completing critical setup)
227
+ - D1 / D7 / D30 Retention by onboarding cohort
228
+ - Setup Completion Rate
229
+
230
+ ### Network Effects
231
+
232
+ | Type | Description | Example |
233
+ |------|-------------|---------|
234
+ | **Direct** | More users = more value per user | WhatsApp, phone |
235
+ | **Indirect (cross-side)** | More users on one side = more value for the other | Uber (riders/drivers) |
236
+ | **Data network** | More usage = better product (via data) | Waze, Google Search |
237
+ | **Marketplace** | Liquidity attracts both sides | Airbnb, Amazon Marketplace |
238
+
239
+ ---
240
+
241
+ ## 5. SEO & Organic Acquisition
242
+
243
+ ### Three Pillars
244
+
245
+ 1. **Technical SEO** — Infrastructure enabling crawling and indexation
246
+ 2. **Content SEO** — Relevant content matching user search intent
247
+ 3. **Off-page SEO** — Domain authority via backlinks and mentions
248
+
249
+ > Organic Google traffic = **53.3%** of all web traffic (BrightEdge 2025). AI search is growing but still <1% of referral traffic.
250
+
251
+ ### 5.1 Technical SEO
252
+
253
+ | Element | Description | Impact |
254
+ |---------|-------------|--------|
255
+ | **Core Web Vitals** | LCP, INP, CLS | Ranking factor since 2021 |
256
+ | **Mobile-first indexing** | Google indexes mobile version first | Ranking factor |
257
+ | **Site speed** | Load time | Directly correlated with bounce rate |
258
+ | **Structured data** | Schema.org markup | Rich snippets, knowledge panels |
259
+ | **XML Sitemap** | URL map for crawlers | Crawling efficiency |
260
+ | **Robots.txt** | Crawler directives | Crawl budget control |
261
+ | **Canonical tags** | Preferred URL indicators | Prevent duplicate content |
262
+ | **Hreflang** | Language/region version | International SEO |
263
+ | **HTTPS** | SSL certificate | Ranking factor |
264
+ | **Internal linking** | Links between site pages | Distributes PageRank, helps crawling |
265
+
266
+ #### Core Web Vitals (Updated 2025-2026)
267
+
268
+ INP replaced FID as Core Web Vital in March 2024. INP measures end-to-end responsiveness.
269
+
270
+ | Metric | Measures | Good | Needs Improvement | Poor |
271
+ |--------|----------|------|-------------------|------|
272
+ | **LCP** | Loading speed | <= 2.5s (gold: <2.0s) | <= 4.0s | > 4.0s |
273
+ | **INP** | Responsiveness | <= 200ms | <= 500ms | > 500ms |
274
+ | **CLS** | Visual stability | <= 0.1 | <= 0.25 | > 0.25 |
275
+
276
+ **Key data:** Only ~47% of sites meet CWV thresholds in 2026. INP is the most failed metric (43% fail). Sites with INP >300ms reported ranking drops up to 31% (especially mobile). Google Dec 2025 Core Update (volatility 8.7/10) affected 40-60% of sites globally.
277
+
278
+ ### 5.2 Content SEO
279
+
280
+ #### Search Intent Types
281
+
282
+ | Intent | Example | Ideal Format |
283
+ |--------|---------|--------------|
284
+ | **Informational** | "how to do SEO" | Blog post, guide, tutorial |
285
+ | **Navigational** | "Ahrefs login" | Product/login page |
286
+ | **Commercial** | "best SEO tool" | Comparison, review |
287
+ | **Transactional** | "subscribe Ahrefs" | Landing page, pricing |
288
+
289
+ #### E-E-A-T
290
+
291
+ - **Experience** — Does the author have direct experience?
292
+ - **Expertise** — Does the author have demonstrable expertise?
293
+ - **Authoritativeness** — Is the site/author a recognized authority?
294
+ - **Trustworthiness** — Is the content reliable? Is the site secure?
295
+
296
+ Critical for YMYL (Your Money or Your Life) content but impacts all niches.
297
+
298
+ #### Topical Authority — Pillar-Cluster Model
299
+
300
+ ```
301
+ Pillar Page: "Complete Guide to SEO" (3000+ words)
302
+ +-- Cluster: "Technical SEO" (1500 words)
303
+ +-- Cluster: "Keyword Research" (1500 words)
304
+ +-- Cluster: "Link Building" (1500 words)
305
+ +-- Cluster: "Content SEO" (1500 words)
306
+ +-- Cluster: "Local SEO" (1500 words)
307
+ ```
308
+
309
+ Each cluster links to the pillar and vice-versa, creating a thematic silo signaling authority.
310
+
311
+ #### Programmatic SEO
312
+
313
+ Create thousands of optimized pages using templates + structured data.
314
+
315
+ **Components:** Head term + Modifier + Template + Data + Unique Value
316
+
317
+ **Examples:** Zapier (25K+ integration pages), TripAdvisor (destination pages), Wise (currency conversion pages)
318
+
319
+ **Risks:** Thin/duplicate content penalties, pages without unique value won't rank, wasted crawl budget.
320
+
321
+ ### 5.3 Link Building Strategies
322
+
323
+ | Strategy | Description | Scalability |
324
+ |----------|-------------|-------------|
325
+ | Guest posting | Write for other sites | Medium |
326
+ | Digital PR | Create stories press covers | High |
327
+ | Broken link building | Find broken links, offer alternative | Medium |
328
+ | Skyscraper technique | Create better content, request substitution | Low |
329
+ | Data/research | Publish original citable data | High |
330
+ | Tools/calculators | Create useful tools that attract links | High |
331
+ | HARO/Connectively | Respond to journalists seeking sources | Medium |
332
+
333
+ ### 5.4 AI Search Impact (SGE / AI Overviews)
334
+
335
+ | Data Point | Value | Source |
336
+ |------------|-------|--------|
337
+ | AI Overviews appearance | ~25.8% of US searches (up to 48-60% by some methodologies) | Semrush, BrightEdge, Ahrefs (Jan 2026) |
338
+ | Organic CTR drop with AI Overview | -61% (from 1.76% to 0.61%) | Seer Interactive 2025 |
339
+ | Zero-click searches | ~58.5-60% of all Google searches | SparkToro/Datos 2024-2025 |
340
+ | Zero-click with AI Overviews active | ~83% | SparkToro |
341
+ | Mobile zero-click | ~77% vs ~47% desktop | SparkToro |
342
+ | Sites cited IN AI Overviews | CTR can increase up to 35% | Multiple sources |
343
+
344
+ **Adaptation Strategies:**
345
+ 1. Optimize for AI citation — well-structured content, factual data, authority
346
+ 2. Focus on transactional searches — less impacted by AI Overviews
347
+ 3. Create content AI can't replicate — original experience, proprietary data, expert opinion
348
+ 4. Diversify beyond Google — YouTube, TikTok, Reddit, Perplexity
349
+ 5. Brand building — branded searches are not impacted
350
+
351
+ ---
352
+
353
+ ## 6. Content Marketing Flywheel
354
+
355
+ ### Flywheel vs. Calendar
356
+
357
+ The traditional content calendar is linear: plan, produce, publish, promote. The **Content Flywheel** is compound:
358
+
359
+ ```
360
+ Research → Long-form content → Atomize into smaller pieces → Distribute across channels
361
+ ^ |
362
+ +-------- Performance data feeds next research cycle ----------------+
363
+ ```
364
+
365
+ ### Pillar-Cluster Architecture
366
+
367
+ 1. **Pillar Page** — Comprehensive guide (2000-5000 words)
368
+ 2. **Cluster Pages** — Focused subtopic articles (1000-2000 words)
369
+ 3. **Internal links** — Each cluster links to pillar and vice-versa
370
+ 4. **Semantic coverage** — Together, pages cover the topic exhaustively
371
+
372
+ ### Content Scoring Framework
373
+
374
+ | Dimension | Weight | Metrics |
375
+ |-----------|--------|---------|
376
+ | Organic traffic | 30% | Sessions, impressions, CTR |
377
+ | Engagement | 25% | Time on page, scroll depth, bounce rate |
378
+ | Conversion | 25% | Leads generated, trial signups, PQLs |
379
+ | Quality | 10% | E-E-A-T score, backlinks earned |
380
+ | Freshness | 10% | Last update, temporal relevance |
381
+
382
+ ### Distribution Channels
383
+
384
+ | Channel | Type | When to Use |
385
+ |---------|------|-------------|
386
+ | SEO/Google | Owned | Evergreen content, clear search intent |
387
+ | Email newsletter | Owned | Existing audience, nurturing |
388
+ | Social media (organic) | Borrowed | Brand awareness, engagement |
389
+ | YouTube | Owned/Borrowed | Tutorials, thought leadership |
390
+ | Podcast | Owned | Thought leadership, audience building |
391
+ | Communities (Reddit, Discord) | Borrowed | Specific niches, feedback |
392
+ | LinkedIn (personal) | Borrowed | B2B, employer branding |
393
+ | Partnerships/Guest | Earned | Reach new audiences |
394
+
395
+ ### Content Repurposing Model
396
+
397
+ ```
398
+ Webinar (60min)
399
+ +-- Blog post (3000 words)
400
+ +-- YouTube video (edited, 15min)
401
+ +-- 10 short clips (TikTok, Reels, Shorts)
402
+ +-- Podcast episode (audio)
403
+ +-- Infographic
404
+ +-- Twitter/X thread
405
+ +-- LinkedIn carousel
406
+ +-- Email series (3 emails)
407
+ +-- Newsletter digest
408
+ ```
409
+
410
+ **Rule of thumb:** 80% distribution, 20% creation.
411
+
412
+ ---
413
+
414
+ ## 7. Analytics Stack
415
+
416
+ ### Modern Analytics Ecosystem
417
+
418
+ | Category | Tools | Use Case |
419
+ |----------|-------|----------|
420
+ | **Web Analytics** | GA4, Plausible, Fathom | Traffic, sessions, web conversions |
421
+ | **Product Analytics** | Mixpanel, Amplitude, Heap, PostHog | In-product behavior |
422
+ | **Session Recording** | Hotjar, FullStory, LogRocket | Individual sessions, heatmaps |
423
+ | **Attribution** | Triple Whale, Rockerbox, Northbeam | Multi-touch attribution |
424
+ | **Data Warehouse** | BigQuery, Snowflake, Databricks | Centralized storage |
425
+ | **BI/Visualization** | Looker, Metabase, Tableau | Dashboards, exploration |
426
+ | **CDP** | Segment, RudderStack, Jitsu | Data collection and routing |
427
+ | **ETL/ELT** | Fivetran, Airbyte, dbt | Data transformation |
428
+ | **Experimentation** | Statsig, Optimizely, LaunchDarkly | A/B testing, feature flags |
429
+
430
+ ### GA4 vs Universal Analytics
431
+
432
+ | Aspect | Universal Analytics | GA4 |
433
+ |--------|-------------------|-----|
434
+ | Data model | Sessions-based | Events-based |
435
+ | Tracking | Page views + events | Everything is an event |
436
+ | User identity | Client ID | User ID + Google Signals |
437
+ | ML/AI | Basic | Predictive metrics, anomaly detection |
438
+ | Privacy | Cookie-dependent | Consent mode, modeling |
439
+ | Reporting | Pre-built reports | Explorations (custom) |
440
+
441
+ ### Product Analytics Comparison
442
+
443
+ | Tool | Strength | Best For |
444
+ |------|----------|----------|
445
+ | **Mixpanel** | Event-based, ad hoc queries, funnels | Self-serve analytics |
446
+ | **Amplitude** | Behavioral cohorts, experimentation, CDP | Enterprise |
447
+ | **Heap** | Autocapture, retroactive analysis | Teams with low eng bandwidth |
448
+ | **PostHog** | Open-source, all-in-one (analytics + flags + testing) | Developer-first teams |
449
+
450
+ ### Attribution Models
451
+
452
+ | Model | Logic | Best When |
453
+ |-------|-------|-----------|
454
+ | Last-click | Full credit to last click | Simple but misleading |
455
+ | First-click | Full credit to first contact | Valuing awareness |
456
+ | Linear | Equal credit distribution | All touchpoints matter |
457
+ | Time-decay | More credit to recent touchpoints | Long sales cycles |
458
+ | Position-based (U) | 40% first + 40% last + 20% middle | Balanced approach |
459
+ | Data-driven | ML determines credit | Requires data volume |
460
+ | Incrementality testing | Controlled experiments | Gold standard (most accurate) |
461
+
462
+ ### Unit Economics
463
+
464
+ | Metric | Formula | SaaS Benchmark |
465
+ |--------|---------|----------------|
466
+ | **CAC** | Total acquisition spend / New customers | Varies by sector |
467
+ | **LTV** | ARPU x Gross Margin x (1/Churn Rate) | LTV/CAC >= 3:1 |
468
+ | **LTV/CAC** | LTV / CAC | >= 3:1 healthy |
469
+ | **Payback Period** | CAC / (ARPU x Gross Margin) | < 12 months |
470
+ | **ARPU** | Total revenue / Users | Depends on model |
471
+ | **NRR** | (Starting MRR - churn + expansion) / Starting MRR | >100% = growth without acquisition |
472
+ | **DAU/MAU** | Daily active / Monthly active | >25% good for SaaS |
473
+
474
+ ### Cohort Analysis
475
+
476
+ Group users by shared characteristic (usually signup date) and analyze behavior over time.
477
+
478
+ | Cohort Type | Grouped By | Use |
479
+ |-------------|-----------|-----|
480
+ | Acquisition | Signup date | Retention trends |
481
+ | Behavioral | Action taken (e.g., "used feature X in week 1") | Feature impact |
482
+ | Feature | Feature set used | Upgrade propensity |
483
+
484
+ **Reading cohort tables:** If newer cohorts retain better, product changes are working. If the retention curve flattens, there's product-market fit. If it goes to zero, no amount of growth fixes it.
485
+
486
+ ---
487
+
488
+ ## 8. Experimentation & A/B Testing
489
+
490
+ ### Culture Principles
491
+
492
+ 1. **Speed matters** — Experiment velocity correlates with growth
493
+ 2. **Most fail** — 70-80% of experiments have no positive result (normal)
494
+ 3. **Hypothesis first** — Every experiment needs a falsifiable hypothesis
495
+ 4. **Data beats opinions** — Evidence over HiPPO (Highest Paid Person's Opinion)
496
+ 5. **Learning > Winning** — Experiments that teach are valuable even without positive results
497
+
498
+ ### Hypothesis Framework
499
+
500
+ ```
501
+ If [change], then [expected outcome], because [logic/insight].
502
+ We'll measure [primary metric] and expect [X% change] in [period].
503
+ Guardrails: [metrics that should not degrade].
504
+ ```
505
+
506
+ ### Frequentist vs. Bayesian
507
+
508
+ | Aspect | Frequentist | Bayesian |
509
+ |--------|-------------|----------|
510
+ | Question | "Probability of seeing this data if H0 is true?" | "Probability that A is better than B?" |
511
+ | Output | p-value + confidence interval | Posterior probability |
512
+ | Sample size | Fixed (calculated upfront) | Can stop early |
513
+ | Interpretation | Technical (often misinterpreted) | Intuitive ("90% chance A is better") |
514
+ | Peeking | Forbidden (inflates false positives) | Allowed (with care) |
515
+ | Tools | VWO | Optimizely (STATS Engine), Statsig |
516
+
517
+ ### Statistical Significance
518
+
519
+ - **Alpha** = 0.05 (5% false positive chance, industry standard)
520
+ - **Power** (1-Beta) = 0.80 (80% chance of detecting real effect)
521
+ - **MDE** = Minimum Detectable Effect (smallest effect worth detecting)
522
+
523
+ ### Multi-Armed Bandit (MAB)
524
+
525
+ Alternative to classic A/B test that optimizes during the experiment. Progressively allocates more traffic to the better-performing variant.
526
+
527
+ | Algorithm | Approach |
528
+ |-----------|----------|
529
+ | Epsilon-greedy | Explore X% traffic, exploit (1-X)% |
530
+ | UCB | Balance uncertainty and performance |
531
+ | Thompson Sampling | Sample from posterior distribution (Bayesian) |
532
+
533
+ **Pros:** Minimizes regret, adapts automatically, ideal for continuous optimization.
534
+ **Cons:** Less statistically rigorous, no clear p-value, may converge prematurely.
535
+
536
+ ### Experimentation Tools
537
+
538
+ | Tool | Type | Differentiator |
539
+ |------|------|---------------|
540
+ | **Statsig** | Full-stack | Feature flags + experiments + analytics |
541
+ | **Optimizely** | Enterprise | STATS Engine (Bayesian sequential) |
542
+ | **VWO** | CRO-focused | Visual editor, heatmaps, testing |
543
+ | **LaunchDarkly** | Feature flags | Feature management first |
544
+ | **PostHog** | Open-source | Feature flags + experiments integrated |
545
+ | **GrowthBook** | Open-source | Bayesian statistics, warehouse-native |
546
+ | **AB Tasty** | Enterprise | Strong in Europe and Brazil |
547
+
548
+ ### Velocity Benchmarks
549
+
550
+ | Metric | Definition | Benchmark |
551
+ |--------|-----------|-----------|
552
+ | Tests/month | Experiments launched | >10 for mature teams |
553
+ | Time to launch | Idea to live | <1 week ideal |
554
+ | Win rate | % with positive result | 15-30% normal |
555
+ | Coverage | % features/pages with active tests | >50% for leaders |
556
+
557
+ ---
558
+
559
+ ## 9. Retention & Hook Model
560
+
561
+ ### Retention as Foundation
562
+
563
+ Without retention, acquisition is a leaky bucket.
564
+
565
+ **Types of retention:**
566
+ - **User retention** — User returns to the product
567
+ - **Revenue retention** — Revenue is maintained/expanded
568
+ - **Engagement retention** — Usage level is maintained
569
+
570
+ ### Hook Model (Nir Eyal, "Hooked" 2014)
571
+
572
+ ```
573
+ Trigger --> Action --> Variable Reward --> Investment
574
+ ^ |
575
+ +------------------------------------------+
576
+ ```
577
+
578
+ **1. Trigger:**
579
+ - **External:** Push notification, email, ad, social mention
580
+ - **Internal:** Boredom, loneliness, uncertainty, FOMO (the ultimate goal)
581
+
582
+ **2. Action:**
583
+ - Simplest behavior in anticipation of reward
584
+ - Must be extremely easy (BJ Fogg: Behavior = Motivation x Ability x Trigger)
585
+ - Examples: open app, scroll feed, type search
586
+
587
+ **3. Variable Reward:**
588
+ - Variability is crucial — predictable rewards lose effect
589
+ - **Tribe:** Social recognition (likes, comments)
590
+ - **Hunt:** Searching for resources/info (infinite scroll, search results)
591
+ - **Self:** Personal mastery (gamification, progress)
592
+
593
+ **4. Investment:**
594
+ - User invests something (time, data, content, reputation)
595
+ - Increases switching costs and return probability
596
+ - Examples: complete profile, create content, add friends, customize
597
+
598
+ ### Lifecycle Marketing Stages
599
+
600
+ | Stage | Objective | Channels | Examples |
601
+ |-------|----------|----------|----------|
602
+ | Onboarding (D0-D7) | Activation, first value | Email, in-app, push | Interactive tutorial, checklist |
603
+ | Activation (D7-D30) | Habit, recurring use | Email, in-app | Feature tips, case studies |
604
+ | Growth (D30-D90) | Expansion, upgrade | Email, in-app, sales | PQL triggers, premium trial |
605
+ | Maturity (D90+) | Retention, advocacy | Email, community | NPS, referral, advanced content |
606
+ | Decline (usage drop) | Re-engagement | Email, push, retargeting | "We miss you", new features |
607
+ | Churn (inactive) | Resurrection | Email, ads | Win-back offer, feature announcement |
608
+
609
+ ### Churn Analysis
610
+
611
+ **Types:** Voluntary (user decides), Involuntary (payment failure), Logo (headcount), Revenue (MRR lost)
612
+
613
+ **Leading Indicators of Churn:**
614
+ - Drop in login frequency
615
+ - Reduced core feature usage
616
+ - Unresolved support tickets
617
+ - Non-adoption of new features
618
+ - Reduced active users in account
619
+
620
+ **Analysis Methods:**
621
+ 1. Survival analysis (Kaplan-Meier curves)
622
+ 2. Cohort analysis (retention by cohort)
623
+ 3. Behavioral segmentation (behaviors preceding churn)
624
+ 4. Exit surveys
625
+ 5. Predictive modeling (ML for at-risk users)
626
+
627
+ ### Resurrection Campaigns
628
+
629
+ 1. **What's new** — Communicate improvements since user left
630
+ 2. **Win-back offer** — Temporary discount to return
631
+ 3. **Personalized value** — Show data/content user created that they might lose
632
+ 4. **Social proof** — Show platform growth and peer adoption
633
+ 5. **New use case** — Present a different use case
634
+
635
+ ---
636
+
637
+ ## 10. Viral & Referral Mechanics
638
+
639
+ ### Virality Types
640
+
641
+ | Type | Mechanism | Example |
642
+ |------|-----------|---------|
643
+ | **Inherent** | Product usage exposes non-users | Zoom, Calendly |
644
+ | **Collaboration** | Collaboration requires inviting others | Google Docs, Figma, Slack |
645
+ | **Word-of-mouth** | Product so good users talk about it | Tesla, Superhuman |
646
+ | **Incentivized** | Rewards for referrals | Dropbox, Uber |
647
+ | **Social** | Sharing generates exposure | Spotify Wrapped, Canva designs |
648
+
649
+ ### K-Factor (Viral Coefficient)
650
+
651
+ ```
652
+ K = i x c
653
+
654
+ i = average invites sent per user
655
+ c = conversion rate of invites
656
+
657
+ Viral cycle time = average time for a new user to invite others
658
+ ```
659
+
660
+ | K Value | Interpretation |
661
+ |---------|---------------|
662
+ | K > 1 | Sustainable viral growth (rare and powerful) |
663
+ | K = 0.5-0.9 | Virality significantly amplifies other channels |
664
+ | K = 0.1-0.4 | Virality contributes but doesn't lead |
665
+ | K < 0.1 | Insignificant virality |
666
+
667
+ > **Cycle time matters as much as K-factor.** K=0.8 with 1-day cycle is more powerful than K=1.2 with 30-day cycle due to compounding.
668
+
669
+ ### Referral Program Design
670
+
671
+ **Essential Elements:**
672
+ 1. Clear incentive
673
+ 2. Double-sided rewards (referrer AND referred)
674
+ 3. Minimal friction (1-2 clicks to share)
675
+ 4. Right timing (after "aha moment", not during onboarding)
676
+ 5. Transparent tracking (user sees progress and rewards)
677
+ 6. Social proof (show how many friends already use it)
678
+
679
+ ### Classic Referral Cases
680
+
681
+ | Company | Mechanism | Result |
682
+ |---------|-----------|--------|
683
+ | Dropbox | 500MB free per referral (both sides) | 3900% growth in 15 months |
684
+ | PayPal | $10 referrer + $10 referred | 7-10% daily growth initially |
685
+ | Uber | Ride credit for both | Primary initial expansion engine |
686
+ | Airbnb | $25 travel credit | 25% of new users via referral in mature markets |
687
+ | Revolut | Free card + premium features | 55% of new customers via referral |
688
+
689
+ ### Behavioral Economics in Incentive Design
690
+
691
+ - **Loss aversion** — "You'll lose X" > "You can gain X"
692
+ - **Social proof** — "32 of your contacts already use it"
693
+ - **Reciprocity** — "Your friend gave you a gift"
694
+ - **Scarcity** — "Limited invite supply"
695
+
696
+ ---
697
+
698
+ ## 11. CRO -- Conversion Rate Optimization
699
+
700
+ ### Foundation
701
+
702
+ ```
703
+ Conversion Rate = Conversions / Visitors x 100
704
+ ```
705
+
706
+ Doubling conversion rate = doubling revenue with the same traffic. CRO ROI is typically higher than incremental acquisition ROI.
707
+
708
+ ### Landing Page Elements
709
+
710
+ 1. **Headline** — Clear value proposition in <10 words
711
+ 2. **Sub-headline** — How you deliver the promised value
712
+ 3. **Hero image/video** — Visual demonstrating the product
713
+ 4. **Social proof** — Logos, testimonials, numbers
714
+ 5. **Benefits (not features)** — What the user gains
715
+ 6. **Single clear CTA** — One button, one action
716
+ 7. **Anxiety reduction** — Guarantee, security, no commitment
717
+ 8. **Congruence** — Ad message = landing page message
718
+
719
+ ### Form Optimization
720
+
721
+ - Minimum fields (name + email to start)
722
+ - Progressive profiling (collect more data over time)
723
+ - Smart defaults (pre-fill with geolocation, etc.)
724
+ - Inline validation (immediate error feedback)
725
+ - Multi-step forms (sunk cost effect)
726
+ - Social login (maximum friction reduction)
727
+
728
+ ### Pricing Page Best Practices
729
+
730
+ 1. **3 tiers** — Anchor, main option (highlighted), premium
731
+ 2. **Highlight recommended plan** — Visually differentiated
732
+ 3. **Annual vs Monthly toggle** — Show savings ("Save 20%")
733
+ 4. **Feature comparison table** — Transparency
734
+ 5. **FAQ** — Address common objections
735
+ 6. **Social proof** — Logos, customer count, testimonials
736
+ 7. **Free trial/freemium CTA** — Low-commitment option
737
+
738
+ ### Pricing Psychology
739
+
740
+ | Technique | Mechanism |
741
+ |-----------|-----------|
742
+ | Anchoring | Show expensive plan first to make middle seem reasonable |
743
+ | Decoy effect | Plan that exists only to make another look better |
744
+ | Charm pricing | R$97 vs R$100 |
745
+ | Value-based framing | "R$3/day" vs "R$90/month" |
746
+
747
+ ### Checkout Optimization
748
+
749
+ Average cart abandonment: **~70.2%** (Baymard Institute, 50 studies, 2025-2026)
750
+
751
+ | Cause | % Abandonment | Solution |
752
+ |-------|---------------|---------|
753
+ | Unexpected extra costs | 48% | Full cost transparency upfront |
754
+ | Account creation required | 26% | Guest checkout |
755
+ | Too complex process | 22% | Reduce steps, progress indicator |
756
+ | Doesn't trust site | 18% | Security badges, SSL, reviews |
757
+ | Slow delivery | 16% | Clear shipping options |
758
+ | Errors/crashes | 13% | Performance, error handling |
759
+
760
+ ### Social Proof Types
761
+
762
+ | Type | Example | Effectiveness |
763
+ |------|---------|---------------|
764
+ | Expert | "Recommended by [authority]" | High for YMYL |
765
+ | Celebrity | Public figure endorsement | High for B2C |
766
+ | User | Testimonials, reviews, ratings | High universal |
767
+ | Wisdom of crowds | "50,000+ companies trust us" | High for B2B |
768
+ | Wisdom of friends | "3 of your friends use it" | Highest (social) |
769
+ | Certification | Badges, awards | Medium-high |
770
+
771
+ ---
772
+
773
+ ## 12. Brazilian Growth Context
774
+
775
+ ### Market Overview (2025-2026)
776
+
777
+ | Metric | Value | Source |
778
+ |--------|-------|--------|
779
+ | Online population | ~183 million | DataReportal Jan 2025 |
780
+ | Internet penetration | ~86.2% | DataReportal Jan 2025 |
781
+ | Smartphones | ~170 million | GSMA |
782
+ | Average time online/day | ~9h30 | DataReportal |
783
+ | E-commerce GMV | ~R$200 billion/year | ABComm |
784
+ | Social media users | ~144 million | DataReportal Jan 2025 |
785
+
786
+ **Unique Characteristics:**
787
+ - **Mobile-first** — 60%+ of traffic is mobile
788
+ - **WhatsApp dominant** — 99% penetration, #1 communication channel
789
+ - **Social media heavy** — Brazil is top 3 global in Instagram, TikTok, YouTube usage
790
+ - **Google dominance** — 97%+ market share (vs 88% global)
791
+
792
+ ### PIX Impact on Conversion
793
+
794
+ PIX (launched November 2020 by Banco Central) transformed Brazilian e-commerce:
795
+
796
+ | Impact | Value |
797
+ |--------|-------|
798
+ | Checkout abandonment reduction | 30-40% |
799
+ | Conversion vs boleto | +15-25% |
800
+ | Merchant cost | ~0% (vs 2-5% credit card) |
801
+ | Settlement | Instantaneous |
802
+ | Financial inclusion | Users without credit cards can now pay online |
803
+
804
+ > **For growth in Brazil, offering PIX is not optional — it is mandatory.**
805
+
806
+ ### LGPD Compliance
807
+
808
+ Lei Geral de Protecao de Dados (Law 13.709/2018) impacts growth directly:
809
+
810
+ | Area | LGPD Impact | Adaptation |
811
+ |------|-------------|-----------|
812
+ | Email marketing | Requires explicit consent | Double opt-in, preference center |
813
+ | Analytics | Cookie consent required | Consent banner, cookieless analytics |
814
+ | Retargeting | Limits data use for ads | First-party data strategy |
815
+ | Personalization | Requires legal basis | Consent or legitimate interest |
816
+ | Lead generation | Data use transparency | Privacy policy, clear purpose |
817
+
818
+ **User Rights (Art. 18):** Access, correction, deletion, portability, consent revocation.
819
+
820
+ ### SEO in Brazilian Portuguese
821
+
822
+ 1. **Search volume** — Lower than English but less competitive
823
+ 2. **Accents** — Google treats "acai" and "acai" as equivalent (generally), optimize for both
824
+ 3. **Regionalisms** — "biscoito" vs "bolacha" impact keyword research
825
+ 4. **Competition** — Less quality PT-BR content = opportunity
826
+ 5. **Tools** — Semrush and Ahrefs have good Brazilian coverage
827
+
828
+ ### Brazilian Platforms
829
+
830
+ | Platform | Category | Growth Relevance |
831
+ |----------|----------|-----------------|
832
+ | **RD Station** | Marketing automation | Inbound leader in Brazil (50K+ clients, acquired by TOTVS) |
833
+ | **Hotmart** | Digital products | Largest infoproduct platform in LatAm ($10B+ cumulative GMV, 188 countries) |
834
+ | **Eduzz** | Digital products | Hotmart alternative, affiliate focus |
835
+ | **Monetizze** | Digital products | Third major infoproduct platform |
836
+ | **VTEX** | E-commerce | Brazilian enterprise e-commerce |
837
+ | **Nuvemshop** | E-commerce SMB | Brazilian Shopify for SMBs |
838
+
839
+ ### Infoproduct Growth Model (Brazil-specific)
840
+
841
+ ```
842
+ Producer creates course → Affiliates promote → 30-70% commission
843
+ → Affiliates reinvest in ads → More sales → More affiliates → ...
844
+ ```
845
+
846
+ **Growth Mechanisms Used:**
847
+ - **Launches** — Jeff Walker's Product Launch Formula adapted to Brazil
848
+ - **Webinars/Lives** — Free content, pitch, sale
849
+ - **Affiliate marketing** — Armies of affiliates with commission
850
+ - **WhatsApp groups** — Community for engagement and social proof
851
+ - **Video testimonials** — Heavy social proof (Brazilian culture values this)
852
+
853
+ ---
854
+
855
+ ## 13. Prioritization Frameworks
856
+
857
+ ### ICE Scoring (Sean Ellis)
858
+
859
+ | Criterion | Description | Scale |
860
+ |-----------|-------------|-------|
861
+ | **Impact** | Expected impact on target metric | 1-10 |
862
+ | **Confidence** | Confidence in estimate | 1-10 |
863
+ | **Ease** | Implementation ease | 1-10 |
864
+
865
+ **Score = (I + C + E) / 3.** Simple, fast, ideal for small teams. Downside: subjectivity.
866
+
867
+ ### RICE Scoring (Intercom)
868
+
869
+ | Criterion | Description | Calculation |
870
+ |-----------|-------------|-------------|
871
+ | **Reach** | Users impacted per period | Absolute number |
872
+ | **Impact** | Impact per user | 0.25, 0.5, 1, 2, 3 |
873
+ | **Confidence** | Estimate confidence | % (100%, 80%, 50%) |
874
+ | **Effort** | Effort in person-months | Absolute number |
875
+
876
+ **Score = (R x I x C) / E.** More rigorous than ICE. Includes Reach and Effort in absolute terms.
877
+
878
+ ### Retention-First Prioritization (Elena Verna)
879
+
880
+ 1. Map the retention curve (retention by cohort over time)
881
+ 2. If curve doesn't stabilize → Focus on product-market fit, NOT growth
882
+ 3. If curve stabilizes → Focus on optimizing each loop stage
883
+
884
+ ### Jobs-to-be-Done Applied to Growth
885
+
886
+ - **Functional Job** — What the user wants to do
887
+ - **Emotional Job** — How they want to feel
888
+ - **Social Job** — How they want to be seen
889
+
890
+ For growth, JTBD helps:
891
+ 1. Identify the correct "aha moment"
892
+ 2. Segment users by job, not demographics
893
+ 3. Position product vs alternatives (including "do nothing")
894
+ 4. Create messaging that resonates with real motivation
895
+
896
+ ---
897
+
898
+ ## 14. Data-Driven Decision Making
899
+
900
+ ### OKRs for Growth
901
+
902
+ ```
903
+ Objective: Become the preferred platform for designers in Brazil
904
+
905
+ Key Results:
906
+ KR1: Increase MAU from 5K to 15K
907
+ KR2: Improve NRR from 95% to 110%
908
+ KR3: Reduce time-to-first-value from 15min to 5min
909
+ KR4: Achieve K-factor of 0.5 in referral program
910
+ ```
911
+
912
+ **Principles:** Objectives are qualitative and inspirational. KRs are quantitative. 3-5 KRs per Objective. 60-70% achievement is "healthy" (stretch goals). Quarterly cadence with weekly check-ins.
913
+
914
+ ### KPI Tree Example (SaaS)
915
+
916
+ ```
917
+ MRR
918
+ +-- New MRR
919
+ | +-- Leads
920
+ | | +-- Organic traffic x Conversion rate
921
+ | | +-- Paid traffic x Conversion rate
922
+ | | +-- Referrals x Conversion rate
923
+ | +-- Trial-to-Paid rate
924
+ | +-- Average deal size
925
+ +-- Expansion MRR
926
+ | +-- Upgrade rate
927
+ | +-- Cross-sell rate
928
+ +-- Churned MRR (negative)
929
+ +-- Logo churn rate
930
+ +-- Downgrade rate
931
+ ```
932
+
933
+ ### Vanity Metrics vs Actionable Metrics
934
+
935
+ | Vanity Metric | Actionable Metric |
936
+ |---------------|-------------------|
937
+ | Total registered users | MAU (monthly active users) |
938
+ | Total page views | Engagement rate, time on site |
939
+ | App downloads | DAU/MAU ratio |
940
+ | Social media followers | Engagement rate, click-through |
941
+ | Total revenue | MRR growth rate, NRR |
942
+ | "Impressions" | CTR, conversions |
943
+
944
+ **Test:** If the metric went up, do you know what to do differently? If not, it's probably vanity.
945
+
946
+ ---
947
+
948
+ ## 15. Email & Lifecycle Marketing
949
+
950
+ ### Email as Growth Channel
951
+
952
+ ROI: **$36-38 for every $1 invested** (DMA 2026)
953
+
954
+ **Advantages:** Owned channel (no algorithm dependency), high ROI, personalizable, measurable, accompanies full lifecycle.
955
+
956
+ ### Segmentation Types
957
+
958
+ | Type | Criterion | Example |
959
+ |------|----------|---------|
960
+ | Demographic | Role, company, sector | "CTOs at startups" |
961
+ | Behavioral | Product actions | "Used feature X but not Y" |
962
+ | Lifecycle stage | User phase | "Trial expires in 3 days" |
963
+ | Engagement | Email interaction | "Opened last 5 emails" |
964
+ | RFM | Recency, Frequency, Monetary | "High value, low frequency" |
965
+ | Predictive | Action probability | "High churn probability" |
966
+
967
+ ### Drip Campaign Framework
968
+
969
+ ```
970
+ Day 0: Welcome + Quick Win (immediate value)
971
+ Day 2: Feature highlight #1 (core value)
972
+ Day 5: Case study (social proof)
973
+ Day 8: Feature highlight #2 (secondary value)
974
+ Day 12: Educational content (thought leadership)
975
+ Day 15: Upgrade offer / main CTA
976
+ Day 20: Final follow-up (urgency)
977
+ ```
978
+
979
+ ### Deliverability Factors
980
+
981
+ | Factor | Action |
982
+ |--------|--------|
983
+ | SPF, DKIM, DMARC | Configure all three |
984
+ | Sender reputation | Monitor with Google Postmaster |
985
+ | Bounce rate | Clean list regularly |
986
+ | Spam complaints | Keep < 0.1% (Gmail threshold) |
987
+ | Engagement | Segment by engagement level |
988
+ | List hygiene | Remove inactives after 6 months |
989
+
990
+ ### ESP Comparison
991
+
992
+ | ESP | Focus | Best For |
993
+ |-----|-------|----------|
994
+ | **Resend** | Developer-first, modern API | Transactional + marketing for devs |
995
+ | **Customer.io** | Behavioral automation | SaaS with complex lifecycle |
996
+ | **Brevo** | All-in-one, competitive pricing | SMBs, European/BR market |
997
+ | **ActiveCampaign** | Automation + CRM | SMBs with active sales |
998
+ | **HubSpot** | Full marketing suite | Enterprise, integrated CRM |
999
+ | **Klaviyo** | E-commerce | Online stores (Shopify) |
1000
+ | **RD Station** | Brazil-focused | Brazilian companies |
1001
+
1002
+ ---
1003
+
1004
+ ## 16. AI & Growth
1005
+
1006
+ ### AI-Powered Personalization
1007
+
1008
+ | Application | Description | Example |
1009
+ |-------------|-------------|---------|
1010
+ | Product recommendations | ML suggests items by behavior | Netflix, Spotify Discover Weekly |
1011
+ | Dynamic pricing | Prices adjusted by demand/profile | Airlines, Uber surge |
1012
+ | Content personalization | Homepage/emails customized per user | Amazon, Netflix UI |
1013
+ | Onboarding personalization | Flow adapted to user profile | Welcome survey, personalized path |
1014
+
1015
+ ### Predictive ML Models
1016
+
1017
+ | Model | Application | Impact |
1018
+ |-------|-------------|--------|
1019
+ | Churn prediction | Identify at-risk users | Proactive intervention |
1020
+ | LTV prediction | Estimate future user value | Optimize CAC by segment |
1021
+ | Propensity scoring | Conversion/upgrade probability | Prioritize outreach |
1022
+ | Next-best-action | Which action maximizes engagement | Personalized triggers |
1023
+ | Anomaly detection | Identify anomalous changes | Automatic alerts |
1024
+
1025
+ ### GenAI for Content — Recommended Approach
1026
+
1027
+ **Use AI as co-pilot, not autopilot.** Accelerate drafts and variations, but always with human editing, original data, and real expertise.
1028
+
1029
+ **Risks:** Average quality, E-E-A-T penalties, commoditized content, brand voice inconsistency, hallucinations.
1030
+
1031
+ ### LLM-Era SEO Strategy
1032
+
1033
+ - Create content that LLMs cite (original data, authority)
1034
+ - Optimize for Perplexity and ChatGPT (structured data, authoritative sources)
1035
+ - Focus on experience and expertise AI can't replicate
1036
+ - Diversify traffic sources (don't depend solely on Google)
1037
+
1038
+ ---
1039
+
1040
+ ## 17. Key People & Bibliography
1041
+
1042
+ ### Key People
1043
+
1044
+ | Person | Contribution | Company |
1045
+ |--------|-------------|---------|
1046
+ | Sean Ellis | Coined "growth hacking" | Dropbox, LogMeIn, Eventbrite |
1047
+ | Andrew Chen | Growth essays, The Cold Start Problem | a16z (ex-Uber) |
1048
+ | Brian Balfour | Reforge, Growth Loops, RARRA | Reforge (ex-HubSpot) |
1049
+ | Casey Winters | Growth advising, retention | Grubhub, Pinterest |
1050
+ | Lenny Rachitsky | #1 growth/product newsletter | Lenny's Newsletter (ex-Airbnb) |
1051
+ | Nir Eyal | Hook Model | Author of Hooked |
1052
+ | Peep Laja | CRO, experimentation | CXL Institute |
1053
+ | Elena Verna | PLG, growth advising | Miro, Amplitude, Dropbox |
1054
+ | Wes Bush | Product-Led Growth | ProductLed |
1055
+ | Rand Fishkin | SEO, founder transparency | SparkToro, Moz |
1056
+ | Eric Ries | Lean Startup | Author |
1057
+ | Dave McClure | AARRR/Pirate Metrics | 500 Startups |
1058
+
1059
+ ### Essential Books
1060
+
1061
+ | Book | Author | Core Contribution |
1062
+ |------|--------|-------------------|
1063
+ | Hacking Growth (2017) | Sean Ellis | Growth hacking process |
1064
+ | The Lean Startup (2011) | Eric Ries | Build-Measure-Learn, MVP |
1065
+ | The Cold Start Problem (2021) | Andrew Chen | Network effects |
1066
+ | Hooked (2014) | Nir Eyal | Habit-forming products |
1067
+ | Product-Led Growth (2019) | Wes Bush | Complete PLG framework |
1068
+ | Influence (1984/2021) | Robert Cialdini | 7 persuasion principles (CRO base) |
1069
+ | Traction (2015) | Weinberg & Mares | 19 traction channels |
1070
+ | Lean Analytics (2013) | Croll & Yoskovitz | Metrics by business type and stage |
1071
+ | Crossing the Chasm (1991) | Geoffrey Moore | Technology adoption lifecycle |
1072
+
1073
+ ### Learning Resources
1074
+
1075
+ | Resource | Type | Focus |
1076
+ |----------|------|-------|
1077
+ | Reforge | Course/Community | Growth frameworks (premium) |
1078
+ | CXL Institute | Course/Certification | CRO, analytics, growth marketing |
1079
+ | Lenny's Newsletter | Newsletter | Growth, product management |
1080
+ | GrowthHackers | Community | Growth hacking discussions |
1081
+ | NFX | VC/Blog | Network effects |
1082
+ | OpenView Partners | VC/Blog | PLG research |
1083
+
1084
+ ---
1085
+
1086
+ ## 18. Actionable Checklists
1087
+
1088
+ ### Pre-Launch Growth Checklist
1089
+
1090
+ - [ ] North Star Metric defined with guardrails
1091
+ - [ ] At least one compound growth loop identified
1092
+ - [ ] Onboarding flow designed for <5min to first value
1093
+ - [ ] Analytics stack configured (GA4 + product analytics)
1094
+ - [ ] Event taxonomy documented
1095
+ - [ ] Cohort analysis dashboards set up
1096
+ - [ ] Referral/sharing mechanism designed into product
1097
+ - [ ] Content strategy with pillar-cluster architecture
1098
+ - [ ] Email welcome series (5+ emails) created
1099
+ - [ ] PIX payment enabled (Brazil)
1100
+ - [ ] LGPD consent mechanism implemented (Brazil)
1101
+ - [ ] Mobile-first design validated
1102
+
1103
+ ### Weekly Growth Review Checklist
1104
+
1105
+ - [ ] NSM trend reviewed (vs previous week and target)
1106
+ - [ ] Retention curve by latest cohorts analyzed
1107
+ - [ ] Active experiments status checked
1108
+ - [ ] Experiment results documented and decided (ship/iterate/kill)
1109
+ - [ ] New experiment hypotheses prioritized (ICE/RICE)
1110
+ - [ ] Channel performance reviewed (organic, paid, referral)
1111
+ - [ ] Funnel conversion rates checked for anomalies
1112
+ - [ ] Churn leading indicators monitored
1113
+
1114
+ ### SEO Audit Checklist
1115
+
1116
+ - [ ] Core Web Vitals passing (LCP <2.5s, INP <200ms, CLS <0.1)
1117
+ - [ ] Mobile-first indexing verified
1118
+ - [ ] XML sitemap submitted and up to date
1119
+ - [ ] Robots.txt correctly configured
1120
+ - [ ] Canonical tags on all pages
1121
+ - [ ] Structured data (Schema.org) implemented
1122
+ - [ ] Internal linking structure reviewed
1123
+ - [ ] HTTPS enforced
1124
+ - [ ] Page titles and meta descriptions optimized
1125
+ - [ ] Image alt text present
1126
+ - [ ] 404 errors monitored and redirected
1127
+ - [ ] Content freshness audit (update evergreen content)
1128
+
1129
+ ### Experimentation Launch Checklist
1130
+
1131
+ - [ ] Hypothesis documented (If/Then/Because)
1132
+ - [ ] Primary metric and guardrails defined
1133
+ - [ ] Sample size calculated (alpha=0.05, power=0.80)
1134
+ - [ ] Expected duration estimated
1135
+ - [ ] Variants implemented and QA'd
1136
+ - [ ] Tracking verified (events firing correctly)
1137
+ - [ ] Experiment documented in tracking system
1138
+ - [ ] Results review date scheduled
1139
+
1140
+ ### CRO Quick Wins Checklist
1141
+
1142
+ - [ ] Single CTA per landing page
1143
+ - [ ] Social proof visible above the fold
1144
+ - [ ] Form fields reduced to minimum
1145
+ - [ ] Page load time <3 seconds
1146
+ - [ ] Mobile experience tested
1147
+ - [ ] Value proposition in headline (not company name)
1148
+ - [ ] Guest checkout available
1149
+ - [ ] Trust badges/security indicators present
1150
+ - [ ] PIX as first payment option (Brazil)
1151
+ - [ ] Exit-intent mechanism configured
1152
+
1153
+ ### PLG Health Checklist
1154
+
1155
+ - [ ] Self-serve signup works without friction
1156
+ - [ ] Time-to-first-value measured and optimized
1157
+ - [ ] Activation rate tracked by cohort
1158
+ - [ ] PQL scoring model defined and calibrated
1159
+ - [ ] Freemium limits set to encourage upgrade (not frustrate)
1160
+ - [ ] In-product upgrade prompts at right moments
1161
+ - [ ] Usage-based triggers for sales outreach configured
1162
+ - [ ] Viral loops embedded in core product flows
1163
+
1164
+ ---
1165
+
1166
+ > **Data sources:** 42+ verified sources including DataReportal, BrightEdge, SparkToro/Datos, Baymard Institute, Seer Interactive, DMA, Reforge, CXL Institute. Full source list in MS-004 research document.
1167
+ >
1168
+ > **Last verified:** 2026-04-07 by @research-orqx (Prism)