body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 400;
}

main {
  display: flow-root;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + var(--space-lg));
  padding-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scroll-margin-top: 0;
  box-sizing: border-box;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  max-width: 20ch;
  margin-bottom: var(--space-md);
}

.section-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-sm);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-text-primary);
  color: var(--color-surface);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--color-text-secondary);
  outline-offset: 3px;
}

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