/* ============================================================
   VITALEDGE & VITALVAULT - Shared Design Tokens
   ============================================================ */

:root {
  /* Default Core Colors - Luxury Dark Theme */
  --bg: #050505;
  --bg-alt: #080808;
  --surface: #0D0D0D;
  --card-bg: #111111;
  --card-hover: #151515;
  --card-bg-alt: #0a0a0a;

  /* Default Accent Colors (Overridden by specific products) */
  --accent: #D90429;
  --accent-hover: #EF233C;
  --accent-glow: rgba(217, 4, 41, 0.15);
  --accent-glow-strong: rgba(217, 4, 41, 0.3);
  --accent-soft: rgba(217, 4, 41, 0.08);

  /* Secondary Accents */
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --blue-subtle: rgba(30, 64, 175, 0.08);

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #c0c7d6;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  /* Borders */
  --border-light: rgba(255, 255, 255, 0.06);
  --border-lighter: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(217, 4, 41, 0.2);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions & Easings */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Typography Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
