:root {
  /* Colors */
  --primary-blue: #0066ff;
  --primary-purple: #5856d6;
  --success-green: #34c759;
  --success-green-alt: #00a86b;
  --warning-orange: #ff9500;
  --error-red: #ff3b30;
  
  /* Neutrals */
  --black: #000000;
  --dark: #333333;
  --medium: #666666;
  --light: #999999;
  --border: #e5e5e5;
  --bg: #f5f5f5;
  --white: #ffffff;
  
  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 6px;
  --space-3: 8px;
  --space-4: 10px;
  --space-5: 12px;
  --space-6: 16px;
  --space-7: 20px;
  --space-8: 24px;
  --space-9: 32px;
  --space-10: 40px;
  
  /* Radius */
  --radius-chip: 4px;
  --radius-card: 8px;
  --radius-button: 6px;
  --radius-bubble: 12px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 2px 8px rgba(0, 102, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.5;
}

h1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

h2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

small {
  font-size: 12px;
  line-height: 1.5;
}

button {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

input, textarea {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  font-family: inherit;
}

.micro {
  font-size: 11px;
}

.meta {
  font-size: 10px;
}

.uppercase-meta {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 10px;
}
