:root {
  /* Core */
  --m-void: #0c0c0c;
  --m-deep: #1a1a2e;
  --m-midnight: #16213e;
  --m-elevated: #222244;
  --m-surface: #2a2a4a;

  /* Accent */
  --m-emerald: #00e5a0;
  --m-emerald-hover: #00c98c;
  --m-cyan: #00c4d4;
  --m-violet: #7c5cfc;
  --m-coral: #ff6b6b;
  --m-amber: #ffc857;
  --m-purple: #A855F7;
  --m-magenta: #EC4899;

  /* Text */
  --m-text: #f5f5f7;
  --m-text-secondary: #a0a0b8;
  --m-text-muted: #666680;
  --m-text-dim: #555566;

  /* Glass */
  --m-glass-bg: rgba(255,255,255,0.03);
  --m-glass-border: rgba(255,255,255,0.06);

  /* Typography */
  --m-font: 'Inter', system-ui, -apple-system, sans-serif;
  --m-font-mono: 'Fira Code', monospace;

  /* Layout */
  --m-page-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--m-font);
  background: var(--m-void);
  color: var(--m-text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  outline: none;
  box-shadow: none;
  border: none;
}
