/* ========================================
   JumpAds - Design Tokens (Awake Style)
   ======================================== */

:root {
  /* ===== CONTAINERS ===== */
  --container-lg: 1272px;
  --container-md: 738px;
  --container-sm: 290px;
  --container-max: 1200px;

  /* ===== TYPOGRAPHY ===== */
  --inter: 'Sora', sans-serif;
  --instrument: 'Sora', serif;
  --font-family: 'Sora', system-ui, -apple-system, sans-serif;
  
  /* Font Sizes */
  --header-h1-desktop: 130px;
  --heading-h2-desktop: 72px;
  --heading-h3-desktop: 48px;
  --heading-h4-desktop: 32px;
  --heading-h5-desktop: 24px;
  --heading-h6-desktop: 20px;
  --regular-medium: 16px;
  --regular-small: 14px;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* ===== BUTTON SIZES ===== */
  --large-button-size: 64px;
  --medium-button-size: 48px;
  --header-height: 86px;

  /* ===== COLORS - BLACK ===== */
  --black-100: #1b1d1e;
  --black-60: rgba(27, 29, 30, 0.6);
  --black-50: rgba(27, 29, 30, 0.05);
  --black-40: rgba(27, 29, 30, 0.4);
  --black-10: rgba(27, 29, 30, 0.1);

  /* ===== COLORS - WHITE ===== */
  --white-100: #ffffff;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-10: rgba(255, 255, 255, 0.1);
  --color-white: #ffffff;
  --color-black: #0a0a0a;

  /* ===== COLORS - BRAND (JumpAds) ===== */
  --color-primary: #9dff75;
  --color-primary-light: #b8ff9a;
  --color-primary-dark: #7acc5d;
  --color-primary-20: rgba(157, 255, 117, 0.2);
  --color-primary-rgb: 157, 255, 117;
  --color-accent: #9dff75;

  /* ===== COLORS - SECONDARY ===== */
  --color-secondary: #1a1a2e;
  --color-secondary-light: #2d2d44;
  --color-secondary-dark: #0f1a11;

  /* ===== COLORS - GRAY ===== */
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  --color-gray-950: #0a0a0a;

  /* ===== COLORS - SEMANTIC ===== */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* ===== COLORS - ACCENT PALETTE ===== */
  --violet-100: #4928fd;
  --violet-20: rgba(73, 40, 253, 0.2);
  --orange-100: #ffaf68;
  --orange-20: rgba(255, 175, 104, 0.2);
  --yellow-100: #f6e683;
  --yellow-20: rgba(246, 230, 131, 0.2);
  --green-100: #79d45e;
  --green-20: rgba(121, 212, 94, 0.2);
  --purple-100: #b981ed;
  --purple-20: rgba(185, 129, 237, 0.2);
  --pink-100: #f4889a;
  --pink-20: rgba(244, 136, 154, 0.2);
  --blue-100: #70b5ff;
  --blue-20: rgba(112, 181, 255, 0.2);

  /* ===== SPACING ===== */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;

  /* ===== BORDER RADIUS ===== */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(var(--color-primary-rgb), 0.3);
  --shadow-glow-lg: 0 0 40px rgba(var(--color-primary-rgb), 0.4);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}
