/* ================================================
   DESIGN SYSTEM: Monochrome Portfolio V2.1
   Enhanced typography, density, and polish
   ================================================ */

:root {
  /* ─────────────────────────────────────────────
     COLORS (Monochrome Palette)
     ───────────────────────────────────────────── */
  --color-bg: #f5f5f5;
  --color-bg-elevated: #ffffff;
  --color-text-primary: #0a0a0a;
  --color-text-secondary: #525252;
  --color-text-tertiary: #737373;
  --color-accent: #0a0a0a;
  --color-accent-hover: #262626;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.15);

  /* Field Aliases (for backward compatibility/shorthand) */
  --bg-primary: var(--color-bg);
  --bg-secondary: var(--color-bg-elevated);
  --text-primary: var(--color-text-primary);
  --text-secondary: var(--color-text-secondary);
  --text-tertiary: var(--color-text-tertiary);
  --accent-primary: var(--color-accent);

  /* ─────────────────────────────────────────────
     TYPOGRAPHY (Enhanced hierarchy)
     ───────────────────────────────────────────── */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Responsive sizes with clamp */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: clamp(1.75rem, 3vw, 2.5rem);
  --text-4xl: clamp(2rem, 4vw, 3rem);
  --text-hero: clamp(2.75rem, 5vw, 4.25rem);

  /* Line Heights */
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;
  --leading-loose: 1.8;

  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.06em;

  /* ─────────────────────────────────────────────
     SPACING (8pt Grid - Tighter)
     ───────────────────────────────────────────── */
  --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;
  --space-32: 8rem;

  /* ─────────────────────────────────────────────
     LAYOUT
     ───────────────────────────────────────────── */
  --nav-height: 72px;
  --container-max: 1100px;
  --content-max: 680px;

  /* ─────────────────────────────────────────────
     COMPONENTS
     ───────────────────────────────────────────── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* ─────────────────────────────────────────────
     TRANSITIONS
     ───────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

/* ─────────────────────────────────────────────
   VENTURE PAGE — DARK MODE PALETTE
   ───────────────────────────────────────────── */
.venture-page {
  --v-bg-dark: #141414;
  --v-bg-surface: #1a1a1a;
  --v-bg-elevated: #222222;
  --v-bg-card: #262626;
  --v-border: rgba(255, 255, 255, 0.08);
  --v-border-hover: rgba(255, 255, 255, 0.15);
  --v-text-primary: #f5f5f5;
  --v-text-secondary: #a3a3a3;
  --v-text-muted: #737373;
  --v-accent: #FF6A3D;
  --v-accent-hover: #ff8562;
  --v-accent-subtle: rgba(255, 106, 61, 0.15);
}