// Our Journey — vertical editorial timeline with per-item scroll reveals. function HpJourney({ bg }) { const [sectionRef, revealed] = window.useReveal({ threshold: 0.05 }); const milestones = [ { year: "Sep 2021", title: "E-commerce, India.", body: "Started selling on Amazon and Flipkart. First lessons in customer psychology, listing economics, and what makes a product actually move at retail scale.", tag: "Origin", }, { year: "2022", title: "Flipkart Gold Seller.", body: "Hit Gold tier on Flipkart while quietly researching the affiliate marketing space — the unit economics looked nothing like e-commerce.", tag: "Milestone", }, { year: "2023", title: "ZillionData Marketing LLP.", body: "Formed a dedicated affiliate entity in India. Started scaling paid media across Google, Meta, YouTube and native — Nutra and digital products first.", tag: "Founded", }, { year: "2024", title: "ClickBank Platinum — 1st.", body: "First Platinum award at ClickBank. The Nutra book of work earned it.", tag: "Award", }, { year: "2025", title: "ClickBank Platinum — 2nd.", body: "Second Platinum, back-to-back. Crossed $2M+ in tested ad spend across the studio.", tag: "Award", }, { year: "2026", title: "Founded Scale Media LLC.", body: "As US and European offer owners came on board, currency conversion became friction. Registered a US replica of ZillionData in Wyoming — same operators, same playbook, now USD-native.", tag: "Founded", }, { year: "2026", title: "Digistore24 Super Affiliate.", body: "Became Super Affiliate of Digistore24 and attended super affiliate event in Brazil. Expanded into Lead Generation — Home Improvement, Auto Insurance, Health Insurance and Financial.", tag: "Award", }, ]; return (
Our journey Sep 2021 → today · India to Wyoming

From a Flipkart shop in India{" "} to a Wyoming-registered media-buying studio.

    {milestones.map((m, i) => ( ))}
); } function TimelineItem({ m, index }) { const [ref, revealed] = window.useReveal({ threshold: 0.2 }); return (
  • {m.year} {m.tag}

    {m.title}

    {m.body}

  • ); } window.HpJourney = HpJourney;