/* ==========================================================================
   ZEITGEIST VENTURES — Design Tokens
   Swiss Graphic Design: "As little design as possible"
   ========================================================================== */

:root {
  /* Grid
     ======================================================================== */
  --grid-columns: 12;
  --grid-gap: 24px;
  --grid-margin: 48px;

  /* Colors — Light Mode
     ======================================================================== */
  --color-bg: #FAFAFA;
  --color-bg-muted: #F5F5F5;
  --color-bg-elevated: #F0F0F0;
  --color-bg-primary: #0A0A0A;

  /* Text */
  --color-text-primary: #0A0A0A;
  --color-text-secondary: #525252;
  --color-text-tertiary: #A3A3A3;
  --color-text-inverted: #FFFFFF;

  /* Border */
  --color-border: #E5E5E5;
  --color-border-strong: #0A0A0A;
  --color-border-subtle: #F5F5F5;

  /* Accent — Electric Orange */
  --color-accent: #FF4D00;
  --color-accent-hover: #CC3D00;

  /* Typography
     ======================================================================== */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

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

  /* Font sizes */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 56px;
  --text-6xl: 72px;

  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  --leading-loose: 1.8;

  /* Letter spacing */
  --tracking-tighter: -0.03em;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* Spacing — 8px rhythm
     ======================================================================== */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout
     ======================================================================== */
  --max-width: 1440px;
  --header-height: 72px;

  /* Shadows
     ======================================================================== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 24px rgba(255, 77, 0, 0.15);

  /* Blur
     ======================================================================== */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 24px;

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

  /* Border Radius
     ======================================================================== */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;
}

/* ==========================================================================
   Dark Mode
   ========================================================================== */

[data-theme="dark"] {
  /* Background */
  --color-bg: #0A0A0A;
  --color-bg-muted: #1A1A1A;
  --color-bg-elevated: #141414;
  --color-bg-primary: #FAFAFA;

  /* Text */
  --color-text-primary: #FAFAFA;
  --color-text-secondary: #A3A3A3;
  --color-text-tertiary: #525252;
  --color-text-inverted: #0A0A0A;

  /* Border */
  --color-border: #262626;
  --color-border-strong: #FAFAFA;
  --color-border-subtle: #1A1A1A;

  /* Accent stays the same */
  --color-accent: #FF4D00;
  --color-accent-hover: #CC3D00;

  /* Shadows — deeper for dark mode */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 32px rgba(255, 77, 0, 0.2);
}
