/* ---------------------------------------------------------------
   SETTINGS — design tokens for Jackpot Checklist
   Neo-Editorial Contrast: neo-serif display + monospace utility type,
   off-white ground, deep teal ink, single tangerine accent.
--------------------------------------------------------------- */
:root{
  /* colour */
  --bg:            #FAF6EE;
  --bg-raised:     #FFFFFF;
  --bg-band:       #EFE9DA;
  --ink:           #17322F;
  --ink-soft:      #4A5F5A;
  --teal:          #123B39;
  --teal-deep:     #0D2E2C;
  --line:          #D9D1BE;
  --line-strong:   #17322F;
  --accent:        #ED6B26;
  --accent-deep:   #C9531A;
  --accent-ink:    #FFFDF8;
  --star-off:      #DCD3BC;

  /* type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Source Serif 4", Georgia, serif;
  --font-label:   "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-mono:    "IBM Plex Mono", "Courier New", monospace;

  /* spacing scale (4/8 base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* layout */
  --container: 1160px;
  --container-narrow: 760px;
  --radius-card: 22px;
  --radius-sm: 8px;

  /* motion */
  --ease: cubic-bezier(.22,.9,.28,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
