.about-clean-shell {
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
  background: #111827;
}

.about-clean-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-clean-profile-card {
  width: min(100%, 17rem);
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.72);
  text-align: center;
}

.about-team-image {
  display: block;
  width: min(100%, 11.5rem);
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(74, 222, 128, 0.16);
  background: rgba(2, 6, 23, 0.35);
  box-shadow: 0 18px 45px -30px rgba(32, 232, 139, 0.72);
  object-fit: cover;
}

.about-clean-eyebrow,
.about-clean-kicker {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-clean-name {
  margin-top: 0.55rem;
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-clean-role {
  margin: 0.45rem auto 0;
  max-width: 22ch;
  color: #4ade80;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-clean-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.about-clean-meta span {
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
}

.about-clean-meta span + span::before {
  margin-right: 0.45rem;
  color: #475569;
  content: "•";
}

.about-clean-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.65rem;
  background: #0a7be8;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 10px 24px -16px rgba(10, 123, 232, 0.85);
  transition: background 180ms ease, transform 180ms ease;
}

.about-clean-linkedin:hover {
  background: #1688f5;
  transform: translateY(-1px);
}

.about-clean-content {
  align-self: center;
}

.about-clean-content h3 {
  margin-top: 0.7rem;
  max-width: 21ch;
  color: #f8fafc;
  font-size: clamp(1.5rem, 2.3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.about-clean-content > p {
  margin-top: 1.25rem;
  max-width: 42rem;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
}

.about-clean-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.about-clean-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.55;
}

.about-clean-list svg {
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.2rem;
  color: #4ade80;
}

html:not(.dark) .about-clean-shell {
  border-color: rgba(100, 116, 139, 0.18) !important;
  background:
    radial-gradient(circle at 82% 0%, rgba(34, 197, 94, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 252, 0.82)) !important;
  box-shadow: 0 28px 78px -48px rgba(15, 23, 42, 0.32) !important;
}

html:not(.dark) .about-clean-profile-card {
  border-color: rgba(100, 116, 139, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 248, 0.86));
}

html:not(.dark) .about-team-image {
  border-color: rgba(16, 185, 129, 0.18);
  background: rgba(241, 247, 252, 0.9);
}

html:not(.dark) .about-clean-eyebrow,
html:not(.dark) .about-clean-kicker {
  color: #64748b;
}

html:not(.dark) .about-clean-name,
html:not(.dark) .about-clean-content h3 {
  color: #0f172a;
}

html:not(.dark) .about-clean-content > p,
html:not(.dark) .about-clean-list li,
html:not(.dark) .about-clean-meta span {
  color: #526174;
}

@media (min-width: 768px) {
  .about-clean-shell {
    grid-template-columns: minmax(15rem, 17rem) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    padding: clamp(2rem, 5vw, 4rem);
  }

  .about-clean-profile {
    align-items: stretch;
  }

  .about-clean-profile-card {
    width: 100%;
  }

  .about-clean-linkedin {
    align-self: center;
  }
}
