.about-page {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  text-wrap: balance;
}

.about-hero .hero-description {
  max-width: 640px;
}

.about-hero .hero-description p {
  margin-bottom: 0;
  text-wrap: balance;
}

.about-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 32px;
}

.about-section-heading h2 {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-team,
.about-backers {
  max-width: 88%;
  padding: 120px 0;
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(min-content, 0.36fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

.about-section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
}

.about-section-heading .about-team-title {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  text-wrap: balance;
}

.about-team-group + .about-team-group {
  margin-top: 112px;
}

.about-group-title {
  margin: 0 0 40px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(221, 221, 221, 0.24);
  color: rgba(255, 255, 255, 0.45);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

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

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

.team-headshot {
  width: 112px;
  height: 112px;
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px dashed rgba(221, 221, 221, 0.5);
  border-radius: 50%;
}

.team-headshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.team-member h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.team-role {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.team-member p {
  position: relative;
  margin: 0;
  padding: 18px 0 0 36px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.16px;
}

.team-member p::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 36px;
  border-top: 1px dashed rgba(221, 221, 221, 0.5);
  border-left: 1px dashed rgba(221, 221, 221, 0.5);
  content: '';
}

.about-join {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-width: 0;
  padding: 32px 28px;
  border: 1px dashed rgba(221, 221, 221, 0.35);
  border-radius: 8px;
  background-color: #010101;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(221, 221, 221, 0.08) 0 1px,
    transparent 1px 6px
  );
}

.about-join-kicker {
  display: block;
  margin-bottom: 10px;
  color: #00ffcc;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.about-join h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-join .btn {
  width: 100%;
}

.about-backers {
  border-top: 1px solid #03362c;
}

.about-backer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-backer-logo {
  --logo-width: 164px;
  --logo-height: 54px;
  display: grid;
  place-items: center;
  width: 100%;
  height: 120px;
  border: 1px dashed rgba(221, 221, 221, 0.22);
  background: rgba(0, 255, 204, 0.018);
}

.about-backer-logo img {
  display: block;
  width: min(calc(var(--logo-width) * var(--logo-scale, 1)), calc(100% - 32px));
  max-height: calc(var(--logo-height) * var(--logo-scale, 1));
  object-fit: contain;
  opacity: 0.7;
}

.about-backer-logo--compact {
  --logo-scale: 0.8;
}

.about-backer-logo--tall.about-backer-logo--compact {
  --logo-scale: 0.55;
}

.about-backer-logo--wide {
  --logo-width: 174px;
  --logo-height: 48px;
}

.about-backer-logo--extra-wide {
  --logo-width: 182px;
  --logo-height: 42px;
}

.about-backer-logo--tall {
  --logo-width: 108px;
  --logo-height: 66px;
}

@media (max-width: 1024px) {
  .about-team,
  .about-backers {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-team,
  .about-backers {
    padding: 80px 0;
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }

  .about-section-heading h2 {
    font-size: 40px;
  }

  .about-section-heading .about-team-title {
    font-size: clamp(26px, 4.8vw, 32px);
  }

  .about-team-group + .about-team-group {
    margin-top: 80px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-join {
    padding: 28px 24px;
  }

  .about-backer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 320px) {
  .about-badges {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .about-team,
  .about-backers {
    padding: 64px 0;
  }

  .about-section-heading h2 {
    font-size: 34px;
  }

  .about-section-heading .about-team-title {
    font-size: 28px;
  }

  .team-headshot {
    width: 96px;
    height: 96px;
  }

  .team-member h3 {
    font-size: 21px;
  }

  .about-backer-logo {
    height: 92px;
  }

  .about-backer-logo img {
    width: min(calc(var(--logo-width) * var(--logo-scale, 1)), calc(100% - 24px));
    max-height: min(calc(var(--logo-height) * var(--logo-scale, 1)), 58px);
  }
}
