Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Conflating growth with marketing causes orgs to assign the wrong success metrics, hire the wrong people, and optimize the wrong levers. Growth is cross-functional and measured by retention and compounding; marketing is largely about top-of-funnel visibility. Getting this wrong means a team that calls itself 'growth' but only runs ad campaigns and wonders why the numbers don't compound.
Compare two team charters — one growth, one marketing — and their respective north star metrics.
const marketingTeam = {
primaryMetric: "MQLs (Marketing Qualified Leads)",
channels: ["SEO", "paid social", "content", "PR"],
successCondition: "impression → click → sign-up",
ownedStages: ["Acquisition"],
};
const growthTeam = {
primaryMetric: "Weekly Active Retained Users",
channels: ["product", "email", "referral", "pricing experiments"],
successCondition: "sign-up → activated → retained → expanded",
ownedStages: ["Activation", "Retention", "Referral", "Revenue"],
};
console.log("Marketing north star:", marketingTeam.primaryMetric);
console.log("Growth north star:", growthTeam.primaryMetric);