.founder-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 121, 255, 0.07), transparent 31%),
    #fff;
}

.founder-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.founder-section__portrait {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  place-items: end center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(18px, 2.4vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(225, 239, 255, 0.9)),
    var(--surface-alt);
  box-shadow: 0 24px 70px rgba(7, 20, 38, 0.1);
}

.founder-section__portrait::before {
  position: absolute;
  inset: 9% 10% auto auto;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(20, 121, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.founder-section__portrait picture,
.founder-section__portrait img {
  position: relative;
  display: block;
  width: 100%;
}

.founder-section__portrait img {
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.founder-section__content {
  min-width: 0;
  max-width: 660px;
}

.founder-section__content h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.founder-section__copy {
  max-width: 60ch;
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
}

.founder-section__role {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 760;
  letter-spacing: 0.035em;
}

.founder-section__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: clamp(28px, 4vw, 38px) 0 0;
  padding: 0;
  list-style: none;
}

.founder-section__highlights li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
}

.founder-section__highlights svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--blue-electric);
}

.founder-section__action {
  margin-top: clamp(30px, 4vw, 42px);
}

.founder-section__action .button {
  min-height: 48px;
}

@media (max-width: 900px) {
  .founder-section__grid {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
  }

  .founder-section__highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .founder-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-section__portrait {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .founder-section__content {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }

  .founder-section__content h2,
  .founder-section__copy {
    margin-inline: auto;
  }

  .founder-section__role,
  .founder-section__highlights {
    justify-content: center;
  }

  .founder-section__highlights {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .founder-section__action .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-section * {
    scroll-behavior: auto;
  }
}
