// intake-data.jsx — content arrays for the Linea AI Readiness intake.
// Ported from the design's intake-data.js (ES-module exports → window global,
// matching this project's convention). Source of truth for question copy.

window.INTAKE_DATA = {
  SECTIONS: [
    { id: 'A', label: 'Your Organization',   stage: 1, blurb: 'Teams, roles, and what each unit delivers.' },
    { id: 'B', label: 'Where Your Data Lives', stage: 1, blurb: 'Systems, spreadsheets, inboxes, and heads.' },
    { id: 'C', label: 'Where Time Goes',     stage: 1, blurb: 'Repetition, delays, and the task you’d hand off tomorrow.' },
    { id: 'E', label: 'Your Systems',        stage: 2, blurb: 'Confirm the workflows we drafted from your answers.' },
    { id: 'F', label: 'System Details',      stage: 2, blurb: 'A few specifics on the systems that matter most.' },
  ],

  LOCK_COPY: 'Used only if we have clarifications after reviewing your answers.',

  // Document cards. Each can be uploaded, described, or marked N/A; `describeEg`
  // is the placeholder for the "Describe it" textarea — an example of what to
  // write, not a restatement of the request. `org` and `systems` also expose a
  // manual builder (business units / systems). The cards are distributed across
  // the Stage-1 sections: org + jobs → Your Organization, systems + report →
  // Where Your Data Lives, sops → Where Time Goes.
  DOCS: [
    { id: 'org',     title: 'Org Chart', hint: 'Your teams and reporting lines, broken down by business unit',
      describeEg: 'e.g. Owner oversees three teams — Operations (8 people), Sales (4), and Finance (3). The Ops and Sales leads both report to the owner.' },
    { id: 'jobs',    title: 'Job Descriptions', hint: 'Your core roles and what each one is accountable for',
      describeEg: 'e.g. Account managers own client relationships and renewals; the finance team handles invoicing, collections, and month-end close.' },
    { id: 'sops',    title: 'SOPs, Written Processes, Checklists', hint: 'How your most important work gets done, step by step',
      describeEg: 'e.g. A customer onboarding checklist and a month-end close process, both written up in Google Docs and followed by the office team.' },
    { id: 'systems', title: 'Software & Systems', hint: 'The applications and platforms your team runs on',
      describeEg: 'e.g. QuickBooks for accounting, a shared Google Drive for documents, and Outlook for email and scheduling.' },
    { id: 'report',  title: 'KPIs, Metrics, Dashboards', hint: 'The numbers you track to run the business',
      describeEg: 'e.g. We track monthly revenue, outstanding invoices, and new customers signed in a spreadsheet the owner reviews each week.' },
  ],

  HEADCOUNT: ['1–10', '11–25', '26–50', '51–100', '100–250', '250+'],

  UNIT_SUGGESTIONS: ['Operations', 'Sales', 'Marketing', 'Finance & Accounting', 'HR', 'IT', 'Customer Service', 'Estimating', 'Field / Service', 'Procurement', 'Admin'],

  ROLE_SUGGESTIONS: ['Office Manager', 'Bookkeeper', 'Estimator', 'Project Manager', 'Account Manager', 'Dispatcher', 'Technician', 'Sales Rep', 'Controller', 'Coordinator', 'Admin Assistant'],

  // Common SME / mid-market systems across accounting, CRM, project/ops,
  // documents & e-sign, productivity, comms, and industry-specific tools.
  SYSTEM_SUGGESTIONS: [
    'QuickBooks', 'Xero', 'Sage', 'NetSuite',
    'Salesforce', 'HubSpot', 'Pipedrive', 'Zoho CRM',
    'Monday.com', 'Asana', 'ClickUp', 'Microsoft Project', 'Smartsheet', 'Trello',
    'PandaDoc', 'DocuSign',
    'ServiceTitan',
    'Slack', 'Microsoft Teams', 'SharePoint', 'Dropbox',
    'Excel / Google Sheets', 'Shared Drive', 'Outlook / Gmail',
    'Gusto', 'BambooHR',
  ],

  INFO_CHIPS: ['Customer & sales info', 'Money: invoices, expenses, payroll', 'Projects & jobs', 'Schedules', 'Documents & files', 'Email & messages', 'Quotes & estimates', 'Inventory', 'HR & people', 'Other'],

  AI_EXP: ['No', 'A few people experiment', 'We use some tools regularly', 'We tried and it didn’t stick'],

  FREQ: ['Many times a day', 'Daily', 'Weekly', 'Monthly', 'Seasonally'],
  HOURS: ['Under 2 hrs', '2–5 hrs', '5–15 hrs', '15–40 hrs', '40+ hrs'],
  DOCD: ['Documented', 'Partly', 'In people’s heads'],
  ROUTINE: ['Mostly routine', 'A mix', 'Mostly judgment'],

  RUNS: ['Cloud', 'Installed on our own server or PCs', 'Not sure'],
  DATA_IN: ['Typed by hand', 'Synced automatically', 'Imported from spreadsheets', 'Emailed in', 'Not sure'],
  EXPORTABLE: ['Yes, easily', 'Probably, with effort', 'No / don’t know'],
  COMPLIANCE: ['Customer privacy', 'Financial records', 'Health information', 'Contracts / legal', 'None we know of'],
};
