/* Base styles shared across all pages */

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

:root {
  /* Gruvbox Dark Palette */
  --bg-hard: #1d2021; --bg: #282828; --bg-soft: #32302f;
  --bg1: #3c3836; --bg2: #504945; --bg3: #665c54; --bg4: #7c6f64;
  --fg: #ebdbb2; --fg2: #d5c4a1; --fg3: #bdae93; --fg4: #a89984; --gray: #928374;
  --red: #fb4934; --red-dim: #cc241d;
  --green: #b8bb26; --green-dim: #98971a;
  --yellow: #fabd2f; --yellow-dim: #d79921;
  --blue: #83a598; --blue-dim: #458588;
  --purple: #d3869b; --purple-dim: #b16286;
  --aqua: #8ec07c; --aqua-dim: #689d6a;
  --orange: #fe8019; --orange-dim: #d65d0e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-hard); color: var(--fg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  padding-top: 40px; /* Space for trust funding bar */
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
