:root {
  --bg: #080810;
  --fg: #ffffff;
  --violet: #8b5cf6;
  --mint: #10b981;
  --muted: rgba(255,255,255,0.45);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.5); }

::selection { background: rgba(139,92,246,0.3); color: #fff; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--mint);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
