.about-page-body .site-header {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.about-page {
  --about-page-gutter: clamp(1.25rem, 4vw, 4rem);
  --about-container: min(1500px, calc(100vw - var(--about-page-gutter) - var(--about-page-gutter)));
  --about-header-overlap: 108px;
  background: #fff;
  color: var(--brand-black);
}

.about-page .container {
  align-items: center;
  width: var(--about-container);
}

.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  margin-top: calc(var(--about-header-overlap) * -1);
  padding: calc(clamp(7rem, 8vw, 8.5rem) + var(--about-header-overlap)) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(720px 420px at 88% 12%, rgba(80, 111, 253, 0.16), transparent 64%),
    radial-gradient(640px 360px at 10% 8%, rgba(206, 240, 10, 0.22), transparent 62%),
    linear-gradient(180deg, #fff, #f7f8f2);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  margin: 0 6% 0 6.5%;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-hero__copy {
  display: grid;
  gap: 1.15rem;
}

.about-hero__copy h1 {
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  line-height: 0.96;
}

.about-hero__title .scramble-word {
  display: inline-block;
  white-space: nowrap;
}

.about-hero__copy p:last-child {
  max-width: 54ch;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.68;
}

.about-hero__photo {
  position: relative;
  min-height: clamp(380px, 48vw, 580px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 34px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.18);
}

.about-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.about-story {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background: #050505;
  color: #fff;
}

.about-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-story__inner .eyebrow {
  grid-column: 1 / -1;
  color: var(--brand-lime);
}

.about-story h2 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.about-story__text {
  display: grid;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.14vw, 1.08rem);
  line-height: 1.72;
}

.about-team {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background: #fff;
}

.about-team__head {
  display: grid;
  gap: 0.85rem;
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.about-team__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-team__head p:last-child {
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(0.98rem, 1.12vw, 1.06rem);
  line-height: 1.68;
}

.team-showcase {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(360px, 1fr) minmax(180px, 0.72fr);
  gap: clamp(1.25rem, 3.4vw, 4rem);
  align-items: center;
}

.team-showcase__list {
  display: grid;
  gap: clamp(0.8rem, 1.4vw, 1.15rem);
}

.team-showcase__member {
  position: relative;
  display: grid;
  gap: 0.32rem;
  width: 100%;
  padding: 0.95rem 0;
  color: rgba(0, 0, 0, 0.46);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.team-showcase__member::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.team-showcase__list--right .team-showcase__member {
  text-align: right;
}

.team-showcase__list--right .team-showcase__member::after {
  transform-origin: right;
}

.team-showcase__member-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.team-showcase__member-role {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-showcase__member:hover,
.team-showcase__member:focus-visible,
.team-showcase__member.is-active {
  color: var(--brand-black);
  border-color: rgba(80, 111, 253, 0.26);
  transform: translateY(-2px);
  outline: none;
}

.team-showcase__member:hover::after,
.team-showcase__member:focus-visible::after,
.team-showcase__member.is-active::after {
  transform: scaleX(1);
}

.team-showcase__member.is-upcoming {
  color: rgba(0, 0, 0, 0.34);
}

.team-showcase__member.is-upcoming .team-showcase__member-role {
  color: var(--brand-blue);
}

.team-showcase__stage {
  position: relative;
  display: grid;
  gap: 1.1rem;
  margin: 0;
}

.team-showcase__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: clamp(430px, 48vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(420px 280px at 80% 10%, rgba(206, 240, 10, 0.24), transparent 62%),
    linear-gradient(135deg, rgba(80, 111, 253, 0.22), #080a13);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.18);
}

.team-showcase__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.team-showcase__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.012);
  opacity: 1;
  transition: opacity 0.46s var(--ease-out), transform 0.7s var(--ease-out), filter 0.46s var(--ease-out);
}

.team-showcase__image-wrap img.is-changing {
  opacity: 0;
  transform: scale(1.05);
  filter: blur(10px);
}

.team-showcase__caption {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2rem);
  right: clamp(1.2rem, 3vw, 2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  color: #fff;
}

.team-showcase__caption span {
  color: var(--brand-lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-showcase__caption strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.team-showcase__mobile-carousel {
  display: none;
}

@media (max-width: 960px) {
  .about-hero__inner,
  .about-story__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__inner {
    margin: 0;
  }

  .about-hero__copy h1,
  .about-story h2 {
    max-width: 16ch;
  }

  .about-story h2 {
    max-width: 100%;
  }

  .team-showcase {
    display: block;
    width: 100%;
  }

  .team-showcase__stage,
  .team-showcase__list {
    display: none;
  }

  .team-showcase__mobile-carousel {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.2rem max(1rem, calc((100vw - var(--about-container)) / 2)) 1.1rem;
    margin: 0;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .team-showcase__mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .team-showcase__mobile-card {
    flex: 0 0 min(76vw, 360px);
    display: grid;
    gap: 0.75rem;
    padding: 0;
    color: rgba(0, 0, 0, 0.48);
    text-align: left;
    background: transparent;
    border: 0;
    scroll-snap-align: center;
    cursor: pointer;
    transition: color 0.28s var(--ease-out), transform 0.28s var(--ease-out);
  }

  .team-showcase__mobile-card.is-active {
    color: var(--brand-black);
    transform: translateY(-3px);
  }

  .team-showcase__mobile-kicker {
    color: var(--brand-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .team-showcase__mobile-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
  }

  .team-showcase__mobile-photo {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 22px;
    background: #080a13;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  }

  .team-showcase__mobile-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 0.28s var(--ease-out);
  }

  .team-showcase__mobile-card.is-active .team-showcase__mobile-photo::after {
    border-color: var(--brand-blue);
  }

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

  .team-showcase__mobile-card.is-upcoming .team-showcase__mobile-photo img {
    object-fit: contain;
    padding: 18%;
  }
}

@media (max-width: 620px) {
  .team-showcase__mobile-card {
    flex-basis: min(82vw, 340px);
  }

  .team-showcase__mobile-name {
    font-size: clamp(1.9rem, 10vw, 2.85rem);
  }
}

@media (max-width: 620px) {
  .about-hero {
    min-height: auto;
    padding-top: calc(6.5rem + var(--about-header-overlap));
  }

  .about-hero__photo {
    min-height: 320px;
    border-radius: 22px;
  }

  .about-hero__copy h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .about-story h2,
  .about-team__head h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

}

@media (max-width: 480px) {
  .about-hero {
    min-height: auto;
    padding-top: calc(5rem + var(--about-header-overlap));
    padding-bottom: 3rem;
  }

  .about-hero__inner {
    gap: 1.5rem;
    margin: 0 1rem;
  }

  .about-hero__copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .about-hero__copy p:last-child {
    font-size: 0.92rem;
  }

  .about-hero__photo {
    min-height: 250px;
    border-radius: 18px;
  }

  .about-story {
    padding: 3rem 0;
  }

  .about-story__inner {
    gap: 1.2rem;
  }

  .about-story h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .about-story__text {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-team {
    padding: 3rem 0;
  }

  .about-team__head h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .about-team__head p:last-child {
    font-size: 0.92rem;
  }

  .team-showcase {
    gap: 1rem;
  }

  .team-showcase__mobile-carousel {
    padding-bottom: 0.8rem;
  }

  .team-showcase__mobile-card {
    flex-basis: min(84vw, 320px);
  }

  .team-showcase__mobile-photo {
    border-radius: 18px;
  }
}
