.vip-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(500px, 34.72vw, 711px);
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background: #9ccbe0;
  isolation: isolate;
}

.vip-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.15), transparent 32%),
    linear-gradient(25deg, rgba(75, 143, 173, 0.34), transparent 45%),
    #9ccbe0;
  content: "";
}

.vip-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 28, 54, 0.74), rgba(18, 42, 72, 0.52) 50%, rgba(12, 28, 54, 0.74)),
    linear-gradient(180deg, rgba(10, 28, 50, 0.16), rgba(10, 26, 48, 0.32));
  content: "";
}

.vip-hero-overlay {
  position: absolute;
  inset: 28px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.vip-hero-content {
  max-width: 1020px;
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
}

.vip-hero h1 {
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(3.2rem, 6.2vw, 5.75rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-shadow: 0 3px 24px rgba(4, 12, 27, 0.32);
}

.vip-hero-description {
  max-width: 760px;
  margin: 24px auto 0;
  color: #eef4f8;
  font-size: 1.15rem;
  line-height: 1.65;
}

.vip-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.vip-button-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.vip-button-light:hover,
.vip-button-light:focus {
  color: #172033;
  background: #ffffff;
  border-color: #ffffff;
}

.vip-leaders {
  padding: 46px 0 72px;
  background: #ffffff;
}

.vip-leaders-intro {
  max-width: 930px;
  margin: 0 auto;
  color: #20242c;
  font-size: 1.04rem;
  line-height: 1.42;
}

.vip-leaders-intro p {
  margin: 0;
}

.vip-leaders-intro p + p {
  margin-top: 24px;
}

.vip-leaders-heading {
  margin: 30px auto 0;
  text-align: center;
}

.vip-leaders-heading h2 {
  margin: 0;
  color: #202a68;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.vip-leaders-heading p {
  max-width: 940px;
  margin: 24px auto 0;
  color: #20242c;
  font-size: 1.03rem;
  line-height: 1.42;
}

.vip-leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.vip-leader-card {
  min-width: 0;
}

.vip-leader-placeholder {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 7px;
  box-shadow: 0 16px 36px rgba(31, 45, 72, 0.18);
}

.vip-leader-placeholder-one {
  background: #9dcce0;
}

.vip-leader-placeholder-two {
  background: #b7c7d6;
}

.vip-leader-placeholder-three {
  background: #9fb8c6;
}

.vip-leader-card h3 {
  min-height: 2.45em;
  margin: 24px 0 0;
  color: #202a68;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  line-height: 1.12;
  text-align: center;
}

.vip-leader-card p {
  margin: 18px 0 0;
  color: #20242c;
  font-size: 0.98rem;
  line-height: 1.38;
}

.site-nav a[aria-current="page"] {
  color: #111827;
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.vip-js [data-vip-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.vip-js [data-vip-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .vip-leaders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .vip-leader-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    margin: 0 auto;
  }
}

@media (max-width: 699px) {
  .vip-hero {
    height: auto;
    min-height: 590px;
  }

  .vip-hero-overlay {
    inset: 14px;
  }

  .vip-hero-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .vip-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
    line-height: 0.98;
  }

  .vip-hero-description {
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .vip-hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }

  .vip-hero-actions .button {
    width: 100%;
  }

  .vip-leaders {
    padding: 38px 0 52px;
  }

  .vip-leaders-intro,
  .vip-leaders-heading p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .vip-leaders-intro p + p {
    margin-top: 18px;
  }

  .vip-leaders-heading {
    margin-top: 28px;
  }

  .vip-leaders-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .vip-leaders-heading p {
    margin-top: 16px;
  }

  .vip-leaders-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 30px;
  }

  .vip-leader-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .vip-leader-card h3 {
    min-height: 0;
    margin-top: 18px;
    font-size: 1.3rem;
  }

  .vip-leader-card p {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vip-js [data-vip-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
