.team-page {
  --team-gold: #c9a227;
  --team-gold-soft: #e8d48a;
  --team-ink: #080d18;
  --team-panel: #121a2c;
  overflow-x: hidden;
}

.nav-links .is-active {
  color: var(--team-gold-soft) !important;
}

.team-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 79% 24%, rgba(201, 162, 39, .22), transparent 24%),
    radial-gradient(circle at 11% 76%, rgba(57, 75, 114, .2), transparent 30%),
    linear-gradient(145deg, #080d18 0%, #101a30 58%, #090f1e 100%);
}

.team-hero::before,
.team-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.team-hero::before {
  inset: 0;
  opacity: .43;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(110deg, #000, transparent 79%);
}

.team-hero::after {
  width: 440px;
  height: 440px;
  right: -120px;
  bottom: -230px;
  border: 1px solid rgba(201, 162, 39, .25);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(201, 162, 39, .035),
    0 0 0 116px rgba(201, 162, 39, .02);
}

.team-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding-top: 92px;
  padding-bottom: 96px;
}

.team-hero h1 {
  max-width: 800px;
  margin-bottom: 25px;
}

.team-hero .lead {
  max-width: 760px;
}

.team-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.team-orbit {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
}

.team-orbit::before,
.team-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.team-orbit::before {
  inset: 4%;
  border: 1px solid rgba(201, 162, 39, .28);
  box-shadow: inset 0 0 70px rgba(201, 162, 39, .045);
}

.team-orbit::after {
  inset: 20%;
  border: 1px dashed rgba(255, 255, 255, .15);
}

.team-orbit__core {
  position: relative;
  z-index: 2;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, .4);
  border-radius: 42px;
  color: #fff;
  background: linear-gradient(145deg, rgba(201, 162, 39, .2), rgba(15, 23, 42, .96));
  box-shadow: 0 28px 75px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .12);
  transform: rotate(45deg);
}

.team-orbit__core span {
  display: block;
  text-align: center;
  transform: rotate(-45deg);
  font: 600 27px/1 'Space Grotesk', sans-serif;
  letter-spacing: -.05em;
}

.team-orbit__core small {
  display: block;
  margin-top: 7px;
  color: var(--team-gold-soft);
  font: 700 9px/1.2 'Inter', sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.team-orbit__node {
  position: absolute;
  z-index: 3;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 26, 44, .92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .08);
  font: 600 14px/1 'Space Grotesk', sans-serif;
}

.team-orbit__node:nth-of-type(2) { top: 0; left: 43%; }
.team-orbit__node:nth-of-type(3) { top: 28%; right: 0; }
.team-orbit__node:nth-of-type(4) { right: 12%; bottom: 9%; }
.team-orbit__node:nth-of-type(5) { left: 12%; bottom: 9%; }
.team-orbit__node:nth-of-type(6) { top: 28%; left: 0; }

.team-intro {
  padding: 82px 0 22px;
}

.team-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 60px;
  align-items: end;
}

.team-intro h2 {
  margin: 10px 0 0;
}

.team-intro p {
  margin: 0;
  color: #c4cbd6;
  font-size: 18px;
  line-height: 1.72;
}

.team-grid-section {
  padding: 42px 0 96px;
}

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

.member-card {
  position: relative;
  min-height: 405px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 25px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(28, 39, 63, .98), rgba(13, 21, 36, .98));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .16);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.member-card::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -70px;
  border: 1px solid rgba(201, 162, 39, .19);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(201, 162, 39, .025);
}

.member-card:hover {
  color: #fff;
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, .42);
  box-shadow: 0 26px 65px rgba(0, 0, 0, .24);
}

.member-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.member-avatar {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .4);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 20%, rgba(232, 212, 138, .35), transparent 26%),
    linear-gradient(145deg, rgba(201, 162, 39, .27), rgba(17, 25, 42, 1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 18px 34px rgba(0, 0, 0, .2);
  font: 600 24px/1 'Space Grotesk', sans-serif;
}

.member-avatar::after {
  display: none;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.member-card__open {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  color: #adb7c7;
  background: rgba(255, 255, 255, .035);
  transition: color .22s ease, border-color .22s ease, transform .22s ease;
}

.member-card:hover .member-card__open {
  color: var(--team-gold-soft);
  border-color: rgba(201, 162, 39, .38);
  transform: translate(2px, -2px);
}

.member-card__body {
  margin-top: 30px;
}

.member-card__role {
  color: var(--team-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.member-card h3 {
  margin: 9px 0 8px;
  font-size: 28px;
}

.member-card__handle {
  display: inline-block;
  color: #dbe0e8;
  font-size: 14px;
  font-weight: 600;
}

.member-card p {
  margin: 20px 0 0;
  color: #aeb8c8;
  font-size: 15px;
  line-height: 1.68;
}

.member-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: #8995a7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}

.member-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--team-gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, .09);
}

.team-system {
  position: relative;
  padding: 92px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background:
    radial-gradient(circle at 90% 0, rgba(201, 162, 39, .11), transparent 32%),
    rgba(5, 10, 20, .48);
}

.team-system__heading {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.team-system__heading h2 {
  margin: 10px 0 0;
}

.team-system__heading p {
  margin: 0;
  color: #b7c0ce;
  font-size: 17px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 25px;
  overflow: hidden;
  background: rgba(15, 23, 42, .65);
}

.capability {
  min-height: 190px;
  padding: 25px 21px;
}

.capability + .capability {
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.capability__number {
  display: block;
  color: var(--team-gold);
  font: 600 12px/1 'Space Grotesk', sans-serif;
  letter-spacing: .14em;
}

.capability h3 {
  margin: 29px 0 9px;
  font-size: 19px;
}

.capability p {
  margin: 0;
  color: #9ea9b9;
  font-size: 13px;
  line-height: 1.58;
}

.network-strip {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.network-strip__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
}

.network-stat {
  padding: 12px 30px;
}

.network-stat:first-child { padding-left: 0; }
.network-stat + .network-stat { border-left: 1px solid rgba(255, 255, 255, .1); }
.network-stat strong {
  display: block;
  color: #fff;
  font: 600 clamp(23px, 3vw, 34px)/1.1 'Space Grotesk', sans-serif;
  letter-spacing: -.04em;
}
.network-stat span {
  display: block;
  margin-top: 6px;
  color: #929eaf;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.team-page .cta {
  background:
    radial-gradient(circle at 15% 110%, rgba(201, 162, 39, .17), transparent 31%),
    linear-gradient(115deg, rgba(201, 162, 39, .09), rgba(255, 255, 255, .012) 50%, rgba(201, 162, 39, .04));
}

@media (max-width: 1040px) {
  .team-hero__inner { grid-template-columns: minmax(0, 1fr) 330px; gap: 38px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability + .capability { border-left: 0; }
  .capability:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .09); }
  .capability:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, .09); }
}

@media (max-width: 780px) {
  .team-hero { min-height: auto; }
  .team-hero__inner { grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 72px; }
  .team-orbit { width: min(90%, 390px); justify-self: center; order: -1; }
  .team-hero__copy { text-align: center; }
  .team-hero .lead { margin-inline: auto; }
  .team-hero__actions { justify-content: center; }
  .team-intro__grid,
  .team-system__heading { grid-template-columns: 1fr; gap: 22px; }
  .network-strip__inner { grid-template-columns: 1fr; }
  .network-stat { padding: 19px 0; }
  .network-stat + .network-stat { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .1); }
}

@media (max-width: 600px) {
  .team-orbit { width: 310px; }
  .team-orbit__core { width: 120px; height: 120px; border-radius: 34px; }
  .team-orbit__core span { font-size: 23px; }
  .team-orbit__node { width: 50px; height: 50px; font-size: 12px; }
  .team-grid { grid-template-columns: 1fr; }
  .member-card { min-height: 375px; }
  .member-avatar { width: 104px; height: 104px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability:nth-child(even) { border-left: 0; }
  .capability:nth-child(n + 2) { border-top: 1px solid rgba(255, 255, 255, .09); }
  .capability { min-height: auto; }
  .team-intro { padding-top: 62px; }
  .team-grid-section { padding-bottom: 70px; }
  .team-system { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .member-card,
  .member-card__open,
  .button { transition: none; }
}

/* Team page hero and profile-image redesign — 2026-08-24 */
.team-hero {
  min-height: 0;
  display: block;
  background:
    radial-gradient(circle at 50% -16%, rgba(201, 162, 39, .2), transparent 39%),
    radial-gradient(circle at 8% 100%, rgba(52, 70, 109, .19), transparent 31%),
    linear-gradient(180deg, #0a1120 0%, #10192c 58%, #0b1323 100%);
}

.team-hero::before {
  opacity: .34;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.team-hero::after {
  display: none;
}

.team-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 82px;
  padding-bottom: 72px;
}

.team-hero__copy {
  width: 100%;
  max-width: 930px;
  text-align: center;
}

.team-hero h1 {
  max-width: 900px;
  margin: 15px auto 23px;
  font-size: clamp(54px, 6vw, 82px);
}

.team-hero .lead {
  max-width: 790px;
  margin-inline: auto;
}

.team-hero__actions {
  justify-content: center;
  margin-top: 31px;
}

.team-hero__roster {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 55px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.hero-profile {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 13px;
  color: #fff;
  background: rgba(13, 22, 39, .96);
  transition: background .2s ease;
}

.hero-profile:hover {
  color: #fff;
  background: rgba(26, 38, 62, .98);
}

.hero-profile img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  object-fit: contain;
  padding: 3px;
  border: 1px solid rgba(201, 162, 39, .32);
  border-radius: 13px;
  background: #070b12;
}

.hero-profile__copy {
  min-width: 0;
}

.hero-profile strong,
.hero-profile span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-profile strong {
  color: #fff;
  font: 600 13px/1.25 'Space Grotesk', sans-serif;
  letter-spacing: -.02em;
}

.hero-profile span {
  margin-top: 4px;
  color: #8995a7;
  font-size: 10px;
  font-weight: 600;
}

.member-avatar {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  padding: 5px;
  border-radius: 19px;
  background: #080d16;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 28px rgba(0, 0, 0, .22);
}

.member-avatar img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  display: block;
  object-fit: contain;
  border-radius: 13px;
}

.member-card__body {
  margin-top: 25px;
}

@media (max-width: 1040px) {
  .team-hero__inner {
    padding-top: 70px;
    padding-bottom: 64px;
  }

  .team-hero__roster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .team-hero__inner {
    padding-top: 60px;
    padding-bottom: 56px;
  }

  .team-hero h1 {
    font-size: clamp(47px, 12vw, 65px);
  }

  .team-hero__roster {
    margin-top: 42px;
  }
}

@media (max-width: 560px) {
  .team-hero__roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 19px;
  }

  .hero-profile {
    padding: 11px 10px;
  }

  .hero-profile img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .team-hero__actions .button {
    width: 100%;
  }
}
