.team-hero {
  position: relative;
  min-height: min(100svh, 58rem);
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  isolation: isolate;
}

.team-hero #signal-network {
  opacity: 0.24;
  -webkit-mask-image: radial-gradient(circle at 76% 48%, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 76%);
  mask-image: radial-gradient(circle at 76% 48%, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 76%);
}

.team-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(20rem, 4fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: min(100svh, 58rem);
  padding-block: calc(var(--header-height) + 5rem) 5rem;
}

.team-hero__copy {
  position: relative;
  z-index: 2;
}

.team-hero__title {
  max-width: 10.5em;
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 6.2vw, 6rem);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.team-hero__title span {
  display: block;
}

html[lang="en"] .team-hero__title {
  max-width: 11.5em;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
}

.team-hero__description {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--color-soft);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}

.team-hero__signal {
  position: relative;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  justify-self: end;
}

.team-hero__signal::before,
.team-hero__signal::after,
.team-hero__orbit {
  content: "";
  position: absolute;
  border: 1px solid var(--color-line);
  border-radius: 50%;
}

.team-hero__signal::before {
  inset: 7%;
}

.team-hero__signal::after {
  inset: 25%;
  border-color: var(--color-line-strong);
}

.team-hero__orbit {
  inset: 40%;
  border-color: rgba(111, 234, 255, 0.5);
  box-shadow: 0 0 4rem rgba(111, 234, 255, 0.08);
}

.team-hero__node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-muted);
  font: 600 0.625rem/1 var(--font-mono);
}

.team-hero__node--human {
  inset: 50% auto auto 50%;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%);
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 3rem rgba(111, 234, 255, 0.18);
}

.team-hero__node--agent::after {
  content: "";
  position: absolute;
  inset: -0.28rem;
  border: 1px solid rgba(111, 234, 255, 0.1);
  border-radius: inherit;
}

.team-hero__node--a { top: 3%; left: 47%; }
.team-hero__node--b { top: 26%; right: 7%; }
.team-hero__node--c { right: 12%; bottom: 17%; }
.team-hero__node--d { bottom: 4%; left: 37%; }
.team-hero__node--e { bottom: 23%; left: 4%; }
.team-hero__node--f { top: 19%; left: 10%; }

.founder-section {
  background: var(--color-bg);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: stretch;
  border: 1px solid var(--color-line-strong);
  border-radius: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(111, 234, 255, 0.08), transparent 35%),
    var(--color-surface);
}

.founder-card__identity {
  display: grid;
  grid-template-columns: 3rem 8.5rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3.75rem);
}

.founder-card__index,
.agent-card__topline {
  color: var(--color-accent);
  font: 600 0.675rem/1.25 var(--font-mono);
  letter-spacing: 0.08em;
}

.founder-card__monogram {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font: 500 clamp(2.75rem, 5vw, 4.5rem)/1 var(--font-brand);
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 2rem rgba(111, 234, 255, 0.06);
}

.member-type {
  margin-bottom: 1rem;
  color: var(--color-muted);
  font: 600 0.625rem/1.3 var(--font-mono);
  letter-spacing: 0.12em;
}

.founder-card h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.member-role {
  margin-bottom: 0;
  color: var(--color-soft);
  font-size: 0.95rem;
}

.founder-card__bio {
  display: flex;
  align-items: center;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.75rem);
  border-left: 1px solid var(--color-line-strong);
  color: var(--color-muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.8;
}

.agents-section {
  background: var(--color-surface);
}

.agents-section::before,
.agents-section::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--color-line);
}

.agents-section::before { top: 0; }
.agents-section::after { bottom: 0; }

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-line-strong);
  border-left: 1px solid var(--color-line-strong);
  list-style: none;
}

.agent-card {
  position: relative;
  min-width: 0;
  min-height: 27rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
  background: rgba(8, 9, 10, 0.25);
  transition: background-color 180ms ease;
}

.agent-card:hover {
  background: rgba(111, 234, 255, 0.035);
}

.agent-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.agent-badge {
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(111, 234, 255, 0.38);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 0.55rem;
}

.agent-card__mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  color: var(--color-accent);
  font: 600 0.75rem/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.agent-card h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.75rem, 2.7vw, 2.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.agent-card .member-role {
  min-height: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  font: 600 0.7rem/1.5 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.agent-card > p:not(.member-role, .agent-card__scope) {
  margin-bottom: 4rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.agent-card__scope {
  position: absolute;
  right: clamp(1.75rem, 3vw, 2.5rem);
  bottom: clamp(1.75rem, 3vw, 2.5rem);
  left: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font: 500 0.575rem/1.4 var(--font-mono);
  letter-spacing: 0.12em;
}

.team-principle {
  padding-block: clamp(7rem, 11vw, 10rem);
  background: var(--color-bg);
}

.team-principle__inner {
  display: grid;
  grid-template-columns: minmax(10rem, 3fr) minmax(0, 9fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.team-principle .eyebrow {
  align-self: start;
  margin-top: 0.85rem;
}

.team-principle h2 {
  max-width: 16ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 470;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.team-principle__inner > p:last-child {
  grid-column: 2;
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.075rem;
  line-height: 1.7;
}

.team-contact__email {
  min-width: min(100%, 20rem);
}

@media (prefers-reduced-motion: no-preference) {
  .team-hero__copy,
  .team-hero__signal {
    animation: team-enter 560ms var(--ease-out) both;
  }

  .team-hero__signal {
    animation-delay: 100ms;
  }

  .team-hero__node--agent {
    animation: agent-pulse 4s ease-in-out infinite;
  }

  .team-hero__node--b,
  .team-hero__node--e { animation-delay: -1.3s; }
  .team-hero__node--c,
  .team-hero__node--f { animation-delay: -2.6s; }
}

@keyframes team-enter {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes agent-pulse {
  0%, 100% { border-color: var(--color-line-strong); color: var(--color-muted); }
  50% { border-color: var(--color-accent); color: var(--color-accent); }
}

@media (max-width: 68rem) {
  .team-hero__inner {
    grid-template-columns: minmax(0, 6fr) minmax(17rem, 4fr);
    gap: 2.5rem;
  }

  .founder-card__identity {
    grid-template-columns: 2.5rem 7rem minmax(0, 1fr);
  }

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

@media (max-width: 54rem) {
  .team-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .team-hero__copy {
    max-width: 42rem;
  }

  .team-hero__signal {
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    z-index: -1;
    width: 24rem;
    opacity: 0.56;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-card__bio {
    border-top: 1px solid var(--color-line-strong);
    border-left: 0;
  }

  .team-principle__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .team-principle .eyebrow {
    margin-top: 0;
  }

  .team-principle__inner > p:last-child {
    grid-column: 1;
  }
}

@media (max-width: 38rem) {
  .team-hero {
    min-height: max(100svh, 44rem);
  }

  .team-hero__inner {
    min-height: max(100svh, 44rem);
    padding-bottom: 6rem;
  }

  .team-hero__title,
  html[lang="en"] .team-hero__title {
    font-size: clamp(2.85rem, 13vw, 3.55rem);
  }

  .team-hero__signal {
    right: -7rem;
    bottom: -4rem;
    width: 21rem;
    opacity: 0.42;
  }

  .founder-card__identity {
    grid-template-columns: 2rem 5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.75rem 1.25rem;
  }

  .founder-card h3 {
    font-size: 2.25rem;
  }

  .founder-card__bio {
    padding: 1.75rem 1.25rem;
  }

  .agent-grid {
    grid-template-columns: 1fr;
  }

  .agent-card {
    min-height: 25rem;
    padding: 1.75rem 1.25rem;
  }

  .agent-card__scope {
    right: 1.25rem;
    bottom: 1.75rem;
    left: 1.25rem;
  }

  .team-principle {
    padding-block: 6.5rem;
  }

  .team-principle h2 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .team-contact__email {
    width: 100%;
    font-size: 0.78rem;
  }
}
