/* ============================================
   EVERMIT — Variables & Reset
   ============================================ */

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

:root {
  --g1: #0a0f0a;
  --g2: #0d1a0e;
  --green: #3ddc6e;
  --green-mid: #28b954;
  --green-dark: #1a7a38;
  --green-glow: rgba(61, 220, 110, 0.18);
  --green-glow2: rgba(61, 220, 110, 0.08);
  --white: #f0faf2;
  --white-dim: rgba(240, 250, 242, 0.7);
  --white-faint: rgba(240, 250, 242, 0.08);
  --glass-bg: rgba(16, 30, 17, 0.55);
  --glass-border: rgba(61, 220, 110, 0.15);
  --glass-border-hover: rgba(61, 220, 110, 0.45);
  --blur: blur(18px);
  --radius: 20px;
  --radius-lg: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--g1);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

section, nav, footer {
  position: relative;
  z-index: 1;
}
