/**
 * OJAS Design Tokens
 * #080808 Black, #111111 Surface, #F5F3ED Warm White, #858585 Muted, #E52318 Accent Red, #242424 Border
 */

:root {
  /* Colors */
  --bg-primary: #080808;
  --bg-surface: #111111;
  --bg-surface-elevated: #161616;
  --bg-input: #141414;
  
  --text-primary: #F5F3ED;
  --text-muted: #858585;
  --text-dim: #555555;
  
  --brand-red: #E52318;
  --brand-red-hover: #cf1c12;
  --brand-red-dim: rgba(229, 35, 24, 0.12);

  --border-default: #242424;
  --border-subtle: #1a1a1a;
  --border-focus: #444444;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --text-2xs: 0.6875rem; /* 11px */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 2rem;      /* 32px */
  --text-4xl: 2.75rem;   /* 44px */
  --text-hero: clamp(2.8rem, 7.5vw, 6.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --container-max: 1280px;
  --container-narrow: 840px;

  /* Clean transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 2px;
  --radius-md: 4px;
}
