@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #1e3a5f;
  --navy-dark: #152a45;
  --navy-light: #2d4a6f;
  --amber: #d4a84b;
  --amber-light: #e8c97d;
  --amber-dark: #b8923f;
  --cream: #faf8f5;
  --warm-gray: #f5f3f0;
  --text-primary: #2c2c2c;
  --text-secondary: #5a5a5a;
  --text-light: #888888;
  
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  
  --section-padding: clamp(4rem, 10vw, 8rem);
  --content-max-width: 900px;
  --wide-max-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(30, 58, 95, 0.1);
}

.nav-inner {
  max-width: var(--wide-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo - responsive sizing to fit on all screens */
.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  flex: 1;
  padding-right: 1rem;
}

/* Hamburger toggle - ALWAYS visible */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate hamburger to X when open */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav links - ALWAYS a dropdown menu */
.nav-links {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  padding: 1rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  display: none;
  list-style: none;
  gap: 0.25rem;
}

/* Show nav links when open */
.nav-links.open {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(30, 58, 95, 0.05);
}

.nav-links a.active {
  color: var(--navy);
  background: rgba(30, 58, 95, 0.08);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 168, 75, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 168, 75, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 168, 75, 0.2);
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber-light);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* Sections */
.section {
  padding: var(--section-padding) 1.5rem;
  position: relative;
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
}

.section-navy .section-number {
  color: var(--amber);
}

.section-navy .section-title {
  color: white;
}

.section-navy .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-navy .prose p {
  color: rgba(255, 255, 255, 0.85);
}

.section-navy .lead {
  color: rgba(255, 255, 255, 0.9);
}

.section-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.section-navy .section-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-number {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-number::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Prose */
.prose {
  margin-bottom: 2.5rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Subsections */
.subsection {
  margin-bottom: 4rem;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.subsection-title::before {
  content: '';
  width: 4px;
  height: 1.25rem;
  background: var(--amber);
  border-radius: 2px;
}

.section-navy .subsection-title {
  color: white;
}

/* Key Stats Grid */
.key-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.key-stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.key-stat-card.accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border: none;
}

.key-stat-card.accent .key-stat-value {
  color: var(--amber);
}

.key-stat-card.accent .key-stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.key-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.key-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Stat Highlight */
.stat-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.stat-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 100%);
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Charts */
.chart-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.chart-container.full-width {
  max-width: none;
}

.chart-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.chart-subtitle {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.chart-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.two-column-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Bar Chart */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bar-item {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  align-items: center;
  gap: 1rem;
}

.bar-label {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.bar-track {
  height: 32px;
  background: var(--warm-gray);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 6px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.primary {
  background: linear-gradient(90deg, var(--amber-dark) 0%, var(--amber) 100%);
}

.bar-fill.animated {
  width: var(--bar-width);
}

.bar-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* Donut Charts */
.donut-chart-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.donut-chart {
  width: 160px;
  height: 160px;
  transform: rotate(-90deg);
}

.donut-segment {
  transition: stroke-dasharray 1s ease;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.legend-color.navy { background: var(--navy); }
.legend-color.navy-light { background: var(--navy-light); }
.legend-color.amber { background: var(--amber); }
.legend-color.amber-dark { background: var(--amber-dark); }
.legend-color.gray { background: var(--text-light); }

/* Stacked Bar */
.stacked-bar-wrapper {
  margin-top: 1rem;
}

.stacked-bar {
  display: flex;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.stacked-segment {
  width: var(--width);
  background: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 1s ease;
}

.segment-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
}

.stacked-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stacked-legend .legend-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.stacked-legend .legend-color {
  width: 100%;
  height: 4px;
  border-radius: 2px;
}

.stacked-legend small {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.comparison-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.comparison-card.shelter {
  border-top: 4px solid var(--navy);
}

.comparison-card.private {
  border-top: 4px solid var(--amber);
}

.comparison-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.comparison-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.comparison-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.compensation-total {
  text-align: center;
  padding: 1.5rem;
  background: var(--warm-gray);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.compensation-total-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.compensation-total-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.comparison-card.shelter .compensation-total-value {
  color: var(--navy);
}

.comparison-card.private .compensation-total-value {
  color: var(--amber-dark);
}

.compensation-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compensation-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
}

.compensation-line-label {
  color: var(--text-secondary);
}

.compensation-line-value {
  font-weight: 600;
  color: var(--text-primary);
}

.compensation-line-value.muted {
  color: var(--text-light);
  font-weight: 400;
}

/* Gap Callout */
.gap-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gap-callout::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.15) 0%, transparent 70%);
}

.gap-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.gap-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  position: relative;
}

.gap-context {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

/* Callout Stat */
.callout-stat {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
}

.callout-stat-value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.callout-stat-context {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Pull Quote */
.pull-quote {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: white;
  border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  position: relative;
}

.section-navy .pull-quote {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
}

.pull-quote-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
}

.section-navy .pull-quote-text {
  color: white;
}

.pull-quote-attribution {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.section-navy .pull-quote-attribution {
  color: rgba(255, 255, 255, 0.7);
}

.pull-quote-attribution strong {
  color: var(--text-primary);
  font-weight: 600;
}

.section-navy .pull-quote-attribution strong {
  color: white;
}

/* Featured Quote */
.featured-quote {
  text-align: center;
  padding: 3rem;
  margin: 3rem 0;
  background: rgba(212, 168, 75, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 75, 0.2);
}

.section-navy .featured-quote {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.featured-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-navy .featured-quote-text {
  color: white;
}

.featured-quote-attribution {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.section-navy .featured-quote-attribution {
  color: rgba(255, 255, 255, 0.7);
}

/* Insight Box */
.insight-box {
  background: var(--warm-gray);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.insight-box-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insight-box-title svg {
  width: 16px;
  height: 16px;
}

.insight-box p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Voices Section */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.voice-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-card:last-child {
  grid-column: span 2;
}

.voice-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 75, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.voice-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--amber);
}

.voice-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.voice-card-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.voice-card-quote {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1rem;
  border-left: 2px solid var(--amber);
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.icon-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.icon-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 58, 95, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.icon-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.icon-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Multiplier Demo */
.multiplier-demo {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.multiplier-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.multiplier-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--warm-gray);
  border-radius: 8px;
}

.multiplier-item.highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.multiplier-item.highlight .multiplier-value {
  color: var(--amber);
}

.multiplier-item.highlight .multiplier-label {
  color: rgba(255, 255, 255, 0.8);
}

.multiplier-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.multiplier-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.multiplier-operator {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 300;
}

.multiplier-context {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Big Comparison */
.big-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.big-comparison-item {
  text-align: center;
  padding: 2rem 3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.big-comparison-item.highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border: none;
}

.big-comparison-item.highlight .big-comparison-value {
  color: var(--amber);
}

.big-comparison-item.highlight .big-comparison-label,
.big-comparison-item.highlight .big-comparison-context {
  color: rgba(255, 255, 255, 0.8);
}

.big-comparison-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.big-comparison-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.big-comparison-context {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.big-comparison-vs {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Highlight Stat */
.highlight-stat {
  text-align: center;
  padding: 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  border-radius: 12px;
}

.highlight-stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.highlight-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

/* Timeline */
.timeline {
  margin: 3rem 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(30, 58, 95, 0.1);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
  position: relative;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  right: -31px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--amber);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline-marker span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.timeline-marker small {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.timeline-content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.solution-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.solution-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.solution-card ul {
  list-style: none;
}

.solution-card li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.solution-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.solution-list {
  list-style: none;
}

.solution-list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.solution-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.875rem;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* Quote Cards Grid */
.quote-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.quote-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.quote-card h5 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.quote-card blockquote {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--amber);
}

/* Conclusion */
.conclusion-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

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

.conclusion-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.conclusion-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  text-align: center;
}

.cta-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cta-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.cta-item strong {
  display: block;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.cta-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Final Statement */
.final-statement {
  text-align: center;
  padding: 3rem;
  background: rgba(212, 168, 75, 0.1);
  border-radius: 12px;
  margin: 3rem 0;
}

.final-statement p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: white;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.site-footer p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Responsive - Only for layout changes, NOT navigation */
@media (max-width: 900px) {
  .key-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chart-row,
  .two-column-charts,
  .comparison-grid,
  .voices-grid,
  .icon-grid,
  .quote-cards-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  
  .voice-card:last-child {
    grid-column: span 1;
  }
  
  .stacked-legend {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    width: 40px;
  }
  
  .timeline-marker::after {
    right: -11px;
  }
  
  .timeline-marker span {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .stat-highlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  
  .stat-value {
    font-size: 2rem;
    min-width: 80px;
  }
  
  .bar-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .bar-value {
    text-align: left;
  }
  
  .key-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .donut-chart-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .big-comparison {
    flex-direction: column;
    gap: 1rem;
  }
  
  .big-comparison-vs {
    display: none;
  }
  
  .multiplier-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .multiplier-operator {
    transform: rotate(90deg);
  }
  
  .conclusion-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pull-quote {
    padding: 1.5rem;
  }
  
  .pull-quote::before {
    font-size: 3rem;
    left: 1rem;
  }
}

/* Pie Charts */
.pie-chart-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pie-chart {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;
}

.pie-chart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}