body {
  background: var(--black);
  color: var(--w);
  font-family: var(--ff-b);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--g1);
  color: #fff;
}

::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: var(--black) }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px }
::-webkit-scrollbar-thumb:hover { background: var(--g1) }

/* Section headings */
.eyebrow {
  font-family: var(--ff-m);
  font-size: 11px;
  font-weight: 500;
  color: var(--g3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--g1);
}

.sec-title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: .75rem;
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--gl);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.green { color: var(--g3) }
