/* Take Thursday — design tokens (mirrors app/src/index.css "Bright Table").
   Warm paper, coral accent/energy, GREEN marks what's done/claimed, amber points.
   Nunito (rounded) display + headings, Inter body. */
:root {
  /* color */
  --ink:        #2c231d;  /* warm near-black — text, structure */
  --ink-soft:   #8c7b6b;  /* secondary text, labels */
  --paper:      #fdf3e8;  /* warm paper — page background */
  --card:       #ffffff;  /* cards */
  --line:       #efe4d5;  /* rules, hairlines */
  --claim:      #12967c;  /* green — the claimed / done thing */
  --claim-ink:  #ffffff;  /* text on green */
  --claim-soft: #d3efe7;  /* green wash — claimed badge / card */
  --decline:    #efe7db;  /* quiet secondary action */
  --ok:         #12967c;

  /* coral accent / energy (marketing emphasis, primary CTAs) */
  --mark:       #f0533e;
  --mark-wash:  #ffe3dd;
  --slip:       #efe7db;

  /* type */
  --font-display: "Nunito", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  --font-heading: "Nunito", ui-rounded, system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Nunito", ui-rounded, system-ui, sans-serif;

  /* scale */
  --radius: 18px;
  --radius-pill: 999px;
  --radius-icon: 24%;
  --shadow: 0 8px 22px -14px rgba(120, 70, 40, 0.3);
  --maxw: 720px;
}
