:root {
  --people-ink: #f4f5f5;
  --people-muted: rgba(244, 245, 245, 0.62);
  --people-mono: "IBM Plex Mono", "Google Sans Code", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --people-display: acumin-pro, "Helvetica Neue", Arial, sans-serif;
}

.MissionVision__container[data-mission-container] > .MissionVision__inner {
  display: none !important;
}

.MissionVision__container[data-mission-container] {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.PeopleSection,
.PeopleSection * {
  box-sizing: border-box;
}

.PeopleSection {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  min-width: 0;
  height: 100%;
  padding: 94px 50px 34px;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--people-ink);
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 650ms;
}

body[data-current_section="mission"] .PeopleSection {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.PeopleSection__header,
.PeopleSection__status,
.PeopleSection__groups {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.PeopleSection[data-background-ready="true"] .PeopleSection__header,
.PeopleSection[data-background-ready="true"] .PeopleSection__status {
  opacity: 1;
}

.PeopleSection__header {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.PeopleSection__total,
.PeopleSection__groupTitle,
.PeopleSection__groupCount,
.PeopleSection__profileMeta,
.PeopleSection__universities,
.PeopleSection__link,
.PeopleSection__status {
  font-family: var(--people-mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.PeopleSection__title {
  margin: 0 0 -0.08em;
  font-family: var(--people-display);
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.PeopleSection__total {
  margin: 0 0 2px;
  color: var(--people-muted);
}

.PeopleSection__status {
  margin: auto 0;
  color: var(--people-muted);
  text-align: center;
}

.PeopleSection__groups {
  display: grid;
  min-height: 0;
  flex: 1 1 auto;
  grid-template-columns: repeat(2, min(33vw, 470px));
  gap: 0;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 300ms ease;
}

.PeopleSection[data-ready="true"][data-background-ready="true"] .PeopleSection__groups {
  opacity: 1;
}

.PeopleSection__group {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 550ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-current_section="mission"] .PeopleSection__group {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-current_section="mission"] .PeopleSection__group:nth-child(1) {
  transition-delay: 80ms;
}

body[data-current_section="mission"] .PeopleSection__group:nth-child(2) {
  transition-delay: 160ms;
}

.PeopleSection__groupHeading {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  min-height: 26px;
  padding: 0 1px 8px;
}

.PeopleSection__groupTitle {
  margin: 0;
  color: var(--people-ink);
  font-size: 11px;
  font-weight: 400;
}

.PeopleSection__groupCount {
  color: var(--people-muted);
}

.PeopleSection__window {
  position: relative;
  min-height: 0;
  flex: 1 1 auto;
  padding-right: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.PeopleSection__window:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.68);
  outline-offset: 4px;
}

.PeopleSection__window::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.PeopleSection__stream {
  min-width: 0;
}

.PeopleSection__track {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 38px;
  padding-bottom: 38px;
}

.PeopleSection__profile {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  height: clamp(250px, 29vh, 280px);
  flex: 0 0 auto;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 8px;
  padding: 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--people-ink);
}

.PeopleSection__profileMeta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--people-muted);
}

.PeopleSection__role {
  text-align: right;
}

.PeopleSection__name {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--people-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.PeopleSection__universities {
  min-height: 2.7em;
  overflow-wrap: anywhere;
  color: var(--people-muted);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.PeopleSection__bio {
  min-height: 0;
  padding-right: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: var(--people-mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.005em;
}

.PeopleSection__bio::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.PeopleSection__links {
  display: flex;
  min-height: 22px;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 5px;
}

.PeopleSection__link {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 3px 7px 2px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: transparent;
  color: var(--people-ink);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.PeopleSection__link:hover,
.PeopleSection__link:focus-visible {
  background: #fff;
  color: #080a0b;
}

.PeopleSection__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

body[data-current_section="mission"] .Header__container,
body[data-current_section="mission"] .Header__nav a,
body[data-current_section="mission"] .Header__logo a,
body[data-current_section="mission"] .Header__contact {
  color: #fff !important;
}

body[data-current_section="mission"] .Header__logo svg,
body[data-current_section="mission"] .Header__logo svg * {
  color: #fff !important;
  fill: #fff !important;
}

body[data-current_section="mission"] .Header__contact {
  border-color: rgba(255, 255, 255, 0.76) !important;
}

body[data-current_section="mission"] .Header__contact:hover {
  background: #fff !important;
  color: #080a0b !important;
}

body[data-current_section="mission"] .HamburgerIcon__line,
body[data-current_section="mission"] .SoundToggle__bar,
body[data-current_section="mission"] .TopScrollIndicator__section_line,
body[data-current_section="mission"] .TopScrollIndicator__subsection_line {
  background-color: #fff !important;
}

body[data-current_section="mission"] .TopScrollIndicator__section_label,
body[data-current_section="mission"] .TopScrollIndicator__subsection_label {
  color: #fff !important;
}

@media (max-width: 768px) {
  body[data-people-section-in-view="true"] .PeopleSection {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  body[data-people-section-in-view="true"] .PeopleSection__group {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body[data-people-section-in-view="true"] .PeopleSection__group:nth-child(1) {
    transition-delay: 80ms;
  }

  body[data-people-section-in-view="true"] .PeopleSection__group:nth-child(2) {
    transition-delay: 160ms;
  }

  body[data-people-section-in-view="true"] .Header__container,
  body[data-people-section-in-view="true"] .Header__nav a,
  body[data-people-section-in-view="true"] .Header__logo a,
  body[data-people-section-in-view="true"] .Header__contact {
    color: #fff !important;
  }

  body[data-people-section-in-view="true"] .Header__logo svg,
  body[data-people-section-in-view="true"] .Header__logo svg * {
    color: #fff !important;
    fill: #fff !important;
  }

  body[data-people-section-in-view="true"] .Header__contact {
    border-color: rgba(255, 255, 255, 0.76) !important;
  }

  body[data-people-section-in-view="true"] .Header__contact:hover {
    background: #fff !important;
    color: #080a0b !important;
  }

  body[data-people-section-in-view="true"] .HamburgerIcon__line,
  body[data-people-section-in-view="true"] .SoundToggle__bar,
  body[data-people-section-in-view="true"] .TopScrollIndicator__section_line,
  body[data-people-section-in-view="true"] .TopScrollIndicator__subsection_line {
    background-color: #fff !important;
  }

  body[data-people-section-in-view="true"] .TopScrollIndicator__section_label,
  body[data-people-section-in-view="true"] .TopScrollIndicator__subsection_label {
    color: #fff !important;
  }

  .MissionVision__container[data-mission-container] {
    max-width: 100vw;
  }

  .PeopleSection {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100vw;
    height: 100svh;
    min-height: 620px;
    padding: 82px 18px 20px;
  }

  .PeopleSection__header {
    margin-bottom: 20px;
  }

  .PeopleSection__title {
    font-size: clamp(42px, 15vw, 62px);
  }

  .PeopleSection__total {
    margin-bottom: 1px;
  }

  .PeopleSection__groups {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .PeopleSection__groups::-webkit-scrollbar {
    display: none;
  }

  .PeopleSection__group {
    width: calc(100vw - 44px);
    min-width: calc(100vw - 44px);
    flex: 0 0 calc(100vw - 44px);
    scroll-snap-align: start;
  }

  .PeopleSection__groupHeading {
    min-height: 24px;
    padding-bottom: 7px;
  }

  .PeopleSection__window {
    width: 100%;
  }

  .PeopleSection__track {
    gap: 30px;
    padding-bottom: 30px;
  }

  .PeopleSection__profile {
    height: clamp(240px, 40svh, 270px);
  }

  .PeopleSection__name {
    font-size: 20px;
  }

  .PeopleSection__bio {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .PeopleSection,
  .PeopleSection__group,
  .PeopleSection__groups {
    transition-duration: 1ms;
  }

  .PeopleSection__track--duplicate {
    display: none;
  }
}
