:root {
  /* ── Colors ── */
  --c-black: #000000;
  --c-white: #FFFFFF;
  --c-dark: #1a1a1a;
  --c-dark-2: #2d2d2d;
  --c-dark-3: #333333;
  --c-gray-1: #f5f5f5;
  --c-gray-2: #e0e0e0;
  --c-gray-3: #999999;
  --c-gray-4: #666666;
  --c-gray-5: #444444;
  --c-brand: #313092;
  --c-brand-60: rgba(49, 48, 146, 0.6);
  --c-brand-yellow: #fdb71e;
  --c-brand-teal: #00bab2;
  --c-highlight-teal: #20b0aa;
  --c-accent: #fdb71e;
  --c-accent-light: #fdc94e;
  --c-accent-dark: #e5a300;
  --c-overlay: rgba(0, 0, 0, 0.6);
  --c-overlay-light: rgba(0, 0, 0, 0.4);

  /* ── Typography ── */
  --font-body: 'Open Sans', sans-serif;
  --font-display: 'Open Sans', sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --text-6xl: 60px;

  --weight-light: 300;
  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* ── Spacing (4px base) ── */
  --sp-0-5: 2px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* ── Layout ── */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --gutter: var(--sp-6);

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* ── Z-index ── */
  --z-dropdown: 100;
  --z-header: 200;
  --z-overlay: 300;
  --z-modal: 400;
}
