/**
 * Inertia Design Tokens
 * Extracted from globals.css and design system
 * Contains all CSS custom properties and base styles
 */

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300;400;500;600;700&display=swap');

:root {
  /* MVP Palette (5 colors only) */
  --void: #0A0A0A;
  --steel: #1A1F2E;
  --frost: #F5F5F5;
  --cyan: #00E5FF;
  --gold: #FFD700;

  /* Spacing */
  --space-unit: 8px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-slow: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

  /* Typography */
  --font-heading: 'Inter Tight', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* Global reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--frost);
  font-family: var(--font-body);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--void);
}

::-webkit-scrollbar-thumb {
  background: var(--steel);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}