/* =========================
   TJT Media Design Tokens
   ========================= */

:root {
  /* =========================
     Colors
     ========================= */
  --color-bg: #0b0b12;
  --color-surface: #14141d;
  --color-surface-2: #1b1b27;
  --color-surface-3: rgba(255, 255, 255, 0.08);

  --color-text: #f5f7ff;
  --color-text-muted: #a7abc0;

  --color-accent: #8b5cf6;
  --color-accent-soft: rgba(138, 92, 246, 0.288);

  --color-border: rgba(253, 253, 253, 0.63);

  /* =========================
     Typography
     ========================= */
  --font-heading: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  --font-size-xs: 0.5em;
  --font-size-sm: 0.75em;
  --font-size-md: 1em;
  --font-size-lg: 1.25em;
  --font-size-xl: 1.75em;
  --font-size-xxl: 2.5em;

  /* =========================
     Spacing
     ========================= */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-mega-xxl:15rem;

  /* =========================
     Radius
     ========================= */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 3rem;

  /* =========================
     Shadows
     ========================= */
  --shadow-sm: 0 4px 12px var(--color-accent-soft);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);

  /* =========================
     Glow Effects
     ========================= */
  --glow-accent: 0 0 20px rgba(139, 92, 246, 0.35);
  --glow-accent-strong: 0 0 40px rgba(139, 92, 246, 0.55);

  /* =========================
     Motion
     ========================= */
  --duration-fast: 120ms;
  --duration-base: 220ms;
  --duration-slow: 420ms;

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

  /* =========================
     Layout
     ========================= */
  --container-padding: 0 5%;
  --container-width: 1100px;
  --container-wide: 1400px;

  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}
