/* ============================================================
   DESIGN TOKENS — Project Genesis
   The single source of truth for palette, type, spacing, ease.
   Ported from the reference build; do not hardcode these values
   anywhere else.
   ============================================================ */
:root {
  /* ---- palette (exact spec) ---- */
  --black:       #0A0A0B;   /* matte black — the canvas */
  --navy:        #0F172A;   /* deep navy — blueprint depth */
  --navy-soft:   #111D38;
  --white:       #F5F5F0;   /* soft white — never pure white */
  --white-dim:   #9CA3AF;
  --gold:        #C8A24C;   /* brushed gold — the Trace, accents */
  --gold-bright: #E4C77E;   /* the Pen, hover Warm */
  --line:        #1E293B;   /* blueprint line, resting */
  --line-lit:    #334155;   /* blueprint line, active */
  --wa:          #25D366;   /* WhatsApp green — CONVERSION ONLY */
  --emerald:     #10B981;

  /* ---- type ---- */
  --font-display: 'Space Grotesk', sans-serif;      /* headlines */
  --font-body:    'Inter', system-ui, sans-serif;   /* prose */
  --font-mono:    'JetBrains Mono', monospace;       /* blueprint annotations */

  /* ---- layout ---- */
  --maxw: 1200px;

  /* ---- motion (the house easing IS the premium feel — "Settle") ---- */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur-fast: .25s;
  --dur:      .6s;
  --dur-slow: .9s;
}
