/*
|--------------------------------------------------------------------------
| SETTLEMENT-HOME-06A — Executive Hero Experience
|--------------------------------------------------------------------------
*/

.rw-exec-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: 34px;
  padding-top: 46px;
  padding-bottom: 54px;
  isolation: isolate;
}

.rw-exec-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 70px);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    radial-gradient(circle at 0 0, rgba(0,184,148,.08), transparent 24rem);
  border: 1px solid rgba(15,23,42,.075);
  box-shadow:
    0 32px 100px rgba(15,23,42,.11),
    inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.rw-exec-title {
  margin: 22px 0 0;
  max-width: 980px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .94;
  letter-spacing: -.075em;
  font-weight: 950;
  color: var(--rw-paper-heading);
}

.rw-exec-copy {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.62;
  color: var(--rw-paper-body);
}

.rw-exec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.rw-exec-actions .rw-btn {
  min-width: 184px;
}

.rw-exec-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.rw-exec-check {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 13px;
  border-radius: 15px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.075);
  box-shadow: 0 12px 30px rgba(15,23,42,.055);
  color: #008F72;
  font-weight: 950;
  animation: rwHeroFade .55s var(--rw-paper-ease) both;
}

.rw-exec-check span {
  color: var(--rw-paper-heading);
}

.rw-exec-check:nth-child(2) { animation-delay: .06s; }
.rw-exec-check:nth-child(3) { animation-delay: .12s; }
.rw-exec-check:nth-child(4) { animation-delay: .18s; }

.rw-exec-hero-visual {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  place-items: center;
}

@media (max-width: 1180px) {
  .rw-exec-hero {
    grid-template-columns: 1fr;
  }

  .rw-exec-hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .rw-exec-hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .rw-exec-hero-copy {
    padding: 28px;
    border-radius: 24px;
  }

  .rw-exec-title {
    font-size: clamp(42px, 13vw, 64px);
  }

  .rw-exec-checks {
    grid-template-columns: 1fr;
  }

  .rw-exec-hero-visual {
    min-height: 360px;
  }
}
