/* src/css/base/typography.css */
body {
  font-family: var(--font-family-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-main);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--color-text-main);
  letter-spacing: -0.04em; /* Tighter letter spacing like Vercel/Stripe */
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.text-gradient {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.25rem;
}
