/* ============================================================
   Territory Holdings — Brand Color Tokens
   Primary: Bahama Blue  ·  Secondary: Puerto Rico

   GENERATED — do not edit by hand.
   Source: src/data/brand-tokens.mjs · Regenerate: npm run tokens
   Canonical reference: https://territory-holdings.com/brand-kit

   Drop these into :root for any project. For a Tailwind v4 codebase,
   rename :root to @theme and the ramps become utilities
   (bg-bahama-blue-500, text-puerto-rico-300, …).
   ============================================================ */

:root {
  /* Bahama Blue — Primary; the mark's crossbar (700 is the anchor) */
  --color-bahama-blue-50: #f2f9fd;
  --color-bahama-blue-100: #e5f1f9;
  --color-bahama-blue-200: #c5e4f2;
  --color-bahama-blue-300: #92cde7;
  --color-bahama-blue-400: #57b4d9;
  --color-bahama-blue-500: #329ac5;
  --color-bahama-blue-600: #227da7;
  --color-bahama-blue-700: #1e688d;
  --color-bahama-blue-800: #1c5470;
  --color-bahama-blue-900: #1c475e;
  --color-bahama-blue-950: #132e3e;

  /* Puerto Rico — Secondary; the mark's leaf-stem (300 is the step) */
  --color-puerto-rico-50: #f3faf7;
  --color-puerto-rico-100: #d5f2e8;
  --color-puerto-rico-200: #abe4d1;
  --color-puerto-rico-300: #66c7ab;
  --color-puerto-rico-400: #4eb399;
  --color-puerto-rico-500: #35977f;
  --color-puerto-rico-600: #287967;
  --color-puerto-rico-700: #236255;
  --color-puerto-rico-800: #204f46;
  --color-puerto-rico-900: #1f423b;
  --color-puerto-rico-950: #0d2622;

  /* Functional — accent, status, and light-surface neutrals */
  --color-coral: #e04f5f; /* accent — alerts, errors, emphasis */
  --color-success: #5cb85c; /* positive status, confirmations */
  --color-neutral-dark: #1a1a1a; /* body text on light surfaces */
  --color-neutral-light: #f0f0f0; /* light-surface canvas */

  /* Semantic roles */
  --brand-primary: var(--color-bahama-blue-700);
  --brand-secondary: var(--color-puerto-rico-300);
  --brand-accent: var(--color-coral);
}
