/* About hero */
.about-hero {
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(241,125,44,.16), transparent 60%);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(77,171,61,.12), transparent 60%);
  pointer-events: none;
}
.about-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
.about-hero h1 em {
  font-style: normal;
  position: relative;
  color: var(--orange);
}
.about-hero h1 em::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: 0.05em;
  height: .28em;
  background: var(--green);
  opacity: .35;
  z-index: -1;
  transform: skewX(-6deg);
  border-radius: 4px;
}
.about-hero .lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 64ch;
  margin: 0 0 2rem;
}

/* Pull quote (re-used from play.css idea, redefined here for self-containment) */
.quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--text);
  padding-left: 1.5rem;
  border-left: 4px solid var(--orange);
  margin: 1.5rem 0 0;
}

.container.narrow { max-width: 760px; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .03em;
  color: white;
  margin: 0 auto 1rem;
}
.team-avatar--1 { background: var(--orange); }
.team-avatar--2 { background: var(--green); }
.team-avatar--3 { background: #1d4ed8; }
.team-avatar--4 { background: var(--orange-dark); }
.team-avatar--5 { background: #1f2937; }

.team-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .35rem;
  letter-spacing: -.01em;
}
.team-role {
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
}
.team-extra {
  color: var(--text-dim);
  font-size: .82rem;
  line-height: 1.4;
}

/* YES block */
.yes-block {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 3rem;
  align-items: center;
}
.yes-logo-wrap {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.yes-logo-wrap img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
.yes-copy p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.yes-copy p:last-of-type { margin-bottom: 0; }

/* CTA */
.section-cta { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); text-align: center; }
.section-cta .section-title { margin-left: auto; margin-right: auto; }
.section-cta .section-lead { margin: 0 auto 2rem; }

@media (max-width: 880px) {
  .yes-block { grid-template-columns: 1fr; gap: 2rem; }
  .yes-logo-wrap { max-width: 240px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
