.hero-split {
  --hero-accent: #ffe04b;
  --hero-text: #f8fbff;
  --hero-muted: rgba(248, 251, 255, 0.72);
  --hero-line: rgba(248, 251, 255, 0.2);
  --hero-shadow: rgba(9, 29, 112, 0.38);
  display: flex;
  align-items: center;
  min-height: calc(100dvh - 2rem);
  padding: 6rem 0 4rem;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.hero-split::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 37, 139, 0.3) 0%, rgba(7, 37, 139, 0.08) 48%, transparent 72%),
    linear-gradient(180deg, rgba(3, 24, 94, 0.08), rgba(28, 21, 162, 0.12));
  pointer-events: none;
}

.hero-split__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 1025px) {
  .hero-split__container {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.hero-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.hero-split__copy {
  min-width: 0;
  color: var(--hero-text);
}

.hero-split__eyebrow {
  margin: 0 0 1.25rem;
  color: var(--hero-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-split__title {
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(3rem, 4.4vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-split__title span {
  display: block;
  white-space: nowrap;
}

.hero-split__title span + span {
  margin-top: 0.18em;
}

.hero-split__title strong {
  color: var(--hero-accent);
  font-size: 0.62em;
  font-weight: 900;
  letter-spacing: -0.035em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--hero-accent);
  paint-order: stroke fill;
}

.hero-split__details {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  margin: clamp(2rem, 4.5vh, 3rem) 0 1.75rem;
  border-top: 1px solid var(--hero-line);
  border-bottom: 1px solid var(--hero-line);
}

.hero-split__detail {
  min-width: 0;
  padding: 1.1rem 0;
}

.hero-split__detail + .hero-split__detail {
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--hero-line);
}

.hero-split__detail dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  color: var(--hero-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-split__detail dt img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.hero-split__detail dd {
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-split__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--hero-accent);
  border-radius: 10px;
  background: var(--hero-accent);
  color: #12306f;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 30px var(--hero-shadow);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms ease,
    color 220ms ease;
}

.hero-split__cta:hover {
  background: #fff3a3;
  color: #12306f;
  transform: translateY(-2px);
}

.hero-split__cta:active {
  transform: translateY(1px);
}

.hero-split__cta:focus-visible {
  outline: 3px solid var(--hero-text);
  outline-offset: 4px;
}

.hero-split__media {
  min-width: 0;
}

.hero-split__video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background: #091a50;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 70px var(--hero-shadow);
}

.hero-split__video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-split__video-frame:focus-within {
  outline: 3px solid var(--hero-accent);
  outline-offset: 5px;
}

@media (max-width: 1199px) {
  .hero-split {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-split__title {
    font-size: clamp(2.75rem, 4.8vw, 4rem);
  }

  .hero-split__title span {
    white-space: normal;
  }
}

@media (max-width: 991px) {
  .hero-split {
    min-height: auto;
    padding: 14rem 0 4rem;
  }

  .hero-split__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-split__copy {
    max-width: 42rem;
  }

  .hero-split__title {
    font-size: clamp(3.2rem, 9vw, 5rem);
  }
}

@media (max-width: 575px) {
  .hero-split {
    padding-top: 15rem;
    padding-bottom: 3rem;
  }

  .hero-split__eyebrow {
    margin-bottom: 1rem;
    font-size: 0.7rem;
  }

  .hero-split__title {
    font-size: clamp(2.75rem, 14vw, 4rem);
    line-height: 0.96;
  }

  .hero-split__title strong {
    display: block;
    margin-top: 0.25em;
    font-size: 0.68em;
  }

  .hero-split__details {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-split__detail + .hero-split__detail {
    margin-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--hero-line);
    border-left: 0;
  }

  .hero-split__cta {
    width: 100%;
  }

  .hero-split__video-frame {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-split .wow,
  .hero-split__cta {
    animation: none !important;
    transition: none !important;
  }

  .hero-split .wow {
    visibility: visible !important;
  }
}
