:root {
  --bg: #0d0d1a;
  --bg-alt: #14141f;
  --accent: #f5a623;
  --accent-dim: rgba(245,166,35,0.15);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.45);
  --text-faint: rgba(255,255,255,0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.3); border-radius: 3px; }

::selection { background: rgba(245,166,35,0.25); color: #fff; }

img { max-width: 100%; }
button { cursor: pointer; border: none; font-family: inherit; }
a { color: inherit; text-decoration: none; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f5a623;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}
