:root {
  /* Colors - Ultra-clean, High Contrast */
  --color-bg: #000000;
  --color-bg-alt: #0A0A0A;
  --color-text: #FFFFFF;
  --color-text-muted: #86868B;
  --color-primary: #2997FF;
  --color-accent: #FF9F0A;
  --color-border: #333333;
  --color-border-subtle: #1D1D1F;

  /* Typography - Mobile First */
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Base sizes (mobile) */
  --font-size-base: 15px;
  --font-size-sm: 12px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 32px;
  --font-size-3xl: 40px;
  --font-size-4xl: 48px;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;

  /* Tracking */
  --tracking-tight: -0.022em;
  --tracking-tighter: -0.04em;
  --tracking-normal: -0.011em;

  /* Spacing - Mobile First */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 72px;

  /* Layout */
  --container-width: 1080px;
  --header-height: 56px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Tablet and up */
@media (min-width: 768px) {
  :root {
    --font-size-base: 17px;
    --font-size-sm: 14px;
    --font-size-lg: 21px;
    --font-size-xl: 28px;
    --font-size-2xl: 48px;
    --font-size-3xl: 64px;
    --font-size-4xl: 80px;

    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --font-size-4xl: 96px;
  }
}