/* ==========================================================================
   UNIFIED CONCEPTS - TYPOGRAPHY STYLES
   Brand System: Navy headings, Teal kickers, proper hierarchy
   ========================================================================== */

/* Typography Scale */
h1, .h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); /* 40px to 64px */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
}

h2, .h2 {
  font-size: clamp(2rem, 4vw, 3.25rem); /* 32px to 52px */
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--brand-navy);
  max-width: 700px;
}

h3, .h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* 24px to 40px */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}

h4, .h4 {
  font-size: clamp(1.25rem, 2vw, 2rem); /* 20px to 32px */
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--brand-navy);
}

h5, .h5 {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--brand-navy);
}

h6, .h6 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  line-height: 1.4;
  color: var(--brand-navy);
}

p, .body-text {
  font-size: 1.125rem; /* 18px */
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 650px;
}

.body-sm {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: var(--text-secondary);
}

.caption {
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
  color: var(--text-muted);
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Badge & Kicker Utility */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-teal);
  margin-bottom: var(--space-2);
}

.section-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--brand-teal);
  border-radius: 2px;
}

/* Text Accent & Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-white { color: #ffffff !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
