/* ============================================
   ShrutAura Global — Design Tokens
   ============================================ */

:root {
  /* ── Colors: Primary ── */
  --color-navy: #1B1E40;
  /* Darker navy for main text */
  --color-navy-light: #2A2E65;
  /* Lighter navy for headings */
  --color-navy-mid: #212550;
  --color-navy-dark: #12142B;
  --color-navy-950: #0B0C1A;

  /* ── Colors: Neutral ── */
  --color-white: #FFFFFF;
  --color-off-white: #F3F4F6;
  /* New main background */
  --color-gray-50: #F8F9FA;
  --color-gray-100: #E9ECEF;
  --color-gray-200: #DEE2E6;
  --color-gray-300: #CED4DA;
  --color-gray-400: #ADB5BD;
  --color-gray-500: #6C757D;
  --color-gray-600: #495057;
  --color-gray-700: #343A40;
  --color-gray-800: #212529;

  /* ── Colors: Brand ── */
  --color-aura-blue: #1A3F9E;
  /* Matches "Aura" in logo */

  /* ── Colors: Accent ── */
  --color-accent: #3F51B5;
  /* Indigo accent */
  --color-accent-hover: #303F9F;
  --color-accent-light: #5C6BC0;
  --color-accent-subtle: rgba(63, 81, 181, 0.08);
  --color-accent-glow: rgba(63, 81, 181, 0.25);
  --color-emerald: #10B981;
  --color-emerald-hover: #059669;
  --color-emerald-subtle: rgba(16, 185, 129, 0.08);

  /* ── Typography ── */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font sizes */
  --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 */

  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;

  /* Font weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Letter spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.15em;

  /* ── 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-30: 7.5rem;
  /* 120px */

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

  /* ── Shadows ── */
  --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 40px rgba(27, 30, 64, 0.06);
  --shadow-card-hover: 0 20px 50px rgba(27, 30, 64, 0.1);
  --shadow-glow: 0 0 30px rgba(63, 81, 181, 0.15);

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

  /* ── Z-index ── */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-nav: 500;
  --z-overlay: 900;
  --z-modal: 1000;

  /* ── Layout ── */
  --container-max: 1320px;
  --container-narrow: 800px;
  --nav-height: 80px;
  --section-padding: var(--space-24);
}

/* ── Responsive overrides ── */
@media (max-width: 1024px) {
  :root {
    --text-7xl: 3.5rem;
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --section-padding: var(--space-20);
    --nav-height: 72px;
  }
}

@media (max-width: 768px) {
  :root {
    --text-7xl: 2.75rem;
    --text-6xl: 2.25rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --section-padding: var(--space-16);
    --nav-height: 64px;
  }
}

@media (max-width: 480px) {
  :root {
    --text-7xl: 2.25rem;
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
    --section-padding: var(--space-12);
  }
}