.profile-section {
  background: #ffffff;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(42, 23, 107, 0.16);
  background: rgba(42, 23, 107, 0.16);
}

.profile-card,
.profile-evidence {
  background: #fffefa;
  padding: clamp(26px, 4vw, 42px);
}

.profile-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 24px;
  align-items: start;
}

.profile-card.compact {
  grid-template-columns: 86px minmax(0, 1fr) minmax(260px, 0.52fr);
}

.profile-avatar {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(42, 23, 107, 0.18);
  background:
    radial-gradient(circle at 72% 18%, rgba(229, 27, 24, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff, #f5f1ff);
  color: var(--brand-red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 800;
}

.profile-photo {
  width: 180px;
  overflow: hidden;
  border: 1px solid rgba(42, 23, 107, 0.18);
  background: #ffffff;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: 50% 18%;
}

.founder-portrait-card {
  max-width: 360px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(42, 23, 107, 0.16);
  background: #fff;
  box-shadow: 0 18px 48px rgba(42, 23, 107, 0.08);
}

.founder-portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 50%;
}

.founder-portrait-card figcaption {
  margin: 0;
  padding: 14px 16px;
  color: var(--brand-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-split {
  align-items: center;
}

.founder-split .prose {
  align-self: center;
}

.profile-kicker {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-card h3 {
  margin: 0;
  color: var(--brand-purple);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.05;
}

.profile-role {
  margin: 12px 0 18px;
  color: var(--brand-purple);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.profile-summary {
  max-width: 68ch;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.profile-tags span {
  border: 1px solid rgba(42, 23, 107, 0.16);
  background: #ffffff;
  color: var(--brand-purple);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-evidence,
.profile-expertise {
  display: grid;
  gap: 18px;
}

.profile-stat {
  border-bottom: 1px solid rgba(42, 23, 107, 0.14);
  padding-bottom: 18px;
}

.profile-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-stat strong {
  display: block;
  color: var(--brand-red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.profile-stat span {
  display: block;
  margin-top: 8px;
  color: var(--brand-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.profile-expertise h4 {
  margin: 0;
  color: var(--brand-purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-expertise ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-expertise li {
  border-bottom: 1px solid rgba(42, 23, 107, 0.12);
  color: var(--brand-muted);
  padding-bottom: 10px;
  font-size: 13.5px;
  line-height: 1.45;
}

.profile-expertise li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 860px) {
  .profile-grid,
  .profile-card,
  .profile-card.compact {
    grid-template-columns: 1fr;
  }

  .profile-avatar {
    width: 74px;
    height: 74px;
    font-size: 26px;
  }

  .profile-photo {
    width: min(220px, 100%);
  }
}
