body {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Headings — Barlow Condensed */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--color-text);
}

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

/* Body text — Barlow */
p {
  font-family: 'Barlow', sans-serif;
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 1.25em;
}

p:last-child { margin-bottom: 0; }

/* Links */
a {
  color: var(--color-text);
  transition: color var(--transition-fast);
}

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

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

/* Section labels — the technical numbering */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  letter-spacing: 4px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.section-label--accent {
  color: var(--color-accent);
}

.section-label--center {
  justify-content: center;
}

.section-label--center::before {
  display: none;
}

/* Divider bar */
.accent-bar {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 20px;
}

/* Strong */
strong, b { font-weight: 600; }

/* Small text */
small {
  font-size: var(--text-xs);
  letter-spacing: 2px;
}
