/* ══════════════════════════════════════════
   VARIABLES & RESET — Bruno Moura Branding
   ══════════════════════════════════════════ */
:root {
  /* Backgrounds — dark green scale */
  --bg-primary: #11190D;
  --bg-secondary: #151E10;
  --bg-tertiary: #1C2716;
  --bg-card: #172012;
  --bg-card-hover: #1E2A18;
  --bg-input: #141D0F;

  /* Borders */
  --border: #263320;
  --border-light: #344530;
  --border-focus: #E2FF3D;

  /* Text */
  --text-primary: #F0F1EB;
  --text-secondary: #D2D3C3;
  --text-tertiary: #6B7060;

  /* Accent — lime green */
  --accent: #E2FF3D;
  --accent-dim: rgba(226,255,61,0.08);
  --accent-hover: #EAFF66;
  --accent-glow: rgba(226,255,61,0.04);
  --accent-text: #11190D;

  /* Semantic */
  --success: #4ADE80;
  --success-dim: rgba(74,222,128,0.10);
  --danger: #F87171;
  --danger-dim: rgba(248,113,113,0.10);

  /* Layout */
  --sidebar-width: 300px;
  --content-max: 700px;

  /* Typography — Inter for everything */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

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

a { color: inherit; text-decoration: none; }

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