:root {
  /* Colors */
  --bg-primary: #FDFDFD;
  --bg-secondary: #FFF6EE;
  /* Warm cream */
  --text-primary: #000000;
  --text-muted: #4A4A4A;

  --accent-green: #2E7D32;
  /* Deep natural plant green */
  --accent-teal: #00E5FF;
  --accent-pink: #FF00E5;

  /* Neo-Brutalist Borders & Shadows */
  --border-thick: 3px solid var(--text-primary);
  --shadow-brutal: 6px 6px 0px 0px var(--text-primary);
  --shadow-brutal-hover: 2px 2px 0px 0px var(--text-primary);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Inter', system-ui, sans-serif;
  /* We will use font-weight 800/900 */

  /* Spacing */
  --nav-height: 80px;
  --section-padding: 6rem;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-curtain: 1s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Base resets & Graph Paper Background */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;

  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  scrollbar-width: none;

  /* Subtle Graph Paper Grid */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center top;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Typography Basics */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.accent-text {
  color: var(--accent-green);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding) 0;
}

/* Utility for Organic Blobs (Aurora) */
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}