/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* ==========================================================================
   Tokens
   ========================================================================== */

:root {
  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* Type ramp */
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;

  /* Colors */
  --color-bg: #fff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-code-bg: #f3f4f6;
  --color-surface: #f9fafb;
  --color-surface-subtle: #f9fafb;

  /* Layout */
  --prose-width: 65ch;

  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SFMono-Regular", Menlo, Consolas, monospace;
  --tracking-wide: 0.05em;

  /* Components */
  --radius: 0.375rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);

  /* Motion */
  --duration-fast: 150ms;
  --duration-normal: 200ms;
}

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

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #1a1a1a;
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-border: #374151;
    --color-accent: #60a5fa;
    --color-accent-hover: #93c5fd;
    --color-code-bg: #1f2937;
    --color-surface: #111827;
    --color-surface-subtle: #1e1e1e;
  }
}

[data-theme="dark"] {
  --color-bg: #1a1a1a;
  --color-text: #e5e7eb;
  --color-text-muted: #9ca3af;
  --color-border: #374151;
  --color-accent: #60a5fa;
  --color-accent-hover: #93c5fd;
  --color-code-bg: #1f2937;
  --color-surface: #111827;
  --color-surface-subtle: #1e1e1e;
}

/* ==========================================================================
   Small Screen Overrides
   ========================================================================== */

@media (max-width: 39.999rem) {
  :root {
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --space-7: 2rem;
    --space-8: 2.5rem;
  }
}
