/* =============================================================================
   2. TYPOGRAPHY SYSTEM - Bold, Large, Hierarchical
   ============================================================================= */

/* Import Inter font for superior readability */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  /* Remove overflow-x hidden to prevent scroll issues */
  /* Ensure proper scrolling on mobile */
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Remove overflow-x hidden to prevent scroll issues */
  position: relative;
  min-height: 100vh;
}

/* Large, Bold Headings for Maximum Impact */
h1, .h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  line-height: 1.1;
  color: var(--color-primary);
  margin: 0 0 var(--space-4) 0;
  letter-spacing: -0.025em;
}

h2, .h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 var(--space-3) 0;
  letter-spacing: -0.02em;
}

h3, .h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: var(--color-primary);
  margin: 0 0 var(--space-3) 0;
}

h4, .h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0 0 var(--space-2) 0;
}

h5, .h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0 0 var(--space-2) 0;
}

h6, .h6 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0 0 var(--space-2) 0;
}

/* Body Text with Better Hierarchy */
p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin: 0 0 var(--space-3) 0;
  color: var(--color-gray-700);
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
}

.text-large {
  font-size: var(--font-size-md);
  line-height: 1.6;
}

.text-small {
  font-size: var(--font-size-xs);
  line-height: 1.5;
}

