/* ============================================
   JUPITER PLANET XXL - Design 2: Light Clean Blue
   Variables & Design Tokens
   ============================================ */

:root {
    /* ---- Primary Colors ---- */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-primary-lighter: #93c5fd;
    --color-primary-lightest: #dbeafe;

    /* ---- Secondary Colors ---- */
    --color-secondary: #0ea5e9;
    --color-secondary-dark: #0284c7;
    --color-secondary-light: #38bdf8;
    --color-secondary-lighter: #7dd3fc;
    --color-secondary-lightest: #e0f2fe;

    /* ---- Accent Gradient ---- */
    --gradient-primary: linear-gradient(135deg, #2563eb, #0ea5e9);
    --gradient-primary-hover: linear-gradient(135deg, #1d4ed8, #0284c7);
    --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #f8fafc 100%);
    --gradient-cta: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);

    /* ---- Background Colors ---- */
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --bg-lighter: #f8fafc;
    --bg-card: #ffffff;
    --bg-footer: #f1f5f9;
    --bg-copyright: #e2e8f0;
    --bg-topbar: #1e40af;
    --bg-navbar: #ffffff;

    /* ---- Text Colors ---- */
    --text-dark: #1e293b;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-link: #2563eb;
    --text-link-hover: #1d4ed8;

    /* ---- Border Colors ---- */
    --border-light: #e2e8f0;
    --border-lighter: #f1f5f9;
    --border-primary: #2563eb;
    --border-blue-accent: #93c5fd;

    /* ---- Shadows ---- */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-navbar: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-button: 0 4px 14px rgba(37, 99, 235, 0.35);
    --shadow-button-hover: 0 6px 20px rgba(37, 99, 235, 0.45);

    /* ---- Typography ---- */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 3.5rem;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    /* ---- Spacing ---- */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    --spacing-5xl: 6rem;
    --section-padding: 5rem 0;

    /* ---- Border Radius ---- */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50%;
    --radius-pill: 9999px;

    /* ---- Layout ---- */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --navbar-height: 72px;
    --topbar-height: 40px;

    /* ---- Transitions ---- */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* ---- Z-Index ---- */
    --z-dropdown: 100;
    --z-navbar: 1000;
    --z-topbar: 1001;
    --z-overlay: 1500;
    --z-modal: 2000;
}
