/* Auto-generated: Design Tokens Bundle */

/* ArcBlock Design Tokens: Colors — Black & White Minimalist */
:root {
  /* Brand — monochrome, no accent color */
  --color-primary: #000000;
  --color-primary-dark: #000000;
  --color-primary-light: #333333;

  /* Neutral */
  --color-gray-50: #FAFAFA;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E8E8E8;
  --color-gray-300: #D4D4D4;
  --color-gray-400: #A3A3A3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  --color-gray-950: #0A0A0A;

  /* Semantic */
  --color-text: var(--color-gray-900);
  --color-text-secondary: var(--color-gray-500);
  --color-text-inverse: #FFFFFF;
  --color-surface: #FFFFFF;
  --color-surface-secondary: var(--color-gray-50);
  --color-border: var(--color-gray-200);
  --color-link: var(--color-gray-900);
  --color-link-hover: var(--color-gray-600);

  /* Status */
  --color-success: #171717;
  --color-warning: #171717;
  --color-error: #171717;
}


/* ArcBlock Design Tokens: Typography — Elegant Minimalist */
:root {
  /* Font families */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Newsreader', 'Georgia', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font sizes — slightly larger for breathing room */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1.0625rem; /* 17px */
  --text-lg: 1.1875rem;   /* 19px */
  --text-xl: 1.375rem;    /* 22px */
  --text-2xl: 1.75rem;    /* 28px */
  --text-3xl: 2.25rem;    /* 36px */
  --text-4xl: 2.75rem;    /* 44px */
  --text-5xl: 3.5rem;     /* 56px */
  --text-6xl: 4.5rem;     /* 72px */

  /* Line heights — more generous for breathing */
  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Font weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Letter spacing */
  --tracking-tight: -0.03em;
  --tracking-normal: -0.01em;
  --tracking-wide: 0.08em;
}


/* ArcBlock Design Tokens: Spacing & Layout — Generous Breathing Room */
:root {
  /* Spacing scale */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */
  --space-40: 10rem;    /* 160px */

  /* Container — narrower for elegance */
  --container-max: 1080px;
  --container-padding: var(--space-6);

  /* Border radius — minimal */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --radius-full: 9999px;

  /* Shadows — very subtle */
  --shadow-sm: none;
  --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Breakpoints (for reference, used in media queries) */
  /* --bp-sm: 640px */
  /* --bp-md: 768px */
  /* --bp-lg: 1024px */
  /* --bp-xl: 1280px */
}


/* Light theme (default) — pure white */
:root,
[data-theme="light"] {
  --theme-bg: #FFFFFF;
  --theme-bg-secondary: #FAFAFA;
  --theme-text: #171717;
  --theme-text-secondary: #737373;
  --theme-border: #E8E8E8;
}


/* Dark theme — pure black */
[data-theme="dark"] {
  --theme-bg: #0A0A0A;
  --theme-bg-secondary: #171717;
  --theme-text: #F5F5F5;
  --theme-text-secondary: #A3A3A3;
  --theme-border: #262626;
}


