/* ═══════════════════════════════════════════════
   Shared Design System — Charcoal + Gold
   Used by Landing Page and Report
   ═══════════════════════════════════════════════ */

:root {
    --charcoal: #1c1e21;
    --charcoal-soft: #2a2d31;
    --slate: #3d4148;
    --warm-gray: #6b7280;
    --silver: #9ca3af;
    --pearl: #e8e6e1;
    --cream: #f5f3ef;
    --paper: #fafaf8;
    --white: #ffffff;
    --gold: #b8973b;
    --gold-light: #d4b95e;
    --gold-muted: #c9b67a;
    --gold-pale: rgba(184, 151, 59, 0.08);
    --teal: #2a6f6f;
    --teal-light: #e6f0f0;
    --negative: #9b3b3b;
    --positive: #3b6b4a;
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--sans);
    color: var(--charcoal);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
