/* ── Supersite Theme Tokens — Light Mode Blue ────────────────────────── */
:root {
  /* Brand Palette */
  --color-primary:       #2563eb;
  --color-primary-dark:  #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary:     #0ea5e9;
  --color-accent:        #06b6d4;
  --color-success:       #16a34a;
  --color-warning:       #d97706;
  --color-danger:        #dc2626;

  /* Neutrals — Light Mode */
  --color-bg:            #f8fafc;
  --color-bg-surface:    #ffffff;
  --color-bg-elevated:   #ffffff;
  --color-bg-subtle:     #f1f5f9;
  --color-bg-muted:      #e2e8f0;
  --color-border:        #e2e8f0;
  --color-border-strong: #cbd5e1;
  --color-text:          #0f172a;
  --color-text-muted:    #475569;
  --color-text-subtle:   #94a3b8;

  /* Typography */
  --font-sans:           'Inter', system-ui, sans-serif;
  --font-display:        'Outfit', system-ui, sans-serif;
  --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;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --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 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:           0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:           0 8px 32px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-blue:         0 4px 20px rgba(37,99,235,0.18);
  --shadow-blue-lg:      0 8px 32px rgba(37,99,235,0.25);
  --shadow-glow-primary: 0 0 24px rgba(37,99,235,0.2);
  --shadow-glow-accent:  0 0 24px rgba(6,182,212,0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-base:    0;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   1000;
  --z-toast:   9999;
}

/* ── Base Resets ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Elementor container width overrides */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: unset !important;
}
