.team-main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 20%, rgba(214,171,80,.05), transparent 34%),
    radial-gradient(circle at 85% 25%, rgba(214,171,80,.05), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(214,171,80,.06), transparent 34%);
  z-index: -1;
}

.team-hero__copy code, .team-empty code {
  font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size: .92em;
  color: #fff;
  background: rgba(255,255,255,.06);
  padding: .16rem .38rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
}

.team-section-head h2 {
  margin: 0;
  font-size: clamp(1.2rem,2vw,1.78rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.team-section-head p {
  margin: 7px 0 0;
  color: rgba(231,235,255,.72);
  font-size: .88rem;
  line-height: 1.45;
  max-width: 720px;
  text-align: center;
}

.team-empty {
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(14,11,32,.88), rgba(10,9,24,.92));
}

.team-empty h2 {
  margin: 0 0 9px;
  font-size: 1.28rem;
  letter-spacing: -.03em;
}

.team-empty p {
  margin: 0;
  color: rgba(231,235,255,.72);
  line-height: 1.65;
}

.skeleton-section, .team-grid.is-loading .team-section-card {
  pointer-events: none;
}

.skeleton {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.12), rgba(255,255,255,.05));
  background-size: 220% 100%;
  animation: teamShimmer 1.2s linear infinite;
}

.skeleton-line {
  height: 14px;
}

.skeleton-line--small {
  width: 120px;
}

.skeleton-line--title {
  width: 220px;
  height: 28px;
  margin-top: 12px;
}

.skeleton-line--text {
  width: min(560px,100%);
  margin-top: 12px;
}

.skeleton-card {
  min-height: 76px;
  border-radius: 18px;
}

@keyframes teamShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.team-hero__copy p {
  margin: 0;
  max-width: 760px;
  color: rgba(231,235,255,.74);
  text-align: center;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

.team-section-title, .team-member-name {
  font-family: Teko, Inter, sans-serif !important;
  text-transform: uppercase;
}

.team-section-copy, .team-member-meta, .team-member-role {
  font-size: 11px !important;
  line-height: 1.6 !important;
  color: var(--elyon-muted) !important;
}

.team-hero, .team-hero__inner, .team-hero__content {
  text-align: center !important;
}

.team-hero__inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.team-hero__content {
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.team-hero .section-eyebrow, .team-hero h1, .team-hero p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.team-hero p {
  max-width: 760px !important;
}

.team-hero__actions, .team-refresh {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.team-hero__copy {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  max-width: 780px !important;
  align-items: center !important;
  text-align: center !important;
}

.team-hero .section-eyebrow {
  margin-bottom: 6px !important;
}

.team-hero__copy h1 {
  margin: 4px 0 0 !important;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: .92 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}

.team-refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
  white-space: nowrap;
  min-height: 40px !important;
  padding: 0 16px !important;
  border-radius: 0 !important;
  border: 1px solid var(--elyon-line) !important;
  background: linear-gradient(180deg, rgba(18,18,22,.98), rgba(10,10,12,.98)) !important;
  box-shadow: none !important;
  font-size: 11px !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
}

.team-refresh-btn:hover {
  transform: none !important;
  border-color: var(--elyon-line-strong) !important;
  box-shadow: inset 0 0 0 1px rgba(214,171,80,.06) !important;
}

.team-grid {
  display: grid;
  gap: 20px !important;
  justify-items: center !important;
}

.team-section-card {
  --members-per-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  --member-card-w: 236px;
  --member-gap: 10px;
  position: relative !important;
  width: min(100%, calc((var(--members-per-row) * var(--member-card-w)) + ((var(--members-per-row) - 1) * var(--member-gap)) + 42px)) !important;
  padding: 18px 18px 18px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(214,171,80,.12) !important;
  background: linear-gradient(180deg, rgba(13,13,17,.96), rgba(7,8,12,.98)) !important;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%) !important;
  box-shadow: 0 20px 38px rgba(0,0,0,.20) !important;
}

.team-section-card::before {
  z-index: -1;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--section-color, #d6ab50) 18%, transparent) 0%, transparent 42%) !important;
  pointer-events: none !important;
}

.team-section-card::after {
  content: "";
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--section-color, #d6ab50), transparent 74%) !important;
  opacity: 1 !important;
}

.team-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100% !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(214,171,80,.10) !important;
}

.team-section-head__meta {
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  display: none !important;
}

.team-section-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 !important;
  color: rgba(231,235,255,.58) !important;
  font-size: 10px !important;
  letter-spacing: .20em !important;
}

.team-section-title {
  margin: 0 !important;
  font-family: Teko, Inter, sans-serif !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: .9 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

.team-section-copy {
  margin: 0 !important;
  max-width: 760px !important;
  color: var(--elyon-muted) !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
  text-align: center !important;
}

.team-members-grid {
  display: grid;
  justify-content: center;
  align-items: start;
  max-width: 100%;
  width: 100% !important;
  margin: 0 auto !important;
  grid-template-columns: repeat(var(--members-per-row), minmax(0, var(--member-card-w))) !important;
  gap: var(--member-gap) !important;
}

.team-member-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0,1fr) !important;
  align-items: center !important;
  gap: 12px !important;
  width: var(--member-card-w) !important;
  min-width: var(--member-card-w) !important;
  max-width: var(--member-card-w) !important;
  min-height: 84px !important;
  padding: 14px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(214,171,80,.10) !important;
  background: linear-gradient(180deg, rgba(11,12,17,.98), rgba(7,8,12,.98)) !important;
  box-shadow: none !important;
}

.team-member-card::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2px !important;
  background: color-mix(in srgb, var(--role-color, var(--section-color, #d6ab50)) 78%, white 6%) !important;
}

.team-member-avatar {
  object-fit: cover;
  background: rgba(255,255,255,.04);
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(214,171,80,.14) !important;
  box-shadow: none !important;
}

.team-member-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0 !important;
  align-items: flex-start !important;
}

.team-member-name {
  display: block;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Teko, Inter, sans-serif !important;
  font-size: 20px !important;
  line-height: .88 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

.team-member-username {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px !important;
  color: #f0cc7a !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.team-member-meta {
  display: flex !important;
  align-items: center !important;
  margin-top: 8px !important;
}

.team-member-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  max-width: 100%;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 22px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, color-mix(in srgb, var(--role-color, var(--section-color, #d6ab50)) 72%, #f6d693 10%), color-mix(in srgb, var(--role-color, var(--section-color, #d6ab50)) 46%, transparent)) !important;
  border: 1px solid color-mix(in srgb, var(--role-color, var(--section-color, #d6ab50)) 82%, #f6d693 12%) !important;
  color: #fff !important;
  font-size: 10px !important;
  letter-spacing: .08em !important;
  box-shadow: none !important;
}

.team-empty-state {
  width: 100% !important;
  min-width: 0 !important;
  padding: 14px 16px !important;
  border-radius: 999px !important;
  border: 1px dashed rgba(214,171,80,.16) !important;
  color: var(--elyon-muted) !important;
  background: rgba(255,255,255,.02) !important;
  text-align: center !important;
}

@media (max-width:1280px) {
  .team-section-card {
    max-width: 100%;
    width: min(100%, 1040px) !important;
  }

  .team-members-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .team-member-card, .team-empty-state {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}

@media (max-width:1120px) {
  .team-members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width:860px) {
  .team-hero__copy, .team-hero__actions {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .team-hero__content {
    max-width: 100% !important;
  }

  .team-main {
    padding-top: 22px;
    padding: 88px 0 44px !important;
  }

  .team-hero__grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 22px 16px 18px !important;
  }

  .team-hero__copy h1 {
    font-size: clamp(36px, 12vw, 56px) !important;
  }

  .team-section-card {
    width: 100% !important;
    padding: 16px !important;
  }

  .team-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:640px) {
  .team-member-card {
    grid-template-columns: 42px minmax(0,1fr);
  }

  .team-members-grid {
    grid-template-columns: 1fr !important;
  }
}

.team-hero .shell {
  width: 100%;
  justify-content: center !important;
  display: block !important;
}

.team-hero__grid {
  text-align: center;
  grid-template-columns: minmax(0,1fr) auto;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  padding: 26px 24px 22px !important;
  border: 1px solid var(--elyon-line) !important;
  background: linear-gradient(180deg, rgba(13,13,16,.96), rgba(9,9,12,.99)) !important;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px)) !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  justify-items: center !important;
  box-shadow: none !important;
}

.team-hero__lead {
  margin: 10px auto 0 !important;
  color: var(--elyon-muted) !important;
  font-size: 12px !important;
  line-height: 1.75 !important;
  text-align: center !important;
  max-width: 760px !important;
}

.team-hero__actions {
  display: flex;
  width: auto !important;
  justify-content: center !important;
}

.team-main {
  position: relative;
  padding: 0 0 56px !important;
}

.team-toolbar {
  padding: 14px 0 6px !important;
}

.team-toolbar__inner {
  display: flex !important;
  justify-content: center !important;
}

.team-content {
  padding-top: 8px !important;
}

.team-hero {
  justify-content: center;
  display: block !important;
  padding: 12px 0 10px !important;
  background: none !important;
}

.team-hero .shell.page-hero__inner {
  width: var(--shell) !important;
  max-width: var(--shell) !important;
  margin: 0 auto !important;
  padding: 18px !important;
  text-align: center !important;
  border: 1px solid var(--elyon-line) !important;
  background: linear-gradient(180deg, rgba(13,13,16,.94), rgba(10,10,13,.98)) !important;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px)) !important;
  box-shadow: none !important;
}

.team-hero .page-hero__eyebrow {
  margin-inline: auto !important;
}

.team-hero .page-hero__title {
  margin: 14px 0 10px !important;
  font-size: clamp(42px,5vw,74px) !important;
  line-height: .9 !important;
  letter-spacing: .03em !important;
}

.team-hero .page-hero__lead {
  margin: 0 auto !important;
  max-width: 760px !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

@media (max-width:740px) {
  .team-hero .page-hero__title {
    font-size: clamp(36px,10vw,56px) !important;
  }
}
