/* ============================================================
   Design Tokens — Full Sales System
   ============================================================ */

:root {
  /* Brand */
  --brand-red: #E11A2C;
  --brand-red-hover: #c4131f;
  --brand-red-soft: rgba(225, 26, 44, 0.08);

  /* Backgrounds */
  --bg-app: #f6f7fb;
  --bg-dark: #0A1628;
  --bg-dark-2: #0F2240;

  /* Text */
  --text-dark: #14213D;
  --text-muted: #5B6A85;
  --text-on-dark: rgba(255, 255, 255, 0.88);
  --text-on-dark-muted: rgba(255, 255, 255, 0.5);

  /* Surfaces */
  --white: #FFFFFF;
  --border: #E5E9F0;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 20px 60px rgba(10, 22, 40, 0.15);
  --shadow-soft: 0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-btn: 0 10px 24px rgba(225, 26, 44, 0.35);
  --shadow-btn-hover: 0 14px 30px rgba(225, 26, 44, 0.45);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: .15s;
  --t-base: .25s;
}
