/* Founders + Products we've built */

const FOUNDERS = [
  {
    initials: "TP",
    img: "assets/tanuj.png",
    name: "Tanuj Prakash",
    role: "Co-founder · Product & Analytics",
    linkedin: "https://www.linkedin.com/in/tanuj-prakash-19415543/",
    pedigree: ["Ex-Flipkart", "Ex-Udaan", "Ex-6sense", "IIT Madras"],
    bio: "Over a decade of building products that move real numbers. Led product and analytics at Flipkart and Udaan — two of India's largest commerce platforms — and most recently at 6sense, on the revenue-intelligence systems B2B teams rely on to find and close pipeline.\n\nNow I run NurtureAxis Technology with Siva. I take ambiguous business bets and turn them into shipped products with measurable impact. I also work with teams who want AI to change how they operate day-to-day — not as a side experiment, but as the way the business runs."
  },
  {
    initials: "SK",
    img: "assets/siva.jpeg",
    name: "Sivaramakrishnan Kasiviswanathan",
    role: "Co-founder · Engineering & Systems",
    linkedin: "https://www.linkedin.com/in/sivacosc/",
    pedigree: ["Ex-Google Search", "Ex-Oracle", "M.Tech, IISc Bangalore"],
    bio: "Twelve years of building systems that millions of people rely on. Five of those at Google, on Search — the infrastructure behind billions of queries. Six at Oracle, building the foundations of their cloud. An M.Tech from IISc Bangalore, where I researched GPU parallel computing.\n\nNow I run NurtureAxis Technology. Three products, two already generating revenue. I also work with companies who want to bring AI into how they build software — not as a demo, but as the way they work."
  }
];

const PRODUCTS = [
  { name: "AI Video Generator", users: "8,400+ users", desc: "Text-to-video pipeline used by marketers and solo creators. Shipped, monetizing, still growing." },
  { name: "AI Backtesting Platform", users: "3,600+ users", desc: "A trader-facing engine to validate strategies against decades of market data using natural-language prompts." }
];

function Founders() {
  return (
    <section id="founders">
      <div className="container">
        <Reveal>
          <div className="section-head">
            <div className="eyebrow">Who we are</div>
            <h2>Two founders. Enough scar tissue to be useful.</h2>
            <p className="sub">
              We've shipped inside hyper-growth companies, at foundational-scale tech firms,
              and on our own. When we embed with your team, it's both of us — not a rotating bench.
            </p>
          </div>
        </Reveal>

        <Reveal delay={1}>
          <div className="founders-grid">
            {FOUNDERS.map((f, i) => (
              <div className="founder" key={f.initials}>
                <div style={{ display: "flex", gap: 20, alignItems: "center" }}>
                  <div className="founder-avatar" style={{ backgroundImage: `url(${f.img})` }}>
                    {!f.img && f.initials}
                  </div>
                  <div>
                    <div className="founder-name">{f.name}</div>
                    <div className="founder-role">{f.role}</div>
                    {f.linkedin && (
                      <a
                        className="founder-linkedin"
                        href={f.linkedin}
                        target="_blank"
                        rel="noopener noreferrer"
                        aria-label={`${f.name} on LinkedIn`}
                      >
                        <LinkedInIcon size={13}/>
                        <span>LinkedIn</span>
                        <Arrow size={10}/>
                      </a>
                    )}
                  </div>
                </div>
                <div className="founder-pedigree">
                  {f.pedigree.map(p => <span className="pill" key={p}>{p}</span>)}
                </div>
                <p className="founder-bio" style={{ whiteSpace: "pre-line" }}>{f.bio}</p>
              </div>
            ))}
          </div>
        </Reveal>
      </div>
    </section>
  );
}

Object.assign(window, { Founders });
