/* ============================================================
   SheGuard — Brand Foundation
   Source of truth: brand_assets/BRAND.md
   Do not edit token values here without updating BRAND.md.
   ============================================================ */

:root {

  /* ─── PRIMARY PALETTE ──────────────────────────────────── */
  --color-primary:        #3725BB;
  --color-primary-dark:   #271B87;
  --color-primary-deeper: #120B45;
  --color-white:          #FFFFFF;

  /* ─── TEXT COLORS ──────────────────────────────────────── */
  --color-text-primary:   #1A1035;
  --color-text-secondary: #3D267E;
  --color-text-muted:     #6E6A9E;

  /* ─── STATUS COLORS ────────────────────────────────────── */
  --color-error:   #E53935;
  --color-warning: #F59E0B;
  --color-success: #16A34A;
  --color-info:    #2563EB;

  /* ─── BORDERS & SURFACES ───────────────────────────────── */
  --color-border:    #E4E2F0;
  --color-surface-1: #FFFFFF;
  --color-surface-2: #E8E5F2;

  /* ─── TYPOGRAPHY ───────────────────────────────────────── */
  --font-heading: 'Clash Display', system-ui, sans-serif;
  --font-body:    'General Sans',  system-ui, sans-serif;

}

/* ─── BASE STYLES ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-surface-1);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
