.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(56px, 7vw, 88px) 0 clamp(68px, 8vw, 96px);
  background:
    linear-gradient(rgba(7, 26, 61, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 61, 0.018) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.hero__content,
.hero-media {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.hero__content {
  z-index: 1;
}

.hero__kicker {
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--color-blue-dark);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.hero__kicker::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 15px;
  background: var(--color-yellow);
}

.hero__title {
  max-width: 680px;
  color: var(--color-navy);
  font-size: clamp(4rem, 7.2vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero__signature {
  margin-top: 19px;
  color: var(--color-blue);
  font-size: clamp(1.04rem, 1.6vw, 1.38rem);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.035em;
}

.hero__text {
  max-width: 610px;
  margin-top: 24px;
  color: var(--color-navy);
  font-size: clamp(1.1rem, 1.55vw, 1.34rem);
  font-weight: 600;
  line-height: 1.48;
}

.hero__actions {
  margin-top: 30px;
}

.hero-media {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 127, 0.12);
  border-radius: 18px;
  background: #f2f4f7;
  box-shadow: 0 24px 60px rgba(7, 26, 61, 0.12);
}

.hero-media__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(25, 55, 194, 0.055), transparent 48%),
    linear-gradient(150deg, #f8f9fb 0%, #eef1f5 100%);
}

.hero-media__placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 4px;
  background: var(--color-yellow);
}

.hero-media__placeholder span {
  position: relative;
  padding: 7px 10px;
  border: 1px solid rgba(16, 39, 127, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-media__asset {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 260ms ease;
}

.hero-media:hover .hero-media__asset {
  transform: scale(1.012);
}

.hero .button--outline {
  border-color: var(--color-navy);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-navy);
}

.hero .button--outline:hover {
  background: var(--color-navy);
  color: #ffffff;
}

.hero .button--light {
  border-color: var(--color-red);
  background: var(--color-red);
  color: #ffffff;
}

.hero .button--light:hover {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
  color: var(--color-navy);
}
