{ /* ============================================================ Content Stack Lab — About Page ============================================================ */ const { useEffect } = React; const { Button } = window.ContentStackLabDesignSystem_cbb53c; const Arrow = window.Arrow; const admin = window.CSLAdmin || {}; const aboutHero = (admin.heroes && admin.heroes.about) || {}; const aboutCta = (admin.ctas && admin.ctas.about && (admin.ctas.about.main || admin.ctas.about["start-call"])) || {}; const story = [ "I spent my early career figuring out how organizations talk to their customers, to their people, and to the world. Different industries, different challenges, but the same lesson every time: most companies have no idea how to tell their own story.", "So, I started telling it for them.", "I built one of Pakistan's most active entrepreneurship ecosystems at TiE Lahore: 200+ events, 10,000+ attendees, and a network of mentors, investors, and founders who needed someone to make the noise make sense.", "I built the entire communications department from scratch at NetSol Technologies, shaped how their CEO showed up in the market, and launched NSPIRE, Pakistan's first IT business incubator from concept to curriculum to launch.", "At Fatima Group, I modernized communications, led a rebrand of their packaging division, and reimagined their flagship MTO program from Coffee with Fatima to Empower to Lead, giving their most prestigious HR initiative a brand identity that matched its ambition.", "At Sapphire Finishing Mills, I repositioned the company for international markets, launched CSR and sustainability programs that won consecutive NFEH awards, and initiated a group-wide brand identity revamp.", "Two legacy industrial organizations. Same challenge: give them a modern voice.", "I took that playbook international, leading marketing and communications for B2B tech clients across the US and UK at Message Muse, then building the Epiphany brand around 20+ emerging tech, gaming, and entrepreneurship initiatives, including curating Ten18, an award-winning international conference.", "And then came the work that made everything click: launching B2B tech products. OTNexus in OT cybersecurity. Sentinel EHS in industrial compliance. Irinatech Digital in enterprise AI across three countries. I've taken multiple tech brands from zero to qualified pipeline, and I've sat inside the industrial companies those products sell to.", "That's why Content Stack Lab exists. The more technical the company, the worse the marketing. Someone needs to sit between the engineers and the market and translate. That someone is me." ]; const speaking = [ ["Moderator, Fireside Chat", "Count Her In: Accelerating Gender Equality Through Economic Empowerment at Standard Chartered Bank, hosted by Innoventures Global", "2024"], ["Moderator, Panel", "Demystifying the Gaming & Creative Industry for Investors and Financial Services Providers at Ten18 Conference", "2023"], ["Moderator", "Flatten the Curve for Climate Change on Earth Day, Australia Awards", "2020"], ["Panelist", "Biodiversity Conservation in South and West Asia on World Environment Day, Australia Awards", "2020"], ["Speaker", "Is Climate Change Real? on World Environment Day, Pakistan-US Alumni Network", "2019"] ]; const recognition = [ ["US State Department, IVLP", "Selected for International Visitor Leadership Program, Women Entrepreneurs - Drivers of Economy, USA", "2023"], ["Climate Reality Leadership Corps", "Climate Certification, Brisbane, Australia", "2019"], ["Standard Chartered Women in Tech, SCWIT", "Selected for the 4-month incubation program, recognizing My Organising Stories as a high-potential women-led venture", "2019"], ["Australia Awards Regional Alumni Workshop", "First Runners-up, Sohni Dharti Climate Change Initiative, Bhutan", "2018"], ["Australia Awards", "Selected for Business Incubation Management Program, University of Queensland, Brisbane", "2017"], ["UNESCO-APEID", "Represented Pakistani Entrepreneurial Network, 3rd Meeting on Entrepreneurship Education, Malaysia", "2013"] ]; const whyWork = [ { title: "I've sat in your chair", body: "17 years on the brand side means I don't give advice from the sidelines. I've run the campaigns, managed the budgets, and reported to the CEO.", icon: "chair", color: "#2e9bf6" }, { title: "No junior handoffs", body: "You talk to me. You work with me. No bait-and-switch where a senior sells you and a junior delivers.", icon: "person", color: "#a87cf0" }, { title: "Complex made clear", body: "Cybersecurity, OT/ICS, EHS, enterprise AI. I translate complex products into messaging buyers actually understand.", icon: "layers", color: "#96b41e" }, { title: "Both sides of the table", body: "I've worked inside the tech companies and inside the industrial organizations they sell to. I know your product and your buyer's world.", icon: "scale", color: "#f050be" }, { title: "AI-augmented, not AI-replaced", body: "I use modern AI tools to move faster and deliver more, but the thinking is human. Your brand deserves better than a prompt and a prayer.", icon: "spark", color: "#e5a23f" } ]; function AboutWhyIcon({ type }) { const common = { width: 30, height: 30, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }; if (type === "chair") return ; if (type === "person") return ; if (type === "layers") return ; if (type === "scale") return ; return ; } function AboutHero() { return (

About

{aboutHero.subheading ?

{aboutHero.subheading}

: null}
); } function StudioIntro() { return (

How it works

Lean, founder-led, AI-augmented.

Founded by Saira Ahmad after 17 years of doing this work inside companies from startups to industrial conglomerates and realizing the same pattern everywhere: brilliant companies struggling to communicate clearly. CSL was built to bridge that gap.

You get one senior person who learns your business deeply and builds systems that last beyond the engagement.

); } function WhyWorkWithMe() { return (

Why work with me

Here's what's different, and why it matters.

{whyWork.map((item) => (

{item.title}

{item.body}

))}
); } function FounderStory() { return (

The person behind the practice

From boardrooms to brand launches and everything in between.

When I position your product for technical buyers, I'm not guessing what they care about. I've been in their boardrooms.

{story.map((p, i) =>

{p}

)}
OT CybersecurityIndustrial IoTEHS / compliance techEnterprise AIManufacturingTextilesEducationStartup ecosystemsSustainability / climate tech
); } function BeyondDeck() { return (

Beyond the strategy deck

The stuff that does not fit on a LinkedIn profile.

I host The In Between Moment, a podcast about resilience, reinvention, and the real conversations people have between the big moments. I built it from scratch: concept, name, set design, guest curation, production, post-production, and social media strategy. Every episode, end to end.

The podcast grew out of My Organising Stories, a Facebook community I built to over 40,000 women focused on organizing life, financial independence, and finding purpose. When I tell clients I understand audience building and content systems, this is what I mean. I've done it for myself, not just for brands.

); } function TimelineSection({ eyebrow, title, items }) { return (

{eyebrow}

{title}.

{items.map(([role, detail, year]) => (
{year}

{role}

{detail}

))}
); } function AboutCTA() { return (

Not Sure Where to Start?

{aboutCta.heading ?

{aboutCta.heading}.

: null} {aboutCta.subheading ?

{aboutCta.subheading}

: null}
); } function AboutPage() { window.useReveal(); useEffect(() => window.scrollTo(0, 0), []); return (
); } ReactDOM.createRoot(document.getElementById("root")).render(); }