:root {
  --bg: #0D0D0D;
  --fg: #ffffff;
  --accent: #C8FF5A;
  --accent-2: #F5A623;
  --text-muted: rgba(255,255,255,0.55);
  --text-faint: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #C8FF5A #0D0D0D;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #C8FF5A33; border-radius: 3px; }

::selection { background: rgba(200,255,90,0.2); color: #fff; }

html:focus-visible {
  outline: 2px solid #C8FF5A;
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; }

.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

* { transition: color 0.2s ease; }
