.team-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 30px;
  perspective: 1000px;
  perspective-origin: 50% 50%;
}

.member-card {
  position: relative;
  border-radius: 20px;
  padding: 36px 28px 92px;
  width: auto;
  min-height: 500px;
  text-align: left;
  color: #a0f0f0;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.42);
  background: var(--glass);
  transition: box-shadow .3s, background-color .3s;
  will-change: transform, box-shadow;
  transform-style: preserve-3d;
  cursor: default;
  overflow: hidden;
}

.member-card:hover {
  background-color: rgba(10, 20, 30, .8);
  box-shadow: 0 6px 20px rgba(0, 255, 255, .4), 0 0 35px rgba(0, 255, 255, .25);
}

.member-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  border: 2px solid #0ff;
  transition: transform 0.16s ease-out;
}

.member-card h3 {
  margin-bottom: 8px;
}

.member-role {
  margin: 0 0 14px;
  color: rgba(160, 240, 240, .8);
  font-size: 1rem;
  font-weight: 600;
}

.member-card>p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.member-points {
  margin: 0;
  padding-left: 18px;
}

.member-points li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.resume-btn,
.resume-btn:hover {
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
}

.resume-btn {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 10px 20px;
  color: #0ff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .25s, box-shadow .25s, transform .15s;
  z-index: 10;
  cursor: pointer;
}

.resume-btn:hover {
  transform: translateX(-50%) scale(1.07);
}

.team-proof-strip,
.outcomes-grid {
  display: grid;
  gap: 24px;
}

.team-page main>section+section {
  margin-top: 56px;
}

.team-page main>section {
  width: min(100%, 1160px);
  margin-left: auto;
  margin-right: auto;
}



.team-proof-strip,
.outcomes-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-card,
.outcome-card,
#strengths {
  background: var(--glass);
  border: 1px solid rgba(0, 191, 255, .22);
  border-radius: 22px;
  box-shadow: 0 0 15px rgba(0, 191, 255, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.proof-card,
.outcome-card {
  padding: 24px;
}

.proof-card strong,
.outcome-card h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
}

.proof-card strong {
  font-size: 1.15rem;
}

.proof-card span,
.outcome-card p {
  color: var(--text);
  line-height: 1.65;
}

#aboutTeam,
#teamMembers,
#teamOutcome,
#strengths {
  position: relative;
}

#aboutTeam p {
  max-width: var(--page-text-max-width);
  margin: 0 auto;
  line-height: 1.75;
}

#strengths {
  padding: 32px 28px;
}

#strengths p {
  line-height: 1.75;
}

#strengths .team {
  margin-top: 18px;
}

#strengths .team li {
  margin-bottom: 10px;
}

#strengths .team li:hover {
  transform: none;
  box-shadow: none;
  color: var(--accent);
}

html.team-scroll-ready .team-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

html.team-scroll-ready .team-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}