// Shared data + helpers for the xotski admin prototype
const ACTIVE_BRAND = {
  name: 'Joyly',
  initials: 'J',
  tagline: 'Summer Tour 2026',
  logoGradient: 'linear-gradient(135deg, #ff6b9d 0%, #ffd66b 100%)',
  brandHex: '#ff6b9d',
};

const PROJECT = {
  name: 'Joyly Summer 2026',
  brand: 'Joyly',
  status: 'live',
  startsIn: 'Day 1 of 8',
  events: 12,
  stations: 28,
  totalXotskies: 4000,
  deployed: 2480,
};

const KPIS = [
  { lbl: 'Moments created', val: '8,412', delta: '+18%', dir: 'up', spark: [4,6,5,7,8,9,11,12] },
  { lbl: 'Inventory health', val: '62%', delta: '−6%', dir: 'down', spark: [9,9,8,8,7,7,7,6], note: 'depleting' },
  { lbl: 'Cost per moment', val: '$1.35', delta: '−27%', dir: 'up', spark: [3,3,3,2.5,2.2,1.8,1.5,1.35] },
  { lbl: 'Contacts captured', val: '5,217', delta: '+412', dir: 'up', spark: [2,3,4,5,6,7,8,10] },
];

const UPCOMING = [
  { name: 'Coachella Weekend 1 — Day 1', location: 'Indio, CA', when: 'Live now', status: 'live', stations: 4, cover: '#ff6b9d', initial: 'C' },
  { name: 'BottleRock Napa Valley', location: 'Napa, CA', when: 'in 4 days', status: 'ready', stations: 3, cover: '#9b6bff', initial: 'B' },
  { name: 'Lollapalooza Chicago', location: 'Chicago, IL', when: 'in 18 days', status: 'draft', stations: 0, cover: '#6bd9ff', initial: 'L' },
  { name: 'Outside Lands SF', location: 'San Francisco, CA', when: 'in 31 days', status: 'draft', stations: 0, cover: '#ffd66b', initial: 'O' },
];

const MERCH = [
  { name: 'Joyly Bucket Hat', initial: 540, available: 218, rarity: 2, color: '#ff6b9d', purpose: 'TRY' },
  { name: 'Mango Tote', initial: 800, available: 442, rarity: 3, color: '#ffd66b', purpose: 'SEE' },
  { name: 'Passion Sticker Pack', initial: 1200, available: 980, rarity: 5, color: '#b262f5', purpose: 'SEE' },
  { name: 'Holo Sunnies', initial: 320, available: 47, rarity: 1, color: '#6bd9ff', purpose: 'ENGAGE' },
  { name: 'Joyly Tee — Pink', initial: 480, available: 312, rarity: 3, color: '#ff6b9d', purpose: 'TRY' },
  { name: 'Festival Fanny', initial: 200, available: 14, rarity: 1, color: '#4dd28b', purpose: 'ACT' },
  { name: 'Bottle Opener Keychain', initial: 1000, available: 814, rarity: 4, color: '#a9a9a9', purpose: 'SEE' },
  { name: 'Beaded Bracelet Kit', initial: 240, available: 88, rarity: 2, color: '#ffaa6b', purpose: 'ENGAGE' },
];

const DEMO_AGE = [
  { lbl: '18–21', pct: 22 },
  { lbl: '22–25', pct: 31 },
  { lbl: '26–30', pct: 24 },
  { lbl: '31–40', pct: 16 },
  { lbl: '41+', pct: 7 },
];
const DEMO_GENDER = [
  { lbl: 'Female', pct: 64, color: '#ff6b9d' },
  { lbl: 'Male', pct: 33, color: '#6bd9ff' },
  { lbl: 'Other', pct: 3, color: '#ffd66b' },
];

const CONTACTS = [
  { name: 'Mariana López', email: 'mariana@example.com', station: 'Main Stage', event: 'Coachella W1 D1', when: 'Today 14:22' },
  { name: 'Devon Cole', email: 'devon.c@example.com', station: 'Polo Field', event: 'Coachella W1 D1', when: 'Today 13:58' },
  { name: 'Sasha Patel', email: 'sasha@example.com', station: 'Main Stage', event: 'Coachella W1 D1', when: 'Today 13:41' },
  { name: 'Jordan Chen', email: 'j.chen@example.com', station: 'Sahara Tent', event: 'Coachella W1 D1', when: 'Today 13:20' },
  { name: 'Camila Ruiz', email: 'cami@example.com', station: 'Main Stage', event: 'Coachella W1 D1', when: 'Today 12:55' },
  { name: 'Tariq Idris', email: 'tariq@example.com', station: 'Polo Field', event: 'Coachella W1 D1', when: 'Today 12:31' },
  { name: 'Hannah Park', email: 'hp@example.com', station: 'Main Stage', event: 'Coachella W1 D1', when: 'Today 12:18' },
];

const ACTIVITY = [
  { when: '2m ago', text: 'Holo Sunnies dropped below 15% at Coachella · Main Stage' },
  { when: '14m ago', text: 'Atledi suggested re-routing 40 fanny packs to Polo Field' },
  { when: '38m ago', text: 'BottleRock survey approved — auto-cloned to 3 stations' },
  { when: '1h ago', text: 'Coachella W1 D1 went live · 4 stations active' },
  { when: '3h ago', text: 'Brand Studio updated · accent color changed' },
];

Object.assign(window, { ACTIVE_BRAND, PROJECT, KPIS, UPCOMING, MERCH, DEMO_AGE, DEMO_GENDER, CONTACTS, ACTIVITY });
