/**
 * Minagi Rei Design System - Design Tokens
 * Source of truth for all color, type, spacing, and motion values.
 */
:root {
  --color-bg: #FAFCFE;
  --color-surface: #EEF5FB;
  --color-blue-light: #C8DDEF;
  --color-blue-mid: #4A7FA5;
  --color-blue-dark: #1A3A5C;
  --color-text: #2C3E50;
  --color-muted: #7A909E;
  --color-white: #FFFFFF;

  --glass-bg: rgba(255, 255, 255, 0.42);
  --glass-border: rgba(140, 210, 235, 0.60);

  --bg-from: #ddf0f8;
  --bg-to: #bcd9ef;
  --text-main: var(--color-blue-dark);
  --text-sub: var(--color-blue-mid);
  --accent: #68c4df;
  --accent-hover: #48aecf;

  --font-jp: "Shippori Mincho", serif;
  --font-en: "Cormorant Garamond", serif;
  --font-sans: "Josefin Sans", sans-serif;
  --font-body: "Noto Serif JP", serif;

  --text-xs: 9px;
  --text-sm: 11px;
  --text-base: 14px;
  --text-md: 18px;
  --text-lg: 22px;
  --text-xl: 32px;
  --text-2xl: 40px;
  --text-3xl: 56px;

  --ls-tight: 0.08em;
  --ls-base: 0.12em;
  --ls-wide: 0.22em;
  --ls-wider: 0.35em;
  --ls-widest: 0.55em;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  --z-base: 1;
  --z-overlay: 100;
  --z-drawer: 101;
  --z-fixed: 200;
  --z-loading: 9999;

  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.25s;
  --dur-base: 0.45s;
  --dur-slow: 0.8s;
  --dur-enter: 1s;

  --nav-height: 48px;
}
