.page-about-who {
  background: #d5eef8;
  color: #004d89;
}

.about-hero {
  position: relative;
  min-height: 41rem;
  padding: 0;
  background: #07264d;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 18, 43, 0.18) 0%, rgba(1, 18, 43, 0.1) 42%, rgba(0, 17, 43, 0.56) 100%);
}

.about-hero__media,
.about-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__image {
  object-fit: cover;
  object-position: center 52%;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 41rem;
  padding-bottom: 1.7rem;
}

.about-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: var(--font-size-page-hero-title);
  line-height: 0.98;
  font-weight: 400;
}

.about-band--intro {
  background: #004d89;
  border-bottom: 4px solid #d3eef8;
}

.about-band__inner {
  display: grid;
  grid-template-columns: minmax(0, var(--content-width-copy)) auto;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: var(--content-gap-cta);
  row-gap: 1rem;
  padding: var(--about-intro-pad-top) 0 var(--about-intro-pad-bottom);
}

.about-section__inner {
  padding: var(--section-pad-about-work-y) 0 calc(var(--section-pad-about-work-y) - 0.35rem);
}

.about-section--work {
  background: #ffffff;
  border-bottom: 4px solid #d3eef8;
}

.about-section--mission {
  background: #d5eef8;
  padding-bottom: 1.9rem;
}

.about-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.about-section__header h2 {
  margin: 0;
  color: #009fd7;
  font-size: calc(var(--font-size-page-copy) * var(--font-ratio-title-over-copy));
  line-height: 0.98;
  font-weight: 400;
}

.about-section--mission .about-section__header h2 {
  color: #004d89;
}

.about-copy {
  max-width: var(--content-width-wide-copy);
  font-size: var(--font-size-page-copy);
  line-height: 1.3334;
}

.about-copy p {
  margin: 0 0 var(--about-intro-copy-gap);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy--intro {
  flex: 1 1 0;
  max-width: var(--content-width-copy);
  min-width: 0;
  line-height: var(--about-intro-copy-line-height);
}

.about-copy--work {
  max-width: var(--content-width-wide-copy);
}

.about-copy--light {
  color: #ffffff;
}

.about-copy--dark {
  color: #004d89;
}

.button--about-solid,
.button--about-ghost,
.button--about-intro {
  text-decoration: none;
}

.button--about-solid {
  background: #004d89;
  color: #ffffff;
}

.button--about-ghost {
  background: #ffffff;
  color: #004d89;
}

.button--about-intro {
  flex: 0 0 auto;
  align-self: flex-start;
  width: var(--button-pill-width-sm);
  min-height: var(--button-pill-height-lg);
  padding-left: 0;
  padding-right: 0;
  margin-top: 9px;
  background: #ffffff;
  color: #004d89;
}

.button--about-solid:hover,
.button--about-solid:focus-visible,
.button--about-ghost:hover,
.button--about-ghost:focus-visible,
.button--about-intro:hover,
.button--about-intro:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.about-mission-panel {
  display: grid;
  gap: 0;
  width: 100%;
  padding: 1.2rem var(--content-inset-panel-x) 1.05rem;
  border-radius: 1rem;
  background: #009fd7;
}

.about-mission-card {
  max-width: var(--content-width-panel-copy);
}

.about-mission-card+.about-mission-card {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.about-mission-card h3 {
  margin: 1rem 0 1.55rem;
  color: #ffffff;
  font-size: calc(var(--font-size-page-copy) * var(--font-ratio-title-over-copy));
  line-height: 1.02;
  font-weight: 400;
}

.about-mission-card p {
  margin: 0 0 0.5rem;
  color: #004d89;
  font-size: var(--font-size-page-copy);
  line-height: 1.24;
}

.about-mission-card p:last-child {
  margin-bottom: 0;
}

.about-section-nav h2 {
  margin-top: 0;
}

.about-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.about-page-list__item+.about-page-list__item {
  margin-top: 0;
}

.about-page-list__link {
  display: grid;
  gap: 0.35rem;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: var(--color-surface-muted);
}

.about-page-list__link:hover,
.about-page-list__link:focus-visible {
  border-color: var(--color-accent);
  outline: none;
}

.about-page-list__title {
  color: var(--color-accent);
  font-weight: 700;
}

.about-page-list__lead {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .about-section-nav {
    order: -1;
  }
}

@media (max-width: 700px) {

  .about-hero,
  .about-hero__inner {
    min-height: 28rem;
  }

  .about-hero__inner {
    padding-bottom: 1.1rem;
  }
}

@media (max-width: 520px) {

  .about-hero,
  .about-hero__inner {
    min-height: 23rem;
  }

  .about-section__header {
    align-items: flex-start;
  }

  .about-band__inner {
    flex-direction: column;
  }

  .about-mission-panel {
    padding: 1rem 0.9rem 0.9rem;
  }
}

.page-about-team {
  position: relative;
  background: #06264b;
  color: #ffffff;
}

.page-about-team::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(2, 18, 45, 0.12) 0%, rgba(2, 18, 45, 0.28) 38%, rgba(2, 18, 45, 0.42) 100%),
    url("/images/team/ibl-brain.webp") center -24% / 100% auto no-repeat;
}

.page-about-team::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(1, 16, 39, 0.06) 0%, rgba(1, 16, 39, 0.2) 100%);
}

.page-about-team .site-footer {
  position: relative;
  z-index: 1;
}

.team-page {
  position: relative;
  z-index: 1;
}

.team-intro-banner {
  border-top: 1px solid rgba(173, 225, 255, 0.18);
  border-bottom: 1px solid rgba(173, 225, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.team-hero__media {
  background: linear-gradient(180deg, rgba(2, 18, 45, 0.04) 0%, rgba(2, 18, 45, 0.12) 58%, rgba(1, 18, 43, 0.42) 100%);
}

.team-intro-banner.section-banner {
  z-index: 2;
}

.team-intro-banner .section-banner__inner {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.team-intro-banner__copy>*+* {
  margin-top: 1.5rem;
}

.team-grid-section {
  padding: 3rem 0 4.5rem;
  background: #01021E;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.35rem;
}

.team-card {
  flex: 0 1 calc((100% - (4 * 1.35rem)) / 5);
  min-width: 0;
  max-width: calc((100% - (4 * 1.35rem)) / 5);
  margin: 0;
}

.team-card__frame {
  position: relative;
  overflow: hidden;
  border: 1.5px solid #8fdcff;
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.team-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1);
}

.team-card__name {
  margin-top: 0.55rem;
  color: #ffffff;
  font-size: var(--font-size-page-copy-compact);
  line-height: 1.05;
  text-align: left;
}

@media (max-width: 1100px) {
  .team-card {
    flex-basis: calc((100% - (3 * 1.35rem)) / 4);
    max-width: calc((100% - (3 * 1.35rem)) / 4);
  }
}

@media (max-width: 760px) {
  .page-about-team::before {
    background-position: center 13%;
    background-size: 165% auto;
  }

  .team-card {
    flex-basis: calc((100% - (2 * 1rem)) / 3);
    max-width: calc((100% - (2 * 1rem)) / 3);
  }
}

@media (max-width: 520px) {
  .page-about-team::before {
    background-position: center 15%;
    background-size: 215% auto;
  }

  .team-grid {
    gap: 1rem;
  }

  .team-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}


.page-about-funding {
  background: #071f46 url("/images/ibl-funding.webp") center top / cover no-repeat;
  color: #004d89;
}

.page-about-funding main {
  min-height: auto;
}

.funding-hero__inner {
  min-height: clamp(10rem, 20vw, 14rem);
  padding-top: clamp(10rem, 18vw, 13rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.funding-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.funding-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.8);
}

.funding-banner__content,
.funding-banner__content p {
  max-width: 100%;
  color: #004d89;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.38;
}

.funding-banner__content>*+* {
  margin-top: 0.6rem;
}

.funding-logos-section {
  padding: clamp(1.5rem, 4vw, 2.4rem) 0 clamp(4rem, 8vw, 6rem);
}

.funding-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.funding-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(108px, 14vw, 132px);
  aspect-ratio: 1;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.funding-logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .funding-banner-section {
    padding-top: clamp(8rem, 24vw, 10rem);
  }

  .funding-banner__content {
    line-height: 1.24;
  }
}
