.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: 885px;
  overflow: hidden;
  padding: clamp(90px, 7.8vw, 123px) 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-section-glow {
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--team-green);
  opacity: .15;
  filter: blur(85px);
  pointer-events: none;
}

.team-section-glow--people {
  top: 32%;
  right: -165px;
}

.team-section-glow--directions {
  top: 18%;
  left: -155px;
}

.team-section-glow--check {
  right: -175px;
  bottom: 8%;
  background: var(--team-green-dark);
}

.team-section-glow--road {
  top: 34%;
  left: -165px;
}

.team-section-glow--contact {
  top: -185px;
  right: 7%;
  width: 390px;
  height: 390px;
  background: var(--team-green-dark);
}

.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;
  isolation: isolate;
  overflow: hidden;
  padding: 124px 24px 150px;
  background: 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: 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),
    #121012;
  background-size: 72px 72px, 72px 72px, auto;
}

.team-feature__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  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__heading--centered {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 48px));
  margin: 0 auto 68px;
  text-align: center;
}

.team-feature__heading--centered .team-feature__title,
.team-feature__heading--centered .team-feature__lead {
  margin-right: auto;
  margin-left: auto;
}

.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;
  counter-reset: none;
}

.team-feature__list > .team-feature__item {
  counter-increment: none;
}

.team-feature__list > .team-feature__item::before {
  display: none;
  content: 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-road {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 24px 144px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: var(--team-bg);
}

.team-road::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .016) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

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

.team-road__heading {
  margin-bottom: 64px;
}

.team-road__heading .team-feature__title {
  max-width: 980px;
}

.team-road__heading .team-feature__lead {
  max-width: 820px;
}

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

.team-road__video .video-detail__player {
  margin: 0;
}

.team-road__video .video-detail__iframe-wrap {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: #000;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .42);
}

.team-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 126px 24px 136px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: #0b0a0b;
}

.team-contact::before,
.team-contact::after {
  position: absolute;
  top: 50%;
  width: min(260px, 19vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 181, 99, .55));
  content: "";
  pointer-events: none;
}

.team-contact::before {
  left: 0;
}

.team-contact::after {
  right: 0;
  transform: rotate(180deg);
}

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

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

.team-contact__title {
  margin: 0;
  color: #fff;
  font-family: "DelaGothicOne", Arial, sans-serif;
  font-size: clamp(42px, 5.1vw, 70px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.team-contact__lead {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--team-muted);
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 17px;
  line-height: 1.72;
}

.team-contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}

.team-contact__button {
  display: inline-flex;
  min-width: 220px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font, "Montserrat", Arial, sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.team-contact__button--telegram {
  background: var(--team-green);
  color: #07130d;
}

.team-contact__button--telegram svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.team-contact__button--team {
  border-color: rgba(12, 181, 99, .72);
  background: transparent;
  color: #fff;
}

.team-contact__button:hover {
  transform: translateY(-2px);
}

.team-contact__button--telegram:hover {
  background: #19ca75;
  color: #07130d;
}

.team-contact__button--team:hover {
  border-color: var(--team-green);
  background: rgba(12, 181, 99, .1);
  color: #fff;
}

.team-contact__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .92);
  outline-offset: 4px;
}

.team-contact__button:active {
  transform: translateY(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,
.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;
}

@media (min-width: 641px) {
  .team-feature--image-right .team-feature__shell,
  .team-feature--image-left .team-feature__shell {
    align-items: stretch;
  }

  .team-feature--image-right .team-feature__media,
  .team-feature--image-left .team-feature__media {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .team-feature--image-right .team-feature__media img,
  .team-feature--image-left .team-feature__media img {
    position: absolute;
    inset: 0;
  }
}

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

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

  .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: repeat(2, minmax(0, 1fr));
    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-section-glow {
    width: 320px;
    height: 320px;
    opacity: .13;
    filter: blur(72px);
  }

  .team-section-glow--people {
    top: 29%;
    right: -205px;
  }

  .team-section-glow--directions {
    top: 13%;
    left: -210px;
  }

  .team-section-glow--check {
    right: -210px;
    bottom: 12%;
  }

  .team-section-glow--road {
    top: 42%;
    left: -210px;
  }

  .team-section-glow--contact {
    top: -150px;
    right: -125px;
    width: 300px;
    height: 300px;
  }

  .team-hero {
    min-height: 850px;
    padding: 75px 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 {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px 0;
  }

  .team-member,
  .team-member:nth-child(4),
  .team-member:nth-child(5) {
    grid-column: 1;
    width: 100%;
    justify-self: stretch;
    padding: 0;
  }

  .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;
  }

  .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__heading--centered {
    width: 100%;
    margin-bottom: 48px;
    padding: 0 16px;
  }

  .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__list {
    padding-right: 44px;
  }

  .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;
  }

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

  .team-road::before {
    background-size: 44px 44px;
  }

  .team-road__heading {
    margin-bottom: 44px;
  }

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

  .team-contact::before,
  .team-contact::after {
    display: none;
  }

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

  .team-contact__title {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.06;
  }

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

  .team-contact__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    padding-right: 0;
  }

  .team-contact__button {
    width: min(100%, 320px);
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .team-hero {
    min-height: 830px;
    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 {
    gap: 52px 0;
  }

  .team-member:nth-child(5) {
    width: 100%;
  }

  .team-member__portrait {
    width: 102px;
  }

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

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

  .team-contact__button {
    font-size: 16px;
  }
}

/* H2 typography synced with the main page. */
.team-people__title,
.team-feature__title,
.team-contact__title {
  font-family: var(--fontHead, "DelaGothicOne", Arial, sans-serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.46;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .team-people__title,
  .team-feature__title,
  .team-contact__title {
    font-size: 40px;
  }
}

@media (max-width: 1030px) {
  .team-people__title,
  .team-feature__title,
  .team-contact__title {
    font-size: 36px;
  }
}

@media (max-width: 860px) {
  .team-people__title,
  .team-feature__title,
  .team-contact__title {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .team-people__title,
  .team-feature__title,
  .team-contact__title {
    font-size: 28px;
    letter-spacing: .04em;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .team-people__title,
  .team-feature__title,
  .team-contact__title {
    font-size: 24px;
  }
}

@media (min-width: 901px) {
  .team-people__header {
    width: min(980px, 100%);
  }

  .team-feature__heading--centered {
    width: min(1120px, calc(100% - 48px));
  }

  .team-feature__heading--centered .team-feature__title {
    max-width: 980px;
  }

  .team-contact__inner {
    width: min(980px, 100%);
  }
}

@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;
  }
}
