/**
 * Design Tokens - NOSIGNER Clone
 * Inspired by nosigner.com
 * Japanese minimalist aesthetic
 */

:root {
  /* Colors */
  --color-bg-primary: #000000;
  --color-bg-secondary: #0a0a0a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #cccccc;
  --color-text-muted: #999999;
  --color-border: #333333;
  --color-border-light: #222222;
  --color-accent: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.6);

  /* Typography */
  --font-primary: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-secondary: 'Noto Sans JP', 'Inter', sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-lg: 1.25rem;
  /* 20px */
  --font-size-xl: 1.5rem;
  /* 24px */
  --font-size-2xl: 2rem;
  /* 32px */
  --font-size-3xl: 2.5rem;
  /* 40px */
  --font-size-4xl: 3.25rem;
  /* 52px */
  --font-size-5xl: 3.375rem;
  /* 54px */

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --line-height-loose: 1.8;

  /* Spacing - Japanese Ma principle (generous negative space) */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 2rem;
  /* 32px */
  --space-xl: 2.5rem;
  /* 40px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */
  --space-4xl: 6rem;
  /* 96px */
  --space-5xl: 8rem;
  /* 128px */
  --space-6xl: 10rem;
  /* 160px */

  /* Layout */
  --max-width-content: 1440px;
  --max-width-text: 800px;
  --header-height: 80px;
  --section-padding-mobile: 3rem 1.5rem;
  --section-padding-tablet: 4rem 2.5rem;
  --section-padding-desktop: 6rem 2.5rem;

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.5rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slowest: 800ms ease;

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-header: 101;
  --z-overlay: 200;
  --z-modal: 300;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Breakpoints (for reference in media queries) */
  --breakpoint-mobile: 375px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
  --breakpoint-wide: 1440px;
}