// Shared partner-logos array — consumed by home + partnerships pages.
// `type` discriminator drives pin color on the globe.
// `lat`/`lon` place each partner on the globe. Coordinates flagged with
// (UNCERTAIN) below are best-effort defaults; correct in-place when known.
window.PARTNER_LOGOS = [
  // Biotech / pharma collaborators
  { file: "akiga-logo-1.png",                       alt: "Akigai",                          type: "biotech",  lat: 33.45,  lon: -112.07 }, // UNCERTAIN — default Phoenix
  { file: "MAK-scientific-logo-1.png",              alt: "MAK Scientific",                  type: "biotech",  lat: 33.45,  lon: -112.07 }, // UNCERTAIN — default Phoenix
  { file: "neu-therapeutics-logo.png",              alt: "NEU Therapeutics",                type: "biotech",  lat: 42.36,  lon: -71.06  }, // Boston, MA
  { file: "Develco_Products_logo.jpg",              alt: "Develco Products",                type: "biotech",  lat: 56.16,  lon: 10.20   }, // Aarhus, Denmark
  { file: "EicOsis_Logo.png",                       alt: "Eicosis",                         type: "biotech",  lat: 38.55,  lon: -121.74 }, // Davis, CA
  { file: "aqualung-therapeutics-logo.png",         alt: "Aqualung Therapeutics",           type: "biotech",  lat: 32.22,  lon: -110.93 }, // Tucson, AZ
  { file: "rohn3strHOKxSmnH6brWzkvGw.png",          alt: "Ergot Biosciences",               type: "biotech",  lat: 33.45,  lon: -112.07 }, // UNCERTAIN — default Phoenix
  { file: "BpIwmiudUkCgfTX4OJrKThpcAY.png",         alt: "Zylorion",                        type: "biotech",  lat: 33.45,  lon: -112.07 }, // UNCERTAIN — default Phoenix

  // Academic & research institutions
  { file: "Northeastern-University-Logo-scaled.png", alt: "Northeastern University",        type: "academic", lat: 42.34,  lon: -71.09  }, // Boston, MA
  { file: "QWYDmaZbTQbz3IbCk4NQa0VVA.png",          alt: "Keck School of Medicine of USC",  type: "academic", lat: 34.06,  lon: -118.20 }, // Los Angeles, CA
  { file: "IPr8xzarSzIAjHp5boL5VfNwDw.png",         alt: "Pontificia Universidad Javeriana",type: "academic", lat: 4.63,   lon: -74.06  }, // Bogotá, Colombia
  { file: "cHI6h7rkXl1tZmMNgq3pmLsaL0.png",         alt: "UC Davis",                        type: "academic", lat: 38.54,  lon: -121.75 }, // Davis, CA
  { file: "r350L1aFZEkEurFQrpEJRCdc.png",           alt: "Università degli Studi Firenze",  type: "academic", lat: 43.77,  lon: 11.26   }, // Florence, Italy
  { file: "f5zNV4C65EAJtwukYQKJMVopfU.png",         alt: "University of Florida",           type: "academic", lat: 29.65,  lon: -82.34  }, // Gainesville, FL
  { file: "ue6XJeH5b4ZSuYGyQ7ewTpvQA.png",          alt: "University of Kentucky",          type: "academic", lat: 38.03,  lon: -84.50  }, // Lexington, KY
  { file: "tOSt2N7cvp42vSycnb5ze5LhSR4.png",        alt: "VCU",                             type: "academic", lat: 37.54,  lon: -77.45  }, // Richmond, VA
];

// VivaMed offices that act as routing hubs on the partners globe.
window.VIVAMED_HUBS = [
  { city: "Phoenix",  lat: 33.45, lon: -112.07, hq: true,  label: "Headquarters" },
  { city: "New York", lat: 40.71, lon: -74.01,             label: "Commercial"   },
  { city: "Basel",    lat: 47.56, lon: 7.59,               label: "Scientific"   },
  { city: "Bogotá",   lat: 4.71,  lon: -74.07,             label: "Engineering"  },
  { city: "Riyadh",   lat: 24.71, lon: 46.68,              label: "Middle East"  },
];

// Color tokens by partner type — kept here so they're easy to tune in one place.
window.PARTNER_TYPE_COLORS = {
  biotech:  "#3393F0", // brand blue
  academic: "#7FBFFF", // lighter blue
  data:     "#FFB55C", // amber (reserved for future)
  investor: "#9DDB7C", // green (reserved for future)
};
