/* ============== VENTURE DATA ============== */
const VENTURES = [
  {
    id: 'surgeon',
    num: '01',
    title: 'THE CONTENT SURGEON',
    role: 'Founder · Chief Operator',
    tagline: 'Content Solutions for Surgeons',
    faction: 'CONTENT AGENCY',
    class: 'FOR SURGEONS ONLY',
    weapon: 'Weapon · NARRATIVE',
    mission: 'India\'s only content agency built exclusively for surgeons. The Tomorrow Tribe\'s first successful venture — a 10-person team turning operating-room expertise into patient trust, referrals, and compounding brand equity.',
    services: ['Content Writing', 'Content Strategy', 'SEO', 'Social Content', 'Website Copy', 'Patient Education'],
    // Real business stats (not arcade stats)
    stats: { 'MONTHLY': '₹7L+', 'TEAM': '10', 'SINCE': '2024', 'STATUS': 'LIVE' },
    fill: 0.88,
    artClass: 'art-surgeon',
    href: 'pages/surgeon.html',
    liveUrl: 'https://www.thecontentsurgeon.com/',
    art: (
      <>
        <div className="grid" />
        <div className="scalpel" />
      </>
    ),
  },
  {
    id: 'ai',
    num: '02',
    title: 'PURO AI LABS',
    role: 'Founder · Lead Architect',
    tagline: 'AI Implementation for Business Owners',
    faction: 'AI STUDIO',
    class: 'FOR BUSINESS OWNERS',
    weapon: 'Weapon · AGENTS',
    mission: 'The Tomorrow Tribe\'s newest venture — AI implementation for solo professionals, SMBs, and service businesses. Done-for-you systems + a live monthly workshop. Just launched, targeting ₹20L ARR in year one.',
    services: ['The Studio · DFY', 'The Workshop · Live', 'AI Audits', 'Custom Agents', 'Workflow Automation', 'Ops Integration'],
    // Real business stats
    stats: { 'YEAR 1': '₹20L', 'TEAM': '1', 'SINCE': '2026', 'STATUS': 'LIVE' },
    fill: 0.55,
    artClass: 'art-ai',
    href: 'pages/ai-labs.html',
    liveUrl: 'https://www.puroailabs.com/',
    art: (
      <>
        <div className="orb" />
        <div className="dot-cluster">
          {[
            [10, 20], [85, 30], [20, 80], [78, 72], [50, 8], [92, 55], [8, 55], [40, 92], [62, 18],
          ].map(([x, y], i) => (
            <span key={i} style={{ left: `${x}%`, top: `${y}%`, animationDelay: `${i * 0.2}s` }} />
          ))}
        </div>
      </>
    ),
  },
  {
    id: 'lazy',
    num: '03',
    title: 'LAZZZYHUSTLER',
    role: 'Passion Project · Pre-Launch',
    tagline: 'Find Your Blue Ocean',
    faction: 'WEB APP · PRE-LAUNCH',
    class: 'FOR POST-AI OPERATORS',
    weapon: 'Weapon · CONTEXT',
    mission: 'A web app that helps you find your blue ocean in the post-AI world. You feed it your context — skills, constraints, the market you\'re aiming at — and it maps the career / product angle no one else is running at. Passion project of The Tomorrow Tribe, built nights and weekends.',
    services: ['Blue-Ocean Mapping', 'Context Intake', 'Market Intel', 'Career Routing', 'Product Angles', 'Post-AI Positioning'],
    // Real business stats
    stats: { 'REVENUE': 'PRE', 'TEAM': '1', 'PHASE': 'BUILD', 'GOAL': 'LAUNCH' },
    fill: 0.18,
    artClass: 'art-lazy',
    href: 'pages/lazzzyhustler.html',
    liveUrl: null,
    art: (
      <div className="zzz">
        <span>Z</span>
        <span>Z</span>
        <span>Z</span>
      </div>
    ),
  },
];

window.VENTURES = VENTURES;
