.hero {
  background:
    radial-gradient(circle at 10% 22%, rgba(12, 156, 124, 0.24), transparent 40%),
    radial-gradient(circle at 90% 76%, rgba(124, 58, 237, 0.2), transparent 44%),
    var(--obsidian);
}

.hero-wrap {
  padding: 4.5rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 0.9rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.1vw, 3.35rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  max-width: 58ch;
  color: var(--platinum);
}

.company-tile {
  justify-self: end;
  max-width: 360px;
  width: 100%;
  text-align: center;
}

.company-tile img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 0.9rem;
}

.company-tile strong {
  margin-bottom: 0.35rem;
}

.company-tile span {
  margin-top: 0;
}

.leader {
  display: grid;
  gap: 1rem;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: start;
  background: var(--white);
  border: 1px solid var(--platinum);
  border-radius: 12px;
  padding: 1.1rem;
}

.leader img {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--platinum);
}

.leader h3 {
  color: var(--bastilon-teal);
  margin-bottom: 0.35rem;
}

.role {
  color: var(--graphite);
  font-weight: 700;
  margin-bottom: 0.6rem;
}


@media (max-width: 920px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .leader {
    grid-template-columns: 1fr;
  }

  .leader img {
    width: 120px;
    height: 120px;
  }

  .company-tile {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-wrap {
    padding: 3rem 0 2.75rem;
  }

  .hero h1 {
    max-width: none;
  }

  .leader {
    padding: 1rem;
  }
}
