/* =========================================================
   TOKENS / DESIGN SYSTEM
   File: /css/globals/tokens.css
   ========================================================= */

:root {
  /* --- Typography --- */
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 3rem;

  /* Line Heights */
  --lh-tight: 1.2;
  --lh-normal: 1.55;
  --lh-relaxed: 1.75;

  /* Tracking */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;

  /* --- Colors: The "Dark Chrome" Palette --- */
  --accent: #6ee7ff;
  --accent-soft: rgba(110, 231, 255, 0.12);
  --accent-border: rgba(110, 231, 255, 0.35);
  
  /* Ink (Typography & Icons) */
  --ink-92: rgba(15, 23, 42, 0.92);   /* Headings */
  --ink-72: rgba(15, 23, 42, 0.72);   /* Body */
  --ink-58: rgba(15, 23, 42, 0.58);   /* Secondary/Meta */
  --ink-35: rgba(15, 23, 42, 0.35);   /* Faded/Disabled */

  /* Surface (Backgrounds) */
  --surface-page: #f8fafc;
  --surface-card: #ffffff;
  --surface-dark: #020617;           /* Header/Footer/Sidebar */
  --surface-glass: rgba(255, 255, 255, 0.94);

  /* Borders */
  --border-strong: rgba(15, 23, 42, 0.16);
  --border-medium: rgba(15, 23, 42, 0.10);
  --border-soft: rgba(15, 23, 42, 0.06);
  --border-dark: rgba(255, 255, 255, 0.12);

  /* --- Elevation & Shadows --- */
  --shadow-sm: 0 2px 8px rgba(2, 6, 23, 0.05);
  --shadow-md: 0 10px 25px rgba(2, 6, 23, 0.08);
  --shadow-lg: 0 16px 44px rgba(2, 6, 23, 0.12);

  /* --- Spacing Scale --- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* --- Layout --- */
  --max-width: 1280px;
  --container-narrow: 840px;
  --container-form: 980px;

  /* --- Motion & Radius --- */
  --t-fast: 160ms;
  --t-med: 280ms;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* --- Components Constants --- */
  --btn-h: 44px;
  --focus-ring: 0 0 0 4px var(--accent-soft);
}
:root {
  /* Premium Typography Upgrade */
  --font-heading: "Playfair Display", serif; /* Or 'EB Garamond' */
  --font-body: "Inter", sans-serif;
  
  /* Refined Editorial Palette */
  --ink-92: #0f172a;
  --accent-gold: #c5a059; /* Optional: a luxury muted gold accent */
  
  /* Editorial Spacing */
  --space-section: 120px;
}