/* Design tokens — single source of truth for the Blackgold-Dev design system */

:root {
  /* ── Surfaces ───────────────────────────────── */
  --bg-base:   #F6F5F1;  /* page background (light) */
  --bg-alt:    #EFEDE6;  /* alternate section (cases) */
  --surface:   #FFFFFF;  /* cards */
  --ink:       #14130F;  /* dark sections / primary ink */
  --ink-elev:  #1E1C17;  /* tech chips on dark */
  --ink-deep:  #0F0E0B;  /* footer */

  /* ── Gold palette ───────────────────────────── */
  --gold:       #C8A04B;
  --gold-deep:  #9A7B2E;
  --gold-soft:  rgba(200, 160, 75, 0.30);
  --gold-glow:  rgba(200, 160, 75, 0.13);

  /* ── Text on light ──────────────────────────── */
  --text:       #14130F;
  --text-soft:  #4A483F;
  --text-muted: #6B6862;
  --text-dim:   #8A877E;

  /* ── Text on dark ───────────────────────────── */
  --d-text:  #F1EFE8;
  --d-soft:  #B6B3AA;
  --d-mute:  #C8C5BB;
  --d-dim:   #7A776E;

  /* ── Borders ────────────────────────────────── */
  --border-ink:   rgba(20, 19, 15, 0.10);
  --border-dark:  rgba(255, 255, 255, 0.08);
  --border-gold:  rgba(200, 160, 75, 0.55);

  /* ── Status ─────────────────────────────────── */
  --live: #2E9E5B;
  --tg:   #229ED9;

  /* ── Typography ─────────────────────────────── */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  /* ── Radii ──────────────────────────────────── */
  --r-sm: 7px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 16px;
  --r-pill: 100px;

  /* ── Container ──────────────────────────────── */
  --container-max: 1280px;
  --container-pad: 44px;

  /* ── Motion ─────────────────────────────────── */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.2s;

  /* legacy aliases (kept for reset.css ::selection) */
  --gold-primary: var(--gold);
  --bg-deep: var(--ink);
}
