/*
 * Copyright (c) 2026 Spectral Labs LLC
 * Author: Aaron Tarajos
 * All rights reserved.
 */

/* CSS Variables and Reset */

:root {
  --black: #050505;
  --white: #e8e8e8;
  --green: #082e1a;
  --green-light: #0d4a2b;
  --green-glow: #14f07540;
  --green-accent: #14f075;
  --gray: #888;
  --gray-dark: #111;
  --gray-border: #1e1e1e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Noise overlay effect */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}
