/* Base Typography & Defaults */
body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-dark);
  background: var(--color-bg-light);
}

h1, h2, h3, h4 { line-height: var(--line-height-tight); font-weight: 700; color: var(--color-primary); }
h1 { font-size: var(--text-hero); font-weight: 800; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { color: var(--color-text-dark-muted); line-height: var(--line-height-relaxed); }
strong { font-weight: 600; color: var(--color-text-dark); }

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

/* Utility */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 var(--space-6); }
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-dark-muted); }

/* Sections */
.section { padding: var(--space-24) 0; }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-light); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-text-light); }
.section-dark p { color: var(--color-text-light-muted); }
.section-alt { background: var(--color-bg-card); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-12); }
.section-header p { margin-top: var(--space-3); font-size: var(--text-lg); }
