/* RedSeed — Colour tokens. Values transcribed exactly from the Brand Guidelines Book. */
:root{
  /* ── Ink & neutrals ── */
  --rs-ink:#121212;              /* body text, default on-light */
  --rs-black:#000000;
  --rs-white:#ffffff;

  /* ── Primary palette (six colours lead) ── */
  --rs-journey-green:#136C51;    /* the growth green — primary action */
  --rs-warm-yellow:#EEDC5B;      /* the glow, the human lift */
  --rs-modern-bone:#EDEBE2;      /* warm off-white canvas */
  --rs-soft-lilac:#E9B8DE;       /* modern, human signal */
  --rs-warm-mauve:#B97DA8;       /* the 1-to-1, made colour */
  --rs-deep-teal:#113C42;        /* depth and arrival */

  /* ── Secondary palette (supporting accents, used sparingly) ── */
  --rs-apricot-lift:#E89B6C;
  --rs-cornflower:#6E8FD6;
  --rs-marigold:#F2B33C;
  --rs-berry:#9A3D6B;
  --rs-plum-ink:#553150;

  /* ── Journey Green tints & shades ── */
  --rs-journey-green-90:#041610;
  --rs-journey-green-75:#0A3629;
  --rs-journey-green-60:#0F5641;
  --rs-journey-green-40:#428974;
  --rs-journey-green-25:#89B6A8;
  --rs-journey-green-10:#D0E2DC;

  /* ── Deep Teal tints & shades ── */
  --rs-deep-teal-90:#030C0D;
  --rs-deep-teal-75:#091E21;
  --rs-deep-teal-25:#8AA4AE;
  --rs-deep-teal-10:#CFD8D9;

  /* ── Warm Yellow tints ── */
  --rs-warm-yellow-25:#F6EEAD;
  --rs-warm-yellow-10:#FCF8DE;

  /* ── Soft Lilac tints ── */
  --rs-soft-lilac-25:#F4DCEF;
  --rs-soft-lilac-10:#FBF1F8;

  /* ── Warm Mauve tints ── */
  --rs-warm-mauve-25:#DCBED4;
  --rs-warm-mauve-10:#F1E5EE;

  /* ── Modern Bone tints ── */
  --rs-modern-bone-alt:#F2F1EC;  /* raised surface on bone */
  --rs-modern-bone-25:#F6F5F0;

  /* ── Course category signal colours ── */
  --rs-course-self:var(--rs-journey-green);      /* Leading self */
  --rs-course-others:var(--rs-cornflower);       /* Leading others */
  --rs-course-influence:var(--rs-deep-teal);     /* Leading with influence */
  --rs-course-growth:var(--rs-berry);            /* Leading for growth */

  /* ── Feedback (from Do/Don't panels in the book) ── */
  --rs-positive:#136C51;
  --rs-positive-surface:#D0E2DC;
  --rs-critical:#C21215;
  --rs-critical-surface:#EBD8D8;

  /* ── Semantic aliases — reference THESE in components ── */
  --rs-bg:var(--rs-modern-bone);            /* page canvas */
  --rs-bg-dark:var(--rs-deep-teal);         /* dark sections / HR surface */
  --rs-surface:var(--rs-white);             /* cards, fields */
  --rs-surface-raised:var(--rs-modern-bone-alt);
  --rs-text:var(--rs-ink);
  --rs-text-muted:rgba(18,18,18,0.7);
  --rs-text-subtle:rgba(18,18,18,0.55);
  --rs-text-on-dark:var(--rs-white);
  --rs-text-on-dark-muted:rgba(255,255,255,0.78);
  --rs-accent:var(--rs-journey-green);      /* primary action */
  --rs-accent-hover:var(--rs-journey-green-60);
  --rs-eyebrow:var(--rs-journey-green);
  --rs-hairline:rgba(18,18,18,0.18);
  --rs-hairline-on-dark:rgba(255,255,255,0.2);
  --rs-border-strong:var(--rs-ink);
  --rs-focus:var(--rs-journey-green);
}
