﻿/* Wovrex Design Tokens */
:root {
  /* Color */
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-elevated: #161616;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f0ede8;
  --muted: rgba(240, 237, 232, 0.58);
  --accent: #3b9eff;
  --accent-dim: rgba(59, 158, 255, 0.12);
  --accent-glow: rgba(59, 158, 255, 0.15);
  --on-accent: #ffffff;

  /* Layout */
  --max-width: 1280px;
  --content-narrow: 720px;
  --content-prose: 640px;

  /* Spacing scale (8pt grid) */
  --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-section: clamp(64px, 8vw, 120px);

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-full: 999px;

  /* Elevation */
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.45);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.15s;
  --duration-base: 0.25s;
  --duration-slow: 0.4s;

  /* Typography */
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --font-display: var(--serif);
  --font-ui: var(--sans);
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-lg: 17px;
  --text-xl: clamp(36px, 4vw, 60px);
  --text-display: clamp(36px, 4.2vw, 58px);
  --tracking-label: 0.12em;
  --tracking-tight: -0.02em;
  --leading-body: 1.7;
  --leading-heading: 1.1;
}
