// Design tokens for 買取バンク (Kaitori Bank)
// — elite buyer's aesthetic: navy depths + gold sovereign accent

const KB_TOKENS = {
  // Core palette
  navy900: '#050B18',   // deepest — hero base
  navy800: '#0A1628',   // page bg
  navy700: '#111F36',   // card bg
  navy600: '#1A2A45',   // elevated card
  navy500: '#243858',   // hairline/border
  ink:     '#E8E6E0',   // body text on dark
  inkDim:  'rgba(232,230,224,0.62)',
  inkMute: 'rgba(232,230,224,0.42)',

  // Gold system — single chroma, varied lightness
  gold:       '#C9A961',   // primary accent
  goldLight:  '#E8D394',
  goldDeep:   '#8C7438',
  goldGlow:   'rgba(201,169,97,0.22)',

  // Feedback
  success:    '#5FB37C',
  danger:     '#D46A5A',

  // Surface lights (for light sections like form)
  bone:       '#F7F4EC',
  boneDeep:   '#ECE6D6',
  charcoal:   '#1A1A1A',

  // Type
  fontSerif: "'Noto Serif JP', 'Cormorant Garamond', serif",
  fontSans:  "'Noto Sans JP', system-ui, sans-serif",
  fontMono:  "'JetBrains Mono', monospace",
  fontLatin: "'Cormorant Garamond', 'Noto Serif JP', serif",

  // Motion
  ease:     'cubic-bezier(.22,.8,.36,1)',
  easeOut:  'cubic-bezier(.33,1,.68,1)',

  // Radius
  r_sm: 8, r_md: 14, r_lg: 22, r_xl: 32,
};

window.KB = KB_TOKENS;
