body {
  font-family: var(--font-primary);
  background-color: var(--bg);
  color: var(--fg);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-section);
}

h3 {
  font-size: var(--text-card);
}

h4 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1;
}

p {
  color: var(--muted-fg);
  line-height: 1.6;
}

a {
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent);
}

strong {
  font-weight: 700;
}

img {
  height: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--accent);
  color: var(--accent-fg);
  padding: var(--space-2) var(--space-4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  z-index: calc(var(--z-noise) + 1);
  border: var(--border-width) solid var(--accent);
}

.skip-link:focus {
  top: var(--space-4);
  color: var(--accent-fg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
