.homepage-hero {
  position: relative;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 0 32px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  background-color: #111;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72)), url("/images/headerbg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 760px) {
  .homepage-hero {
    padding: 20px 0 16px;
    background-size: 150%;
    background-position: top center;
    background-attachment: scroll;
  }
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 0.6rem;
  }
  .hero-copy {
    padding: 12px 16px 0;
  }
  .hero-subtitle,
  .hero-tagline {
    font-size: 0.95rem;
  }
  .hero-eyebrow {
    font-size: 0.85rem;
  }
  .hero-wave {
    max-width: 100%;
  }
  .hero-graphic {
    max-height: 90px;
  }
}
.homepage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 950px);
  margin: 0 auto;
  padding: 16px 24px 0;
}

.hero-title {
  position: relative;
  margin: 0 0 0.8rem;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: none;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-title-fade 0.85s ease-out 0.15s forwards;
}

.hero-wave {
  width: 100%;
  max-width: 90%;
  height: 60px;
  margin: 0 auto 0.9rem;
  opacity: 0;
  animation: hero-wave-fade 0.8s ease-out 0.35s forwards;
}

.hero-wave path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wave-red {
  stroke: #872535;
  stroke-width: 3;
  opacity: 1;
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
  animation: wave-flow-red 3s linear infinite;
}

.wave-green {
  stroke: #8ccf60;
  stroke-width: 2.4;
  opacity: 0.92;
  stroke-dasharray: 45;
  stroke-dashoffset: 0;
  animation: wave-flow-green 4s linear infinite;
}

.wave-blue {
  stroke: #4ea5f7;
  stroke-width: 2;
  opacity: 0.85;
  stroke-dasharray: 35;
  stroke-dashoffset: 0;
  animation: wave-flow-blue 5s linear infinite;
}

@keyframes wave-flow-red {
  to {
    stroke-dashoffset: -60;
  }
}
@keyframes wave-flow-green {
  to {
    stroke-dashoffset: -45;
  }
}
@keyframes wave-flow-blue {
  to {
    stroke-dashoffset: -35;
  }
}
@keyframes hero-wave-fade {
  to {
    opacity: 1;
  }
}
.hero-subtitle,
.hero-tagline,
.hero-eyebrow,
.hero-graphic {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-copy-fade 0.8s ease-out 0.35s forwards;
}

.hero-subtitle {
  margin: 0.5rem auto 1.3rem;
  max-width: 720px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-copy-fade 0.8s ease-out 0.25s forwards;
  color: rgba(255, 255, 255, 0.92);
}

.hero-tagline {
  margin: 0 auto;
  max-width: 100%;
  width: min(940px, 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 880px) {
  .hero-tagline {
    white-space: normal;
  }
  .hero-wave {
    max-width: 95%;
  }
}
@keyframes hero-title-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-copy-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 880px) {
  .hero-section-nav {
    display: none;
  }
}
#join-us,
#news-events,
#publications,
#research {
  scroll-margin-top: 100px;
}

/*# sourceMappingURL=home.css.map */