/**
 * DEMO-ONLY route type per state (Task 6). Nash: which route is express vs
 * extended is decided by the BACKEND ("they will not decide... in the back
 * end, I'll explain later how that works"). Until that exists, this map lets
 * the design review show both price points on the D&D demo trip.
 * A permit whose state has no known type shows a plain "Buy route" button.
 */

export const ROUTE_PRICES = { express: '$1.99', extended: '$10' } as const

export const DEMO_ROUTE_TYPES: Record<string, 'express' | 'extended'> = {
  WA: 'express',
  OR: 'extended',
  ID: 'express',
  UT: 'express',
  WY: 'express',
  CO: 'express',
  KS: 'extended',
  OK: 'express',
  AR: 'express',
  // Nash (2026-09-07, Task 73): "Tennessee… give me the ability to buy it as
  // an express route for $1.99."
  TN: 'express',
  GA: 'extended',
}
