:root {
  --bg: #faf8f5;
  --fg: #1a2744;
  --fg-light: #5a6a7e;
  --accent: #e07b39;
  --accent-bg: #fdf0e8;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Nunito', 'Segoe UI', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Nunito', 'Segoe UI', sans-serif; font-weight: 900; letter-spacing: -0.03em; }

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(26,39,68,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26,39,68,0.4); }

::selection { background: var(--accent); color: white; }
