/* global React, Reveal, ArrowGlyph */ const { useState: useS2, useEffect: useE2, useRef: useR2 } = React; // ========================================================= // CASE STUDIES — hover-reveal cards // ========================================================= function Cases() { const cases = [ { cat: "First-time seller", big: ["0 → ", "1 sale"], name: "Michael · cohort · 9 weeks", viz: "milestone", milestones: ["enrolled", "picked", "launched", "first sale"], sparkFrom: "week 0 · zero exp.", sparkTo: "week 9 · first sale", headline: "Zero ecommerce background. Wednesday afternoon, week nine, first sale.", body: "Michael came into the cohort knowing nothing about selling on Amazon. Nine weeks later he and his partner shipped their first product and watched the first order come through. The hardest part of selling on Amazon isn't the second sale — it's the first.", stats: [["9 weeks", "training to first sale"], ["0", "prior experience"]], }, { cat: "Home & Lifestyle", big: ["$0 → ", "$9K/mo"], name: "Daniel · coaching · Australia", viz: "bars", barSet: "record", sparkFrom: "Nov 22", sparkTo: "Dec 21 · record day", headline: "Cracked the US market from Australia. Doubled his best day in month four.", body: "Daniel launched into a market he couldn't physically walk into. Month one was quiet. We rebuilt the listing twice and sharpened ad targeting around three distinct buyer intents — by week 14, a single Sunday smashed his previous best by 100%.", stats: [["+89%", "month over month"], ["2×", "previous best day"]], }, { cat: "Supplements", big: ["$0 → ", "$10K/mo"], name: "LibiGem · packaging + retail · CA", viz: "stamp", stampHead: "accepted", stampMain: "GNC Canada", stampFoot: "supplements · 2024", headline: "Redesigned the packaging. Wrote the buyer pitch. Landed shelf space at GNC Canada.", body: "Nutrafirm had a working product and no retail story. We rebuilt the packaging and brand presentation around a single buyer-facing pitch — clinical credibility wrapped in approachable design. The buyer said yes.", stats: [["$10K/mo", "best month"], ["GNC CA", "retail launched"]], }, { cat: "Private label", big: ["£0 → ", "£10K/mo"], name: "Waldek · coaching · UK", viz: "quote", quote: "My sales for December were around £10,000. Really chuffed — ordered a couple more products to launch in Feb–March.", quoteCite: "— Waldek, Dec 2020", headline: "First hero SKU cleared £10K. Catalog expansion already underway.", body: "Waldek wanted to nail one product before adding a second — we held that line for six months. Once unit economics were solid, we used existing buyer data (not gut) to pick the next two launches.", stats: [["£10K", "best month"], ["2+", "SKUs in pipeline"]], }, { cat: "Consumer Electronics", big: ["$0 → ", "$15K"], name: "Tim · cohort · 3 months", viz: "bars", sparkFrom: "Nov 14", sparkTo: "Dec 9 · sold out", headline: "Sold fans in winter. Hit page 1 for 'fans' in 30 days. Sold out in five.", body: "Tim ordered 1,000 units upfront thinking it was a six-month mistake. The listing ranked organically inside thirty days — he had to pull his coupon and raise price just to throttle demand. Counter-seasonal launches work when the listing does the talking.", stats: [["+2,628%", "30-day growth"], ["5 days", "to sold out"]], }, { cat: "Automotive", big: ["$0 → ", "$100K"], name: "Xtreme Heaters · USA · 90 days", viz: "spark", sparkFrom: "Day 0", sparkTo: "+90 days", headline: "Cold-launched a niche marine engine heater to $100K in 90 days. US market only.", body: "Coast Guard certification became the hero trust-hook in the listing. Tight US-only positioning meant every ad dollar worked twice as hard — and ACoS held steady through the entire climb.", stats: [["$100K", "in 90 days"], ["USA only", "single market"]], }, ]; return (
Case studies

Wins that are
actually mine to claim.

Every win below is from a 1:1 client or a cohort student. Hover any card for the actual play — the listing change, the ad move, the moment it shifted.
{cases.map((c, i) => (
{c.cat}
{c.img && (
)} {c.viz === "spark" && (
{c.sparkFrom || "Day 0"} {c.sparkTo || "+90 days"}
)} {c.viz === "quote" && (

{c.quote}

{c.quoteCite}
)} {c.viz === "milestone" && (
{c.milestones && (
{c.milestones.map((m, i) => ( {m} ))}
)}
{c.sparkFrom} {c.sparkTo}
)} {c.viz === "stamp" && (
— {c.stampHead} —
{c.stampMain}
{c.stampFoot}
)} {c.viz === "bars" && (() => { const sets = { default: [8, 30, 20, 18, 14, 22, 28, 18, 14, 22, 24, 16, 12, 14, 18, 48, 30, 12, 14, 30, 65, 95, 70, 50], record: [40, 14, 12, 14, 11, 32, 22, 25, 11, 11, 23, 20, 25, 26, 22, 24, 30, 43, 32, 24, 29, 30, 37, 53, 100], }; const heights = sets[c.barSet] || sets.default; const peak = heights.indexOf(Math.max(...heights)); const W = 200, gap = 1.4, n = heights.length; const bw = (W - gap * (n - 1)) / n; return (
{c.sparkFrom} {c.sparkTo}
); })()}
{c.big[0]}{c.big[1]}
{c.name}
{c.cat}

{c.headline}

{c.body}

{c.stats.map((s, j) => (
{s[0]}
{s[1]}
))}
))}
Names shortened where requested. Numbers reported by clients, cross-checked against their seller dashboards — happy to walk through the originals on a call.
); } // ========================================================= // QUIZ — "Which path is right for me?" // ========================================================= function Quiz({ onBook }) { const Q = [ { q: "Where are you on Amazon right now?", opts: [ { label: "Haven't launched yet — still researching products", w: { p: 2, c: 1 } }, { label: "Launched, but doing under $5K/mo", w: { p: 2, c: 2 } }, { label: "Between $5K and $50K/mo, want to scale", w: { p: 1, c: 3 } }, { label: "Doing $50K+/mo, hitting a specific wall", w: { p: 0, c: 3 } }, ], }, { q: "How much time can you put in each week?", opts: [ { label: "10–15 hrs · this is a side bet for now", w: { p: 3, c: 1 } }, { label: "20–30 hrs · serious side project", w: { p: 2, c: 2 } }, { label: "Full time · this is my main thing", w: { p: 1, c: 3 } }, ], }, { q: "What kind of help moves the needle most for you?", opts: [ { label: "Structured curriculum + a cohort to learn alongside", w: { p: 3, c: 0 } }, { label: "Direct feedback on my specific listings, ads, numbers", w: { p: 0, c: 3 } }, { label: "A bit of both — structure plus 1:1 unsticks", w: { p: 2, c: 2 } }, ], }, ]; const [step, setStep] = useS2(0); const [score, setScore] = useS2({ p: 0, c: 0 }); const [done, setDone] = useS2(false); const pick = (opt) => { const ns = { p: score.p + opt.w.p, c: score.c + opt.w.c }; setScore(ns); if (step + 1 >= Q.length) setDone(true); else setStep(step + 1); }; const restart = () => { setStep(0); setScore({ p: 0, c: 0 }); setDone(false); }; let resultTitle, resultBody, primaryCta; if (done) { if (score.c > score.p + 1) { resultTitle = ["Best fit: ", "1:1 Coaching"]; resultBody = "You've got specifics that need specific answers. We'd work weekly, screen-share through your actual catalog, ads and numbers. Best ROI for sellers with traction."; primaryCta = "Book a 1:1 discovery call"; } else if (score.p > score.c + 1) { resultTitle = ["Best fit: ", "The Foundation Cohort"]; resultBody = "12 weeks, small group, every week a deliverable. We compress the first 18 months of selling into a structured build, with me on calls twice a week."; primaryCta = "See cohort dates · book a chat"; } else { resultTitle = ["Best fit: ", "Hybrid track"]; resultBody = "You'd get the most from cohort structure plus 4 private 1:1s along the way. Lets you learn alongside others without losing the personal feedback."; primaryCta = "Talk through the hybrid"; } } return (
2-min fit check

Which path
is right for you?

Three honest questions. You'll get a recommendation — and the option to book a call to talk it through. No email gate.

{Q.map((_, i) => ( ))}
{!done ? ( <>
Question {step + 1} of {Q.length}

{Q[step].q}

{Q[step].opts.map((o, i) => ( ))}
) : (
your fit

{resultTitle[0]}{resultTitle[1]}

{resultBody}

↺ start over
)}
); } Object.assign(window, { Cases, Quiz });