.team-page {
  --team-bg: #0f0c0f;
  --team-surface: #171617;
  --team-text: #fff;
  --team-muted: #b1b1b1;
  --team-green: #0cb563;
  --team-green-dark: #0f8e50;
  background: var(--team-bg);
  color: var(--team-text);
}

.team-page .header {
  background: rgba(15, 12, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.team-main {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--team-bg);
}

.team-hero {
  position: relative;
  isolation: isolate;
  min-height: 960px;
  overflow: hidden;
  padding: clamp(150px, 13vw, 205px) 24px 80px;
  background:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px),
    var(--team-bg);
  background-size: 72px 72px, 72px 72px, auto;
}

.team-hero::before {
  position: absolute;
  z-index: -1;
  top: 68px;
  left: 50%;
  width: min(920px, 92vw);
  height: 460px;
  border: 1px solid rgba(255, 255, 255, .035);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  filter: blur(.2px);
}

.team-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(85px);
  opacity: .2;
}

.team-hero__glow--left {
  top: 340px;
  left: -170px;
  width: 390px;
  height: 390px;
  background: var(--team-green);
}

.team-hero__glow--right {
  top: 180px;
  right: -230px;
  width: 520px;
  height: 520px;
  background: var(--team-green-dark);
  opacity: .14;
}

.team-hero__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.team-hero__copy {
  position: relative;
  z-index: 7;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.team-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--team-green);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-hero__title {
  max-width: 900px;
  margin: 0 auto;
  color: var(--team-text);
  font-family: var(--fontHead, "DelaGothicOne", Arial, sans-serif);
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
  text-wrap: balance;
}

.team-hero__lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--team-muted);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: balance;
}

.team-collage {
  position: relative;
  width: min(1040px, 100%);
  height: 555px;
  margin: 58px auto 0;
  perspective: 1200px;
}

.team-collage::before {
  position: absolute;
  z-index: 0;
  top: 80px;
  left: 50%;
  width: 72%;
  height: 66%;
  border-radius: 50%;
  background: rgba(12, 181, 99, .2);
  content: "";
  transform: translateX(-50%);
  filter: blur(90px);
}

.team-collage__card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: var(--team-surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .54), 0 8px 24px rgba(0, 0, 0, .34);
  transform-origin: center;
  animation: team-card-in .75s cubic-bezier(.2, .72, .2, 1) both;
}

.team-collage__card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), transparent 34%, rgba(12, 181, 99, .08));
  content: "";
  pointer-events: none;
}

.team-collage__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-collage__card--group {
  z-index: 3;
  top: 0;
  left: 18%;
  width: 64%;
  height: 330px;
  border-color: rgba(12, 181, 99, .36);
  transform: rotate(-1.5deg);
}

.team-collage__card--group img {
  object-position: 50% 50%;
}

.team-collage__card--crowd {
  z-index: 4;
  top: 130px;
  right: 1%;
  width: 37%;
  height: 222px;
  transform: rotate(2.2deg);
  animation-delay: .1s;
}

.team-collage__card--crowd img {
  object-position: 53% 50%;
}

.team-collage__card--booth {
  z-index: 2;
  top: 270px;
  left: 2%;
  width: 42%;
  height: 230px;
  transform: rotate(-2.5deg);
  animation-delay: .18s;
}

.team-collage__card--booth img {
  object-position: 52% 48%;
}

.team-collage__card--speaker {
  z-index: 5;
  right: 20%;
  bottom: 0;
  width: 22%;
  height: 270px;
  transform: rotate(1.5deg);
  animation-delay: .26s;
}

.team-collage__card--speaker img {
  object-position: 50% 27%;
}

.team-people {
  position: relative;
  overflow: hidden;
  padding: 124px 24px 150px;
  background:
    radial-gradient(circle at 50% 0, rgba(12, 181, 99, .1), transparent 33%),
    var(--team-bg);
}

.team-people::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 181, 99, .55), transparent);
  content: "";
  transform: translateX(-50%);
}

.team-people__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.team-people__header {
  position: static;
  inset: auto;
  display: block;
  width: min(760px, 100%);
  margin: 0 auto 80px;
  padding: 0;
  transform: none;
  text-align: center;
}

.team-people__eyebrow {
  margin: 0 0 17px;
  color: var(--team-green);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-people__title {
  margin: 0;
  color: var(--team-text);
  font-family: var(--fontHead, "DelaGothicOne", Arial, sans-serif);
  font-size: clamp(34px, 4vw, 55px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.team-people__lead {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--team-muted);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: balance;
}

.team-people__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 84px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-member {
  grid-column: span 2;
  min-width: 0;
  margin: 0;
  padding: 0 8px;
  text-align: center;
}

.team-member:nth-child(4) {
  grid-column: 2 / span 2;
}

.team-member:nth-child(5) {
  grid-column: 4 / span 2;
}

.team-member__portrait {
  position: relative;
  width: 158px;
  aspect-ratio: 1;
  margin: 0 auto 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  background: var(--team-surface);
  box-shadow:
    0 0 0 8px rgba(12, 181, 99, .045),
    0 24px 50px rgba(0, 0, 0, .38);
}

.team-member__portrait::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 48%, rgba(12, 181, 99, .11));
  content: "";
  pointer-events: none;
}

.team-member__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  margin: 0;
  color: var(--team-text);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.team-member__role {
  display: block;
  min-height: 38px;
  margin: 9px 0 12px;
  color: var(--team-green);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.55;
  text-transform: uppercase;
}

.team-member__description {
  display: block;
  max-width: 310px;
  margin: 0 auto;
  color: var(--team-muted);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.team-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background:
    radial-gradient(circle at 82% 28%, rgba(12, 181, 99, .105), transparent 31%),
    var(--team-bg);
}

.team-feature--image-left {
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    radial-gradient(circle at 16% 45%, rgba(12, 181, 99, .09), transparent 32%),
    #121012;
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.team-feature__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .84fr);
  gap: clamp(64px, 7vw, 105px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.team-feature--image-left .team-feature__content {
  grid-column: 2;
  grid-row: 1;
}

.team-feature--image-left .team-feature__media {
  grid-column: 1;
  grid-row: 1;
}

.team-feature__content {
  min-width: 0;
}

.team-feature__heading {
  position: static;
  inset: auto;
  display: block;
  margin: 0 0 45px;
  padding: 0;
  transform: none;
}

.team-feature__eyebrow {
  margin: 0 0 16px;
  color: var(--team-green);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-feature__title {
  max-width: 650px;
  margin: 0;
  color: var(--team-text);
  font-family: var(--fontHead, "DelaGothicOne", Arial, sans-serif);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.team-feature__lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--team-muted);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.team-feature__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-feature__item {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.team-feature__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.team-feature__icon,
.team-feature__step {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(12, 181, 99, .42);
  border-radius: 12px;
  background: rgba(12, 181, 99, .09);
  color: var(--team-green);
}

.team-feature__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.team-feature__step {
  border-radius: 50%;
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.team-feature__list--steps .team-feature__item:not(:last-child)::after {
  position: absolute;
  top: 65px;
  bottom: -2px;
  left: 20px;
  width: 1px;
  background: linear-gradient(var(--team-green), rgba(12, 181, 99, .08));
  content: "";
}

.team-feature__item-copy {
  display: block;
  min-width: 0;
}

.team-feature__item-copy strong {
  display: block;
  margin: 1px 0 7px;
  color: var(--team-text);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.35;
}

.team-feature__item-copy span {
  display: block;
  color: var(--team-muted);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.team-feature__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  background: var(--team-surface);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .42);
}

.team-feature__media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 7, 6, .76) 100%),
    linear-gradient(135deg, rgba(12, 181, 99, .12), transparent 36%);
  content: "";
  pointer-events: none;
}

.team-feature__media::after {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: -11%;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: rgba(12, 181, 99, .2);
  content: "";
  filter: blur(70px);
}

.team-feature__media--road {
  aspect-ratio: 4 / 5;
}

.team-feature__media--process {
  aspect-ratio: 5 / 5.6;
}

.team-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-feature__media--road img {
  object-position: 54% 52%;
}

.team-feature__media-caption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
  margin: 0;
  color: #fff;
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.team-page.team-motion-ready .js-team-reveal:not(.is-visible) .team-feature__heading,
.team-page.team-motion-ready .js-team-reveal:not(.is-visible) .team-feature__item,
.team-page.team-motion-ready .js-team-reveal:not(.is-visible) .team-feature__media {
  opacity: 0;
}

.team-page.team-motion-ready .js-team-reveal:not(.is-visible) .team-feature__heading,
.team-page.team-motion-ready .js-team-reveal:not(.is-visible) .team-feature__item {
  transform: translateY(20px);
}

.team-page.team-motion-ready .team-feature__heading,
.team-page.team-motion-ready .team-feature__item,
.team-page.team-motion-ready .team-feature__media {
  transition:
    opacity .62s cubic-bezier(.2, .72, .2, 1),
    transform .62s cubic-bezier(.2, .72, .2, 1);
}

.team-page.team-motion-ready .team-feature__heading {
  transition-delay: .04s;
}

.team-page.team-motion-ready .team-feature__item:nth-child(1) { transition-delay: .12s; }
.team-page.team-motion-ready .team-feature__item:nth-child(2) { transition-delay: .2s; }
.team-page.team-motion-ready .team-feature__item:nth-child(3) { transition-delay: .28s; }
.team-page.team-motion-ready .team-feature__item:nth-child(4) { transition-delay: .36s; }

.team-page.team-motion-ready .team-feature--image-right:not(.is-visible) .team-feature__media {
  transform: translateX(34px);
}

.team-page.team-motion-ready .team-feature--image-left:not(.is-visible) .team-feature__media {
  transform: translateX(-34px);
}

.team-page.team-motion-ready .team-feature__media {
  transition-delay: .18s;
}

@keyframes team-card-in {
  from {
    opacity: 0;
    translate: 0 28px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 900px) {
  .team-hero {
    min-height: 900px;
    padding-top: 145px;
  }

  .team-collage {
    height: 520px;
  }

  .team-collage__card--group {
    left: 10%;
    width: 72%;
  }

  .team-collage__card--crowd {
    right: 0;
    width: 40%;
  }

  .team-collage__card--booth {
    left: 0;
    width: 46%;
  }

  .team-collage__card--speaker {
    right: 17%;
    width: 25%;
  }

  .team-people {
    padding-top: 100px;
  }

  .team-people__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 30px;
  }

  .team-member,
  .team-member:nth-child(4) {
    grid-column: span 1;
  }

  .team-member:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 15px);
    justify-self: center;
  }

  .team-feature {
    padding: 108px 24px;
  }

  .team-feature__shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 48px;
  }

  .team-feature__title {
    font-size: clamp(32px, 4.8vw, 44px);
  }

  .team-feature__item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }
}

@media (max-width: 640px) {
  .team-hero {
    min-height: 900px;
    padding: 125px 16px 48px;
    background-size: 44px 44px, 44px 44px, auto;
  }

  .team-hero::before {
    top: 90px;
    width: 560px;
    height: 330px;
  }

  .team-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .team-hero__title {
    font-size: clamp(34px, 10.2vw, 47px);
    line-height: 1.02;
  }

  .team-hero__lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .team-collage {
    width: 100%;
    height: 500px;
    margin-top: 42px;
  }

  .team-collage__card {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .56), 0 6px 18px rgba(0, 0, 0, .3);
  }

  .team-collage__card--group {
    top: 0;
    left: 3%;
    width: 91%;
    height: 220px;
  }

  .team-collage__card--crowd {
    top: 165px;
    right: 0;
    width: 57%;
    height: 156px;
  }

  .team-collage__card--booth {
    top: 270px;
    left: 0;
    width: 62%;
    height: 150px;
  }

  .team-collage__card--speaker {
    right: 4%;
    bottom: 0;
    width: 38%;
    height: 215px;
  }

  .team-people {
    padding: 88px 16px 104px;
  }

  .team-people::before {
    width: calc(100% - 32px);
  }

  .team-people__header {
    margin-bottom: 58px;
  }

  .team-people__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .team-people__title {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.05;
  }

  .team-people__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .team-people__grid {
    gap: 56px 14px;
  }

  .team-member {
    padding: 0;
  }

  .team-member:nth-child(5) {
    width: calc(50% - 7px);
  }

  .team-member__portrait {
    width: 112px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px rgba(12, 181, 99, .045), 0 18px 36px rgba(0, 0, 0, .36);
  }

  .team-member__name {
    font-size: 17px;
    line-height: 1.25;
  }

  .team-member__role {
    min-height: 48px;
    margin: 8px 0 10px;
    font-size: 10px;
    line-height: 1.45;
  }

  .team-member__description {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .team-feature {
    padding: 88px 16px 96px;
  }

  .team-feature--image-left {
    background-size: 44px 44px, 44px 44px, auto, auto;
  }

  .team-feature__shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .team-feature--image-left .team-feature__content,
  .team-feature--image-left .team-feature__media {
    grid-column: 1;
  }

  .team-feature--image-left .team-feature__content {
    grid-row: 1;
  }

  .team-feature--image-left .team-feature__media {
    grid-row: 2;
  }

  .team-feature__heading {
    margin-bottom: 36px;
  }

  .team-feature__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .team-feature__title {
    font-size: clamp(30px, 8.7vw, 39px);
    line-height: 1.06;
  }

  .team-feature__lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .team-feature__item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
  }

  .team-feature__icon,
  .team-feature__step {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .team-feature__step {
    border-radius: 50%;
  }

  .team-feature__icon svg {
    width: 20px;
    height: 20px;
  }

  .team-feature__list--steps .team-feature__item:not(:last-child)::after {
    top: 59px;
    left: 18px;
  }

  .team-feature__item-copy strong {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .team-feature__item-copy span {
    font-size: 13px;
    line-height: 1.55;
  }

  .team-feature__media {
    width: min(440px, 100%);
    margin: 0 auto;
    border-radius: 20px;
  }

  .team-feature__media--road,
  .team-feature__media--process {
    aspect-ratio: 4 / 4.7;
  }

  .team-feature__media-caption {
    right: 18px;
    bottom: 17px;
    left: 18px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .team-hero {
    min-height: 880px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .team-collage {
    height: 470px;
  }

  .team-collage__card--group {
    height: 205px;
  }

  .team-collage__card--crowd {
    top: 155px;
    height: 145px;
  }

  .team-collage__card--booth {
    top: 250px;
    height: 140px;
  }

  .team-collage__card--speaker {
    height: 200px;
  }

  .team-people {
    padding-right: 12px;
    padding-left: 12px;
  }

  .team-people__grid {
    column-gap: 10px;
  }

  .team-member:nth-child(5) {
    width: calc(50% - 5px);
  }

  .team-member__portrait {
    width: 102px;
  }

  .team-member__name {
    font-size: 15.5px;
  }

  .team-member__description {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-collage__card {
    animation: none;
  }

  .team-page.team-motion-ready .team-feature__heading,
  .team-page.team-motion-ready .team-feature__item,
  .team-page.team-motion-ready .team-feature__media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
