.hib-mission {
  --mission-primary: #1E8A8A;
  --mission-dark: #0C1E21;
  --mission-light: #D8E5E5;
  position: relative;
  min-height: 0;
  aspect-ratio: 1802 / 872;
  padding: clamp(64px, 7vw, 124px);
  border-radius: var(--hib-section-radius, 24px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: clamp(54px, 6vw, 110px);
  align-items: center;
  color: #ffffff;
  background-color: #0C1E21;
  background-image:
    linear-gradient(100deg, rgba(4, 27, 31, 0.14) 0%, rgba(4, 27, 31, 0.05) 54%, rgba(4, 27, 31, 0.12) 100%),
    var(--mission-bg, none);
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--hib-section-shadow, 0 22px 58px rgba(12, 30, 33, 0.09));
}

.hib-mission__heading,
.hib-mission__content {
  position: relative;
  z-index: 3;
}

.hib-mission__heading {
  align-self: center;
  transform: translateY(clamp(-136px, -7.5vw, -72px));
}

.hib-mission__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #8bd1d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hib-mission__heading h2 {
  max-width: 14ch;
  margin: 0;
  color: #ffffff;
  font-size: var(--hib-section-title-size, clamp(26px, 2vw, 32px));
  font-weight: var(--hib-section-title-weight, 650);
  line-height: var(--hib-section-title-line-height, 1.2);
  letter-spacing: -0.035em;
}

.hib-mission__content {
  align-self: center;
  padding-left: 28px;
  border-left: 1px solid rgba(139, 209, 209, 0.48);
  transform: translateY(clamp(-76px, -4vw, -38px));
}

.hib-mission__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.hib-mission__content p + p {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hib-mission__content p + p::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8bd1d1;
  box-shadow: 0 0 0 5px rgba(30, 138, 138, 0.12);
}

.hib-mission__bridge {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.72;
}

.hib-mission__deck {
  position: absolute;
  right: 5%;
  bottom: 49%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 209, 209, 0.66), transparent);
}

.hib-mission__arc {
  display: none;
}

.hib-mission__shore {
  display: none;
}

.hib-mission__shore--left { left: 0; }
.hib-mission__shore--right { right: 0; }

.hib-mission__bridge i {
  position: absolute;
  bottom: 49%;
  width: 7px;
  height: 7px;
  border: 2px solid #0C1E21;
  border-radius: 50%;
  background: #8bd1d1;
  box-shadow: 0 0 0 5px rgba(30, 138, 138, 0.1);
  transform: translate(-50%, 50%);
}

.hib-mission__bridge i:nth-of-type(1) { left: 18%; }
.hib-mission__bridge i:nth-of-type(2) { left: 34%; }
.hib-mission__bridge i:nth-of-type(3) { left: 50%; }
.hib-mission__bridge i:nth-of-type(4) { left: 66%; }
.hib-mission__bridge i:nth-of-type(5) { left: 82%; }

@media (max-width: 800px) {
  .hib-mission { min-height: 0; aspect-ratio: auto; grid-template-columns: 1fr; align-items: start; }
  .hib-mission__heading { transform: none; }
  .hib-mission__content { transform: none; }
  .hib-mission__content { max-width: 680px; }
  .hib-mission__bridge { opacity: 0.28; }
}

@media (max-width: 549px) {
  .hib-mission { padding: 30px 24px; }
  .hib-mission__content { padding-left: 0; border-left: 0; }
}
