.hib-hero {
  position: relative;
  min-height: min(660px, calc(100vh - 110px));
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: #ffffff;
  background-color: #071b1e;
}

.hib-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hib-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 21, 0.94) 0%, rgba(5, 24, 27, 0.83) 37%, rgba(5, 24, 27, 0.2) 69%, rgba(5, 24, 27, 0.03) 100%),
    linear-gradient(180deg, rgba(4, 18, 21, 0.06), rgba(4, 18, 21, 0.38));
}

.hib-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hib-hero__content {
  width: min(720px, 62%);
}

.hib-hero__eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(216, 229, 229, 0.42);
  border-radius: 999px;
  color: #0C1E21;
  background: rgba(216, 229, 229, 0.92);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  animation: hib-hero-enter 0.62s 0.08s both;
}

.hib-hero__eyebrow::before {
  display: none;
}

.hib-hero h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-family: var(--hib-heading-font, "Inter", sans-serif) !important;
  font-size: clamp(36px, 3.3vw, 46px);
  font-weight: 580 !important;
  line-height: 1.08;
  letter-spacing: -0.05em;
  animation: hib-hero-enter 0.66s 0.2s both;
}

.hib-hero__description {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
  animation: hib-hero-enter 0.66s 0.32s both;
}

.hib-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: hib-hero-enter 0.66s 0.44s both;
}

.hib-hero__button {
  width: 210px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hib-hero__button > span:last-child {
  min-width: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.hib-hero__button:hover { transform: translateY(-2px); }
.hib-hero__button--primary { color: #ffffff; background: #1E8A8A; }
.hib-hero__button--primary:hover { color: #0C1E21; background: #D8E5E5; }
.hib-hero__button--secondary { border: 1px solid rgba(255, 255, 255, 0.3); color: #ffffff; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(8px); }
.hib-hero__button--secondary:hover { border-color: rgba(255, 255, 255, 0.56); color: #ffffff; background: rgba(255, 255, 255, 0.12); }

.hib-hero__signature {
  max-width: 560px;
  margin-top: 34px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  animation: hib-hero-enter 0.66s 0.56s both;
}

.hib-hero__signature span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hib-hero__signature strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
}

@keyframes hib-hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .hib-hero { min-height: 650px; }
  .hib-hero__media { object-position: 62% center; }
  .hib-hero__overlay { background: linear-gradient(90deg, rgba(4, 18, 21, 0.96), rgba(4, 18, 21, 0.67)), linear-gradient(180deg, transparent, rgba(4, 18, 21, 0.68)); }
  .hib-hero__inner { padding: 58px 0; }
  .hib-hero__content { width: 100%; }
  .hib-hero h1 { font-size: clamp(27px, 7.25vw, 34px); }
  .hib-hero__description { font-size: 13px; }
  .hib-hero__signature { grid-template-columns: 1fr; gap: 8px; padding-right: 58px; }
}

@media (max-width: 480px) {
  .hib-hero__actions { flex-direction: column; }
  .hib-hero__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hib-hero__eyebrow,
  .hib-hero h1,
  .hib-hero__description,
  .hib-hero__actions,
  .hib-hero__signature { animation: none; }
}
