/* Continuous marquee */
.marquee .marquee-track {
  display: flex !important;
  width: max-content !important;
  animation: marqueeV27 30s linear infinite !important;
}
.marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  white-space: nowrap;
  min-width: max(100vw, 1120px);
  padding: 16px 0;
}
.marquee-group > span {
  display: inline-block;
  padding: 0 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.marquee-group > i {
  flex: none;
  margin: 0 6px !important;
  color: #6cccf1;
}
@keyframes marqueeV27 {
  to {
    transform: translateX(-50%);
  }
}
/* Calm mission typography */
.message .eyebrow {
  font-size: 17px;
  letter-spacing: 0.2em;
  margin-bottom: 36px;
  color: #3d6688;
}
.mission-title {
  color: #263d52;
  font-weight: 500;
}
.mission-title .accent {
  color: #477696;
}
.message-copy {
  color: #52677a;
}
/* Refined section links */
.arrow-link {
  position: relative;
  min-width: 175px;
  padding: 7px 0 13px;
  border-bottom: 0;
  justify-content: space-between;
  overflow: visible;
}
.arrow-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(7, 86, 173, 0.2));
  transform-origin: left;
  transition: transform 0.4s ease;
}
.arrow-link b {
  width: 46px;
  height: 46px;
  margin-top: -8px;
  background: #fff;
  border-color: #7f9ab4;
  color: var(--deep);
  box-shadow: 0 6px 18px rgba(3, 43, 99, 0.08);
  transition:
    color 0.35s,
    background-color 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
}
.arrow-link:hover:after {
  transform: scaleX(0.72);
}
.arrow-link:hover b {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateX(5px);
  box-shadow: 0 9px 24px rgba(7, 86, 173, 0.23);
}
/* Full-width lower semicircle */
.message {
  padding-bottom: clamp(170px, 18vw, 260px);
}
.blue-wave {
  left: 0 !important;
  right: 0 !important;
  bottom: -12vw !important;
  width: 100% !important;
  height: 24vw !important;
  border-radius: 50% 50% 0 0 !important;
  transform: none !important;
}
@media (max-width: 680px) {
  .marquee-group {
    min-width: 850px;
    padding: 13px 0;
  }
  .marquee-group > span {
    padding: 0 24px;
    font-size: 11px;
  }
  .message .eyebrow {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .mission-title {
    font-size: 31px !important;
    line-height: 1.42;
  }
  .message {
    padding-bottom: 140px !important;
  }
  .blue-wave {
    bottom: -25vw !important;
    height: 50vw !important;
    width: 100% !important;
  }
  .hero {
    min-height: 800px !important;
    padding-bottom: 92px !important;
  }
  .hero-actions {
    margin-top: 48px !important;
    position: relative;
    z-index: 5;
  }
  .hero-visual {
    bottom: 54px !important;
    height: 46vh !important;
    right: -23vw !important;
  }
  .globe {
    width: 74vw !important;
    top: 0 !important;
  }
  .arrow-link {
    min-width: 165px;
  }
  .arrow-link b {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 390px) {
  .hero {
    min-height: 790px !important;
  }
  .hero-visual {
    bottom: 42px !important;
    right: -29vw !important;
  }
  .hero-actions {
    margin-top: 42px !important;
  }
  .mission-title {
    font-size: 28px !important;
  }
}
