/* ============================================
   CybTech — Design Tokens (CSS Custom Properties)
   Purple Gradient Theme
   ============================================ */

:root {
    /* ── Primary Purple Gradient ────────────── */
    --primary-50:  #f5f3ff;
    --primary-100: #ede9fe;
    --primary-200: #ddd6fe;
    --primary-300: #c4b5fd;
    --primary-400: #a78bfa;
    --primary-500: #8b5cf6;
    --primary-600: #7c3aed;
    --primary-700: #6d28d9;
    --primary-800: #5b21b6;
    --primary-900: #4c1d95;
    --primary-950: #2e1065;

    /* ── Accent (Violet / Fuchsia) ─────────── */
    --accent-400: #c084fc;
    --accent-500: #a855f7;
    --accent-600: #9333ea;

    /* ── Secondary (Cyan / Teal) ───────────── */
    --secondary-400: #22d3ee;
    --secondary-500: #06b6d4;
    --secondary-600: #0891b2;

    /* ── Gradients ─────────────────────────── */
    --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 50%, var(--secondary-500) 100%);
    --gradient-hero: linear-gradient(135deg, #1a0533 0%, #0f0a1f 30%, #0a0e27 60%, #0d1117 100%);
    --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-400), var(--accent-400), var(--secondary-400));
    --gradient-glow: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    --gradient-cta: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 50%, var(--accent-500) 100%);

    /* ── Neutrals ──────────────────────────── */
    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* ── Semantic Colors ───────────────────── */
    --success: #10b981;
    --warning: #f59e0b;
    --error:   #ef4444;
    --info:    #3b82f6;

    /* ── Typography ────────────────────────── */
    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    --text-xs:   0.75rem;     /* 12px */
    --text-sm:   0.875rem;    /* 14px */
    --text-base: 1rem;        /* 16px */
    --text-lg:   1.125rem;    /* 18px */
    --text-xl:   1.25rem;     /* 20px */
    --text-2xl:  1.5rem;      /* 24px */
    --text-3xl:  1.875rem;    /* 30px */
    --text-4xl:  2.25rem;     /* 36px */
    --text-5xl:  3rem;        /* 48px */
    --text-6xl:  3.75rem;     /* 60px */
    --text-7xl:  4.5rem;      /* 72px */

    --font-light:    300;
    --font-normal:   400;
    --font-medium:   500;
    --font-semibold: 600;
    --font-bold:     700;
    --font-extrabold:800;

    --leading-tight:  1.2;
    --leading-normal: 1.6;
    --leading-relaxed:1.75;

    /* ── Spacing ───────────────────────────── */
    --space-1:  0.25rem;   /* 4px */
    --space-2:  0.5rem;    /* 8px */
    --space-3:  0.75rem;   /* 12px */
    --space-4:  1rem;      /* 16px */
    --space-5:  1.25rem;   /* 20px */
    --space-6:  1.5rem;    /* 24px */
    --space-8:  2rem;      /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    --space-24: 6rem;      /* 96px */
    --space-32: 8rem;      /* 128px */

    /* ── Border Radius ─────────────────────── */
    --radius-sm:   0.375rem;  /* 6px */
    --radius-md:   0.5rem;    /* 8px */
    --radius-lg:   0.75rem;   /* 12px */
    --radius-xl:   1rem;      /* 16px */
    --radius-2xl:  1.5rem;    /* 24px */
    --radius-full: 9999px;

    /* ── Shadows ────────────────────────────── */
    --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl:  0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow:0 0 20px rgba(124, 58, 237, 0.3), 0 0 60px rgba(124, 58, 237, 0.1);
    --shadow-glow-lg: 0 0 30px rgba(124, 58, 237, 0.4), 0 0 80px rgba(168, 85, 247, 0.2);

    /* ── Transitions ───────────────────────── */
    --transition-fast:   150ms ease;
    --transition-base:   250ms ease;
    --transition-slow:   350ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Z-Index ───────────────────────────── */
    --z-dropdown: 100;
    --z-sticky:   200;
    --z-overlay:  300;
    --z-modal:    400;
    --z-toast:    500;

    /* ── Container ─────────────────────────── */
    --container-max: 1280px;
    --container-padding: var(--space-6);

    /* ── Navbar ─────────────────────────────── */
    --nav-height: 80px;
}

/* ── Responsive token overrides ────────── */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2.25rem;
        --text-6xl: 2.75rem;
        --text-7xl: 3.25rem;
        --nav-height: 70px;
        --container-padding: var(--space-4);
    }
}

@media (max-width: 480px) {
    :root {
        --text-4xl: 1.875rem;
        --text-5xl: 2rem;
        --text-6xl: 2.25rem;
        --text-7xl: 2.75rem;
    }
}
