body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  line-height: var(--line-height);
  color: var(--color-gray-800);
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
}

h1 {
  font-size: var(--fs-4xl);
  font-weight: 800;
}

h2 {
  font-size: var(--fs-3xl);
  font-weight: 700;
}

h3 {
  font-size: var(--fs-xl);
  font-weight: 600;
}

h4 {
  font-size: var(--fs-lg);
  font-weight: 600;
}

p {
  color: var(--color-gray-600);
  line-height: var(--line-height);
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: var(--space-md) auto 0;
}

.highlight {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--fs-2xl);
  }
  h2 {
    font-size: var(--fs-xl);
  }
  h3 {
    font-size: var(--fs-lg);
  }
}
