/* === Design Tokens === */
:root {
  /* Backgrounds */
  --bg-deep: #050414;
  --bg-mid: #0a0a26;
  --bg-soft: #131336;
  --bg-card: rgba(255, 255, 255, 0.045);
  --bg-card-hover: rgba(255, 255, 255, 0.075);
  --bg-dark: rgba(7, 4, 28, 0.7);

  /* Accents */
  --accent-1: #6366f1;
  --accent-2: #a855f7;
  --accent-3: #ec4899;
  --accent-4: #22d3ee;
  --accent-glow: rgba(168, 85, 247, 0.35);
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 55%, #ec4899 100%);

  /* Semantic */
  --success: #34d399;
  --success-bg: rgba(52, 211, 153, 0.12);
  --warn: #fbbf24;
  --warn-bg: rgba(251, 191, 36, 0.12);
  --danger: #f87171;
  --danger-bg: rgba(248, 113, 113, 0.12);

  /* Text */
  --text: #f4f4ff;
  --text-muted: #c3c4dd;
  --text-dim: #8a8ca6;

  /* Borders */
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 14px 38px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.42);
  --shadow-glow: 0 0 32px rgba(168, 85, 247, 0.35), 0 0 64px rgba(168, 85, 247, 0.18);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Easing */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-bouncy: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-fa: 'Vazirmatn', 'Estedad', 'IRANSansX', sans-serif;
  --font-en: 'Inter', 'Manrope', 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
}
