// Shared data used across components
const HUNARA = {
  brand: 'Hunara AI',
  phone: '+91 7971 542 789',
  email: 'hello@hunaraai.io',
};

const FEATURED_AGENTS = [
  {
    id: 'priya',
    name: 'PRIYA',
    roleKey: 'priya_role',
    tags: ['Voice', 'WhatsApp'],
    accent: '#00F0FF',
    hue: 195,
    skillKeys: ['priya_skill_1','priya_skill_2','priya_skill_3','priya_skill_4','priya_skill_5','priya_skill_6'],
  },
  {
    id: 'suresh',
    name: 'SURESH',
    roleKey: 'suresh_role',
    tags: ['Voice', 'WhatsApp'],
    accent: '#FFB800',
    hue: 38,
    skillKeys: ['suresh_skill_1','suresh_skill_2','suresh_skill_3','suresh_skill_4','suresh_skill_5','suresh_skill_6'],
  },
];

const ALL_DEPARTMENTS = [
  {
    id: 'sales',
    nameKey: 'dept_sales',
    badgeKey: 'badge_core',
    badgeTone: 'cyan',
    agents: [
      ['PRIYA', 'priya_role'],
      ['SURESH', 'suresh_role'],
    ],
  },
  {
    id: 'marketing',
    nameKey: 'dept_marketing',
    badgeKey: 'badge_upcoming',
    badgeTone: 'violet',
    agents: [
      ['ARJUN', 'role_arjun'],
      ['KAVYA', 'role_kavya'],
      ['BHARAT', 'role_bharat'],
      ['LEENA', 'role_leena'],
      ['NAKUL', 'role_nakul'],
    ],
  },
  {
    id: 'finance',
    nameKey: 'dept_finance',
    badgeKey: 'badge_upcoming',
    badgeTone: 'violet',
    agents: [
      ['DHAN', 'role_dhan'],
      ['HISAB', 'role_hisab'],
      ['KOSH', 'role_kosh'],
      ['LEKHA', 'role_lekha'],
      ['PATRA', 'role_patra'],
      ['VIDHI', 'role_vidhi'],
    ],
  },
  {
    id: 'construction',
    nameKey: 'dept_construction',
    badgeKey: 'badge_upcoming',
    badgeTone: 'violet',
    agents: [
      ['NIRMAAN', 'role_nirmaan'],
      ['KARYA', 'role_karya'],
      ['KHARID', 'role_kharid'],
      ['VETTAN', 'role_vettan'],
      ['MAAN', 'role_maan'],
    ],
  },
  {
    id: 'ops',
    nameKey: 'dept_ops',
    badgeKey: 'badge_upcoming',
    badgeTone: 'violet',
    agents: [
      ['MITRA', 'role_mitra'],
      ['AASHA', 'role_aasha'],
      ['TARA', 'role_tara'],
      ['SEWA', 'role_sewa'],
    ],
  },
  {
    id: 'tech',
    nameKey: 'dept_tech',
    badgeKey: 'badge_upcoming',
    badgeTone: 'violet',
    agents: [
      ['CHETAN', 'role_chetan'],
      ['BODHI', 'role_bodhi'],
      ['VETAN', 'role_vetan'],
      ['KARM', 'role_karm'],
      ['PRAGYA', 'role_pragya'],
      ['GYAAN', 'role_gyaan'],
    ],
  },
];

const INDUSTRIES = [
  { icon: '🧱', tKey: 'ind_ceramic_t', sKey: 'ind_ceramic_s', lKey: 'ind_ceramic_l' },
  { icon: '🏗️', tKey: 'ind_realestate_t', sKey: 'ind_realestate_s', lKey: 'ind_realestate_l' },
  { icon: '🏥', tKey: 'ind_health_t', sKey: 'ind_health_s', lKey: 'ind_health_l' },
  { icon: '🏫', tKey: 'ind_edu_t', sKey: 'ind_edu_s', lKey: 'ind_edu_l' },
  { icon: '🛒', tKey: 'ind_retail_t', sKey: 'ind_retail_s', lKey: 'ind_retail_l' },
  { icon: '🏭', tKey: 'ind_mfg_t', sKey: 'ind_mfg_s', lKey: 'ind_mfg_l' },
  { icon: '🚛', tKey: 'ind_logistics_t', sKey: 'ind_logistics_s', lKey: 'ind_logistics_l' },
  { icon: '⚖️', tKey: 'ind_legal_t', sKey: 'ind_legal_s', lKey: 'ind_legal_l' },
];

Object.assign(window, { HUNARA, FEATURED_AGENTS, ALL_DEPARTMENTS, INDUSTRIES });
