:root {
  --coral-start: #E8A87C;
  --coral-mid: #E8937C;
  --coral-end: #D86B8C;
  --purple-start: #7B5B9A;
  --purple-end: #5B7B9A;
  --cream: #FDF9F6;
  --warm-white: #FFFBF8;
  --text-dark: #2D2A3E;
  --text-muted: #6B6880;
  --text-light: #9994A8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Prevent layout shift from images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Logo Styles */
.logo-mark {
  height: 36px;
  width: auto;
}

.logo-wordmark {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text-project {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.logo-text-stardust {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: rgba(255, 251, 248, 0.95);
  backdrop-filter: blur(20px);
}

.nav.scrolled {
  background: rgba(255, 251, 248, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--coral-end);
}

.nav-cta {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(216, 107, 140, 0.3);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(216, 107, 140, 0.4);
}

/* Mobile Menu */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 100;
}

.nav-mobile-toggle svg {
  width: 28px;
  height: 28px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-mobile-toggle.active svg {
  color: var(--coral-end);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 99;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 20px 0;
}

.mobile-menu-link {
  display: block;
  padding: 14px 24px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-menu-link:hover {
  background: var(--cream);
  color: var(--coral-end);
}

/* Tablet/Mobile breakpoint - simplified navigation */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: block;
  }
  
  /* Hide CTA buttons on mobile - users access through hamburger menu or contact section */
  .nav-cta-group {
    display: none !important;
  }
  
  .nav-cta,
  .nav-cta-secondary {
    display: none !important;
  }
  
  /* Mobile dynamic header - shrink more on scroll */
  .nav {
    padding: 16px 0;
  }
  
  .nav.scrolled {
    padding: 8px 0;
  }
  
  .nav.scrolled .logo-wordmark {
    height: 42px;
    transition: height 0.3s ease;
  }
  
  .logo-wordmark {
    height: 52.5px;
    transition: height 0.3s ease;
  }
}

/* Small tablet / large phone */
@media (max-width: 600px) {
  .nav.scrolled .logo-wordmark {
    height: 36px;
  }
  
  .logo-wordmark {
    height: 45px;
    transition: height 0.3s ease;
  }
}

/* Small phone - minimal styling */
@media (max-width: 440px) {
  .nav.scrolled .logo-wordmark {
    height: 33px;
  }
  
  .logo-wordmark {
    height: 41.25px;
    transition: height 0.3s ease;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse at 30% 50%, rgba(232, 168, 124, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at 70% 50%, rgba(123, 91, 154, 0.1) 0%, transparent 60%);
  filter: blur(80px);
  animation: float 25s ease-in-out infinite reverse;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(123, 91, 154, 0.08);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-start);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple-start);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(216, 107, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(216, 107, 140, 0.45);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  color: var(--coral-end);
}

.btn-secondary svg {
  transition: transform 0.2s;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-circle-outer {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(232, 168, 124, 0.2);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}

.hero-circle-inner {
  position: absolute;
  inset: 40px;
  border: 1px dashed rgba(123, 91, 154, 0.15);
  border-radius: 50%;
  animation: spin 40s linear infinite reverse;
}

.hero-main-visual {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.1) 0%, rgba(216, 107, 140, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-large {
  width: 45%;
  height: auto;
  opacity: 0.9;
}

.floating-stat {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.floating-stat-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.floating-stat-2 {
  bottom: 15%;
  right: -15%;
  animation-delay: 2s;
}

.floating-stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-stat-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.floating-stat-text {
  font-size: 13px;
  color: var(--text-muted);
}

.floating-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Stats Bar */
.stats-bar {
  background: white;
  padding: 48px 48px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.08), transparent);
}

.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-sublabel {
  font-size: 13px;
  color: var(--text-light);
}

/* Problem Section */
.problem-section {
  padding: 80px 48px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.problem-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--coral-end);
  margin-bottom: 20px;
}

.section-label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral-start), var(--coral-end));
  border-radius: 1px;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 600px;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.problem-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.problem-chart {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.chart-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
}

.chart-legend {
  display: flex;
  gap: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.growth-chart-visual {
  height: 250px;
  position: relative;
  margin-bottom: 20px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid-line {
  height: 1px;
  background: rgba(0,0,0,0.05);
}

.chart-curve {
  position: absolute;
  inset: 0;
}

.chart-footnote {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

/* Chart subtitle */
.chart-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Bar Chart Styles */
.bar-chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar {
  width: 90px;
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 16px;
  border: 2px solid;
  border-bottom: none;
}

.bar-undetected {
  height: 240px;
  background: linear-gradient(180deg, rgba(123, 91, 154, 0.15) 0%, rgba(123, 91, 154, 0.25) 100%);
  border-color: var(--purple-start);
}

.bar-detected {
  height: 120px;
  background: linear-gradient(180deg, rgba(74, 157, 124, 0.15) 0%, rgba(74, 157, 124, 0.25) 100%);
  border-color: #4A9D7C;
}

.bar-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.bar-undetected .bar-value {
  color: var(--purple-start);
}

.bar-detected .bar-value {
  color: #4A9D7C;
}

.bar-rate {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.bar-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 12px;
}

/* Horizontal reduction arrow */
.reduction-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.reduction-arrow svg {
  width: 70px;
  height: 40px;
  color: var(--coral-end);
}

.reduction-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.reduction-percent {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--coral-end);
}

.reduction-label {
  font-size: 12px;
  color: var(--coral-end);
}

/* Chart insight box */
.chart-insight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.1), rgba(216, 107, 140, 0.1));
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
}

.insight-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--coral-end);
}

.insight-icon svg {
  width: 100%;
  height: 100%;
}

.chart-insight p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  font-style: italic;
}

.problem-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.problem-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.problem-quote {
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.08) 0%, rgba(216, 107, 140, 0.08) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 32px;
  position: relative;
}

.problem-quote::before {
  content: '“';
  font-family: 'Fraunces', serif;
  font-size: 60px;
  color: var(--coral-end);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.problem-quote p {
  font-style: italic;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.problem-quote cite {
  font-size: 13px;
  font-style: normal;
  color: var(--text-light);
}

/* Research Section */
.research-section {
  padding: 80px 48px;
  background: white;
  position: relative;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.research-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.research-card-bg {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.research-card:hover .research-card-bg {
  opacity: 1;
}

.research-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.research-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.research-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
}

.research-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
}

.research-note {
  background: linear-gradient(135deg, rgba(123, 91, 154, 0.06) 0%, rgba(91, 123, 154, 0.06) 100%);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.research-note-icon {
  width: 24px;
  height: 24px;
  background: var(--purple-start);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.research-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Team Section */
.team-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
}

.team-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(123, 91, 154, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.team-header .section-title {
  margin-left: auto;
  margin-right: auto;
}

.team-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.team-card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.team-avatar-placeholder {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: white;
}

.team-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral-end);
  margin-bottom: 12px;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
  min-height: 60px;
  align-content: flex-start;
}

.team-credential {
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.team-bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
  min-height: 65px;
}

.team-affiliations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  min-height: 50px;
  align-content: flex-start;
  margin-top: auto;
}

.team-affiliation {
  font-size: 10px;
  color: var(--text-light);
  padding: 3px 8px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
}

/* Publications Section */
.publications-section {
  padding: 80px 48px;
  background: white;
}

.publications-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.publication-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: block;
}

.publication-card:hover {
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.08) 0%, rgba(216, 107, 140, 0.08) 100%);
}

.publication-content {
  padding-right: 100px;
}

.publication-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.publication-year {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--coral-end);
  background: rgba(216, 107, 140, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.publication-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.publication-journal {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

.publication-expanded {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: none;
}

.publication-card.expanded .publication-expanded {
  display: block;
}

.publication-insight {
  background: white;
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.expand-btn {
  position: absolute;
  top: 28px;
  right: 100px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.publication-card:hover .expand-btn {
  background: var(--coral-end);
  color: white;
}

/* Contact Section */
.contact-section {
  padding: 80px 48px;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(232, 168, 124, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.contact-bg-shape {
  position: absolute;
  bottom: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(216, 107, 140, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.contact-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-option {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.contact-option-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.15) 0%, rgba(216, 107, 140, 0.15) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.contact-option-icon svg {
  width: 24px;
  height: 24px;
  color: var(--coral-end);
}

.contact-option h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  min-height: 50px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

.contact-option p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  flex-grow: 1;
}

.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--coral-start) 0%, var(--coral-end) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(216, 107, 140, 0.35);
  box-sizing: border-box;
  border: 2px solid transparent;
}

.contact-email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(216, 107, 140, 0.45);
}

/* Footer */
.footer {
  background: var(--text-dark);
  padding: 60px 48px;
  color: white;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-right {
  text-align: right;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive - Tablet */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-content {
    gap: 40px;
  }
}

/* Responsive - Small Tablet / Large Phone */
@media (max-width: 900px) {
  .nav-inner {
    padding: 0 12px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 24px 80px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-visual {
    display: none;
  }
  
  .stats-bar {
    padding: 40px 24px;
  }
  
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-value {
    font-size: 36px;
  }
  
  .problem-section,
  .research-section,
  .team-section,
  .publications-section,
  .contact-section {
    padding: 80px 24px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .research-card {
    padding: 28px;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .team-card {
    padding: 24px 16px;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer {
    padding: 40px 24px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-right {
    text-align: center;
  }
}

/* Responsive - Mobile (iPhone 13 mini and similar: 375px) */
@media (max-width: 480px) {
  /* Navigation */
  .nav {
    padding: 12px 0;
  }
  
  .nav.scrolled {
    padding: 10px 0;
  }
  
  .nav-inner {
    padding: 0 16px;
  }
  
  .logo-text-project {
    font-size: 14px;
    margin-right: 3px;
  }
  
  .logo-wordmark {
    height: 55px;
  }
  
  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 100px 16px 60px;
  }
  
  .hero-badge {
    padding: 6px 12px;
    font-size: 11px;
    margin-bottom: 20px;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }
  
  /* Stats Bar */
  .stats-bar {
    padding: 32px 16px;
  }
  
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .stat-item {
    padding: 0;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-value {
    font-size: 32px;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .stat-sublabel {
    font-size: 11px;
  }
  
  /* Sections */
  .problem-section,
  .research-section,
  .team-section,
  .publications-section,
  .contact-section {
    padding: 60px 16px;
  }
  
  .section-label {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  .section-label-line {
    width: 24px;
  }
  
  .section-title {
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  /* Problem Section */
  .problem-grid {
    gap: 32px;
  }
  
  .problem-chart {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .chart-title {
    font-size: 16px;
  }
  
  .chart-legend {
    gap: 12px;
  }
  
  .legend-item {
    font-size: 11px;
  }
  
  .growth-chart-visual {
    height: 200px;
  }
  
  .problem-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .problem-content p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .problem-quote {
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
  }
  
  .problem-quote::before {
    font-size: 40px;
    top: 5px;
    left: 12px;
  }
  
  .problem-quote p {
    font-size: 14px;
  }
  
  .problem-quote cite {
    font-size: 12px;
  }
  
  /* Research Section */
  .research-grid {
    gap: 16px;
  }
  
  .research-card {
    padding: 24px;
    border-radius: 16px;
  }
  
  .research-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .research-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .research-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .research-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .research-note {
    padding: 16px;
    border-radius: 12px;
    gap: 12px;
  }
  
  .research-note-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  
  .research-note p {
    font-size: 13px;
  }
  
  /* Team Section */
  .team-header {
    margin-bottom: 40px;
  }
  
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .team-card {
    padding: 20px 12px;
    border-radius: 16px;
  }
  
  .team-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }
  
  .team-avatar-placeholder {
    font-size: 28px;
  }
  
  .team-name {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .team-role {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .team-credentials {
    gap: 4px;
    margin-bottom: 10px;
  }
  
  .team-credential {
    padding: 2px 6px;
    font-size: 9px;
  }
  
  .team-bio {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .team-affiliations {
    gap: 4px;
  }
  
  .team-affiliation {
    font-size: 9px;
    padding: 2px 5px;
  }
  
  /* Publications Section */
  .publications-grid {
    gap: 12px;
  }
  
  .publication-card {
    padding: 20px 16px;
    border-radius: 12px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .publication-content {
    padding-right: 60px;
  }
  
  .publication-content h4 {
    font-size: 15px;
    line-height: 1.35;
    /* Truncate to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .publication-meta {
    font-size: 12px;
    /* Truncate authors to 1 line */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .publication-journal {
    font-size: 11px;
  }
  
  .publication-year {
    position: absolute;
    top: 20px;
    right: 16px;
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .expand-btn {
    display: none;
  }
  
  .publication-expanded {
    margin-top: 16px;
    padding-top: 16px;
  }
  
  .publication-insight {
    padding: 16px;
    font-size: 13px;
  }
  
  /* Contact Section */
  .contact-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .contact-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  
  .contact-options {
    margin-bottom: 32px;
  }
  
  .contact-option {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .contact-option-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
  
  .contact-option-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-option h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .contact-option p {
    font-size: 13px;
  }
  
  .contact-email-btn {
    padding: 16px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  
  /* Footer */
  .footer {
    padding: 32px 16px;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-logo {
    height: 28px;
  }
  
  .footer-text {
    font-size: 13px;
  }
  
  .footer-disclaimer {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .footer-copyright {
    font-size: 11px;
  }
}

/* Extra small devices (iPhone SE, etc: 320px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-card {
    padding: 24px 20px;
  }
  
  .team-avatar {
    width: 80px;
    height: 80px;
  }
  
  .team-name {
    font-size: 18px;
  }
  
  .team-role {
    font-size: 12px;
  }
  
  .team-credential {
    font-size: 10px;
  }
  
  .team-bio {
    font-size: 13px;
  }
}

/* ========================================
   NEW STYLES - Website Updates
   ======================================== */

/* Nav CTA Group */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}

.nav-cta-secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--coral-end);
  text-decoration: none;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--coral-end);
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta-secondary svg {
  width: 18px;
  height: 18px;
}

.nav-cta-secondary:hover {
  background: var(--coral-end);
  color: white;
}

/* Contact Options Responsive - kept for 4-column adjustments */
@media (max-width: 1000px) {
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-options {
    grid-template-columns: 1fr;
  }
}

/* Contact Buttons Container */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-mailing-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: white;
  color: var(--coral-end);
  border: 2px solid var(--coral-end);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

.contact-mailing-btn:hover {
  background: var(--coral-end);
  color: white;
}

.contact-mailing-btn svg {
  stroke: currentColor;
}

/* Inline link in contact options */
.inline-link {
  color: var(--coral-end);
  text-decoration: underline;
  font-weight: 500;
}

.inline-link:hover {
  color: var(--purple-start);
}

/* Stillbirth Visual - New chart design */
.stillbirth-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  flex-wrap: wrap;
}

.stillbirth-block {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
  max-width: 180px;
}

.stillbirth-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stillbirth-total .stillbirth-number {
  color: var(--text-dark);
}

.stillbirth-preventable .stillbirth-number {
  background: linear-gradient(135deg, var(--coral-start), var(--coral-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stillbirth-future .stillbirth-number {
  color: var(--purple-start);
}

.stillbirth-future {
  border: 2px dashed var(--purple-start);
  background: rgba(123, 91, 154, 0.05);
}

.stillbirth-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.stillbirth-arrow {
  font-size: 24px;
  color: var(--coral-end);
  font-weight: bold;
}

@media (max-width: 700px) {
  .stillbirth-visual {
    flex-direction: column;
    gap: 12px;
  }
  
  .stillbirth-arrow {
    transform: rotate(90deg);
  }
  
  .stillbirth-block {
    max-width: 100%;
    width: 100%;
  }
}

/* Problem Callout Box */
.problem-callout {
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.1), rgba(216, 107, 140, 0.1));
  border-left: 4px solid var(--coral-end);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.problem-callout h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--coral-end);
  margin-bottom: 8px;
}

.problem-callout p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* Parent Voices Section */
.parent-voices {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(216, 107, 140, 0.15);
}

.parent-voices-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--coral-end);
  text-align: center;
  margin-bottom: 12px;
}

.parent-voices-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* Floating Quote Boxes */
.floating-quotes-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  position: relative;
}

.floating-quote {
  background: white;
  border-radius: 16px;
  padding: 24px 24px 24px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  animation: floatQuote 6s ease-in-out infinite;
}

.floating-quote-1 { animation-delay: 0s; }
.floating-quote-2 { animation-delay: 1s; }
.floating-quote-3 { animation-delay: 2s; }
.floating-quote-4 { animation-delay: 0.5s; }
.floating-quote-5 { animation-delay: 1.5s; }
.floating-quote-6 { animation-delay: 2.5s; }

@keyframes floatQuote {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  color: var(--coral-start);
  opacity: 0.35;
  position: absolute;
  top: 8px;
  left: 12px;
  line-height: 1;
}

.floating-quote p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  padding-left: 24px;
}

.quotes-source {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 24px;
}

/* Publication Cards as Links */
a.publication-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.publication-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

a.publication-card .expand-btn {
  font-size: 18px;
  color: var(--coral-end);
}

/* Icon Array Visualization */
.icon-array-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

/* Grouped Icon Sections - Like Reference Image */
.grouped-icon-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.icon-section {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.icon-grid-group {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  flex-shrink: 0;
}

.section-label-text {
  flex: 1;
  padding-top: 4px;
}

.section-percent {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin-right: 8px;
}

.preventable-section .section-percent {
  color: #4A9D7C;
}

.potential-section .section-percent {
  color: var(--purple-start);
}

.section-title-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.preventable-section .section-title-text {
  color: #4A9D7C;
}

.potential-section .section-title-text {
  color: var(--purple-start);
}

.baseline-section .section-title-text {
  color: #8B8798;
  font-size: 20px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.icon-array-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.icon-array {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  max-width: 320px;
}

.baby-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}

.baby-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: inherit;
}

.baby-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 12px;
  border-radius: 8px 8px 4px 4px;
  background: inherit;
}

.baby-icon.preventable {
  background: #4A9D7C;
  opacity: 1;
}

.baby-icon.potential {
  background: #7B7BC9;
  opacity: 1;
}

.baby-icon.baseline {
  background: #A8A3B3;
}

@keyframes fadeInIcon {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.icon-array-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.icon-array-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.legend-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.legend-icon.preventable {
  background: #4A9D7C;
}

.legend-icon.potential {
  background: #7B7BC9;
}

.legend-icon.baseline {
  background: #A8A3B3;
}

/* Our Goal Section */
.our-goal-section {
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.08), rgba(216, 107, 140, 0.08));
  border-radius: 24px;
  text-align: center;
}

.our-goal-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--coral-end);
  margin-bottom: 16px;
}

.our-goal-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
}

.our-goal-content strong {
  color: var(--coral-end);
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 24px;
  }
  
  .nav-links {
    gap: 24px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 40px;
  }
  
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .problem-content {
    order: 1;
  }
  
  .problem-visual {
    order: 2;
  }
  
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .publications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Grouped icon sections tablet */
  .icon-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .icon-grid-group {
    grid-template-columns: repeat(10, 1fr);
    gap: 5px;
  }
  
  .section-label-text {
    padding-top: 12px;
  }
  
  .floating-quotes-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Tablet / Large Phone - 768px and below */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .nav-inner {
    padding: 0 20px;
  }
  
  .section-inner {
    padding: 0 20px;
  }
  
  .hero {
    padding-top: 100px;
    min-height: auto;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-visual {
    max-width: 300px;
    margin: 40px auto 0;
  }
  
  .floating-stat {
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .floating-stat-1 {
    left: -5%;
    top: 5%;
  }
  
  .floating-stat-2 {
    right: -5%;
    bottom: 10%;
  }
  
  .floating-stat-value {
    font-size: 16px;
  }
  
  .floating-stat-text {
    font-size: 11px;
  }
  
  .stats-bar {
    padding: 32px 20px;
  }
  
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-value {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  /* Publication card truncation for mobile */
  .publication-card {
    padding: 20px 16px;
  }
  
  .publication-content {
    padding-right: 65px;
  }
  
  .publication-content h4 {
    font-size: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .publication-meta {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .publication-year {
    top: 20px;
    right: 16px;
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
  }
  
  .research-card {
    padding: 28px;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .team-card {
    padding: 24px 16px;
  }
  
  .publications-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .contact-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-email-btn,
  .contact-mailing-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Grouped icon sections mobile */
  .grouped-icon-sections {
    gap: 40px;
  }
  
  .icon-grid-group {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  
  .baby-icon {
    width: 28px;
    height: 28px;
  }
  
  .section-percent {
    font-size: 24px;
  }
  
  .section-title-text {
    font-size: 18px;
  }
  
  .floating-quotes-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .floating-quote {
    padding: 20px 20px 20px 16px;
  }
  
  .quote-mark {
    font-size: 40px;
    top: 6px;
    left: 10px;
  }
  
  .parent-voices-title {
    font-size: 24px;
  }
  
  .parent-voices-subtitle {
    font-size: 14px;
  }
  
  .chart-title {
    font-size: 18px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-left {
    justify-content: center;
  }
}

/* Phone - 480px and below */
@media (max-width: 480px) {
  .logo-text-stardust {
    font-size: 20px;
  }
  
  .logo-text-project {
    font-size: 12px;
  }
  
  .hero {
    padding-top: 90px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary {
    width: auto;
    max-width: 280px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  
  .hero-visual {
    max-width: 260px;
  }
  
  .hero-logo-large {
    width: 100px;
    height: 100px;
  }
  
  .floating-stat {
    padding: 10px 12px;
    border-radius: 12px;
  }
  
  .floating-stat-icon {
    width: 32px;
    height: 32px;
  }
  
  .floating-stat-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .stats-bar-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .team-avatar {
    width: 80px;
    height: 80px;
  }
  
  .team-name {
    font-size: 18px;
  }
  
  .team-bio {
    font-size: 13px;
    min-height: auto;
  }
  
  .team-credentials {
    min-height: auto;
  }
  
  .team-affiliations {
    min-height: auto;
  }
  
  /* Bar chart small phone */
  .bar-chart-container {
    gap: 16px;
  }
  
  .bar {
    width: 70px;
  }
  
  .bar-undetected {
    height: 200px;
  }
  
  .bar-detected {
    height: 100px;
  }
  
  .bar-value {
    font-size: 18px;
  }
  
  .bar-rate {
    font-size: 10px;
  }
  
  .bar-label {
    font-size: 12px;
  }
  
  .reduction-arrow {
    margin-bottom: 25px;
  }
  
  .reduction-arrow svg {
    width: 50px;
    height: 30px;
  }
  
  .reduction-percent {
    font-size: 14px;
  }
  
  .reduction-label {
    font-size: 10px;
  }
  
  .chart-insight {
    padding: 12px 16px;
    gap: 10px;
  }
  
  .chart-insight p {
    font-size: 12px;
  }
  
  .insight-icon {
    width: 18px;
    height: 18px;
  }
  
  .chart-subtitle {
    font-size: 12px;
  }
  
  .chart-title {
    font-size: 16px;
  }
  
  /* Icon sections small phone - keeping for any remaining usage */
  .icon-grid-group {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }
  
  .baby-icon {
    width: 24px;
    height: 24px;
  }
  
  .section-percent {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
  }
  
  .section-title-text {
    font-size: 16px;
  }
  
  .section-desc {
    font-size: 13px;
  }
  
  .chart-title {
    font-size: 16px;
  }
  
  .icon-array-subtitle {
    font-size: 12px;
  }
  
  .publication-card {
    padding: 16px;
  }
  
  .publication-content {
    padding-right: 55px;
  }
  
  .publication-content h4 {
    font-size: 14px;
    /* Truncate to 2 lines on small phones */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .publication-meta {
    font-size: 11px;
    /* Truncate authors to 1 line */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .publication-year {
    font-size: 11px;
    padding: 3px 8px;
    top: 16px;
    right: 16px;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .contact-subtitle {
    font-size: 15px;
  }
  
  .contact-option {
    padding: 24px 20px;
  }
  
  .contact-option h4 {
    font-size: 16px;
    min-height: auto;
  }
  
  .our-goal-section {
    padding: 28px 20px;
    margin-top: 32px;
  }
  
  .our-goal-content h3 {
    font-size: 20px;
  }
  
  .our-goal-content p {
    font-size: 15px;
  }
}

/* Very small phones - 360px and below */
@media (max-width: 360px) {
  .logo-text-stardust {
    font-size: 18px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .stat-value {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .icon-grid-group {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
  
  .baby-icon {
    width: 20px;
    height: 20px;
  }
  
  .baby-icon::before {
    width: 8px;
    height: 8px;
  }
  
  .baby-icon::after {
    width: 12px;
    height: 9px;
  }
  
  .floating-quote p {
    font-size: 13px;
  }
}
