/* ==========================================================================
   PREMIUM TYPOGRAPHY SYSTEM
   ========================================================================== */

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
}

/* Headings System - Tight letter-spacing for premium modern look */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

h5 {
  font-size: var(--text-lg);
  font-weight: 500;
}

h6 {
  font-size: var(--text-base);
  font-weight: 500;
}

/* Narrative Story Font Style - Maximizes empathy and readability */
.text-story {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Display Fonts for Massive Hero Headlines */
.text-display {
  font-size: var(--text-5xl);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Premium Gradient Typography for Core Statements */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-gradient-hope {
  background: linear-gradient(135deg, var(--primary) 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Micro-copy and Labels */
.text-muted-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.text-sm-body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Bold Trust Highlight text */
.highlight-trust {
  color: var(--accent);
  font-weight: 700;
}

.highlight-success {
  color: var(--success);
  font-weight: 700;
}
