@charset "UTF-8";
:root {
  --teal: #009695;
  --teal-d: #007574;
  --teal-l: #33B5B4;
  --teal-ll:#5ECECE;
  --teal-bg:#EAF6F6;
  --teal-bg2:#F0FAFA;
  --ink: #0A1414;
  --mid: #3A5252;
  --muted: #6B8888;
  --line: rgba(0,0,0,0.08);
  --lineb: rgba(0,0,0,0.05);
  --white: #ffffff;
  --off: #F5FAFA;
  --hero-bg:#F2FAFA;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  transition: background 0.3s, border-bottom 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo-wrap .logo {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  height: 46px;
}
.logo-wrap .logo__mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
}
.logo-wrap .logo__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38.4px;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  position: relative;
  padding-top: 2px;
}
.nav-links .link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--mid);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links .link:hover {
  color: var(--teal);
}

.nav-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 17px;
  color: currentColor;
  transition: transform 0.2s;
}

.nav-item--has-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: max(100%, 146px);
  height: 16px;
}
.nav-item--has-sub:hover > .link, .nav-item--has-sub:focus-within > .link {
  color: var(--teal);
}
.nav-item--has-sub:hover .nav-chevron, .nav-item--has-sub:focus-within .nav-chevron {
  transform: rotate(180deg);
}
.nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
    transform: none;
  }
}

.depth2 {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 146px;
  padding: 16px 20px;
  margin: 0;
  list-style: none;
  background: var(--teal);
  border-radius: 20px;
  box-shadow: 0 4px 9px rgba(0, 150, 149, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.nav-item--has-sub:not(:hover):not(:focus-within) .depth2 {
  transition-delay: 0.12s, 0.12s, 0s;
}
.depth2 .depth2-item {
  width: 100%;
}
.depth2 .link {
  justify-content: center;
  width: 100%;
  color: #fff;
  text-align: center;
}
.depth2 .link:hover {
  color: #fff;
  opacity: 0.85;
}

.ncta {
  display: inline-flex;
  align-items: center;
  background: var(--teal) !important;
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 26.24px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  box-shadow: 0 2px 6px rgba(0, 150, 149, 0.22);
  transition: background 0.2s, box-shadow 0.2s !important;
}
.ncta:hover {
  background: var(--teal-d) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 150, 149, 0.32) !important;
}

nav > .nav-mobile__btn {
  display: none;
}

@media (max-width: 991.98px) {
  nav {
    padding: 16px 28.8px;
  }
  nav > .nav-links {
    display: none;
  }
  nav > .nav-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }
  nav > .nav-mobile__btn svg path {
    stroke: var(--mid);
  }
}
body.nav-mobile-open {
  overflow: hidden;
}

.nav-mobile {
  z-index: 700;
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  height: 100%;
  transition: 500ms all;
  text-align: left;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
}
.nav-mobile.active {
  right: 0;
}
.nav-mobile__btn {
  display: none;
}
.nav-mobile__bg {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 650;
}
.nav-mobile__head {
  height: 60px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.nav-mobile__head .logo-wrap .logo {
  width: 116px;
  height: 38px;
}
.nav-mobile__head .logo-wrap .logo__mark {
  left: 2px;
  width: 28px;
  height: 28px;
}
.nav-mobile__head .logo-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}
.nav-mobile__btn--close {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mid);
  font-size: 1.25rem;
  cursor: pointer;
}
.nav-mobile__body {
  padding-bottom: 50px;
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 60px);
}
.nav-mobile .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.nav-mobile .nav-links > li {
  padding-top: 0;
}
.nav-mobile .nav-links > li::after {
  display: none;
}
.nav-mobile .nav-links > li > .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  white-space: normal;
}
.nav-mobile .nav-links > li > .link:hover {
  color: var(--teal);
}
.nav-mobile .nav-links > li > .link.active {
  color: var(--teal);
}
.nav-mobile .nav-links .ncta {
  justify-content: center;
  margin: 1rem 1.25rem 0;
  width: calc(100% - 2.5rem);
}
@media (max-width: 991.98px) {
  .nav-mobile .nav-links .ncta {
    margin: 1rem 0 0;
  }
}
.nav-mobile .nav-item--has-sub > .link .nav-chevron {
  transition: transform 0.2s;
}
.nav-mobile .nav-item--has-sub.is-open > .link .nav-chevron {
  transform: rotate(180deg);
}
.nav-mobile .depth2 {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  background: var(--teal-bg);
  border-radius: 0;
  box-shadow: none;
  display: none;
  gap: 0;
}
.nav-mobile .depth2 .link {
  justify-content: flex-start;
  padding: 0.85rem 1.25rem 0.85rem 2rem;
  font-size: 0.92rem;
  color: var(--mid);
  border-bottom: 1px solid rgba(0, 150, 149, 0.08);
  text-align: left;
}
.nav-mobile .depth2 .link:hover, .nav-mobile .depth2 .link.active {
  color: var(--teal-d);
  opacity: 1;
}
.nav-mobile .depth-1 > .link {
  text-align: left;
  color: #000;
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 1rem 1rem;
  font-size: 1.2rem;
  position: relative;
}
.nav-mobile .depth-1 > .link.active {
  color: #fff;
}
.nav-mobile .depth-2 > .link {
  display: block;
  padding: 0.7rem 1rem;
  padding-left: 1.6rem;
  background-color: rgb(244.8, 244.8, 244.8);
  color: #555;
  font-size: 1rem;
}
.nav-mobile .depth-2:first-child > .link {
  padding-top: 1rem;
}
.nav-mobile .depth-2:last-child > .link {
  padding-bottom: 1rem;
}
.nav-mobile .depth-3 > .link {
  display: block;
  padding: 0.8rem 1rem;
  padding-left: 2.4rem;
  background-color: rgb(234.6, 234.6, 234.6);
  color: #555;
  font-size: 0.8rem;
}
.nav-mobile .depth-1 > .link,
.nav-mobile .depth-2 > .link {
  display: block;
  position: relative;
}
.nav-mobile .depth-1._down > .link.active:before,
.nav-mobile .depth-2._down > .link.active:before {
  content: "\e944";
}
.nav-mobile .depth-1._down > .link:before,
.nav-mobile .depth-2._down > .link:before {
  position: absolute;
  top: 50%;
  font-size: 1rem;
  margin-top: -0.5rem;
  right: 1rem;
}
.nav-mobile .nav-list--depth2,
.nav-mobile .nav-list--depth3 {
  display: none;
}

:root {
  --teal-dk:#005F5F;
  --cyan:#7CEDE2;
  --coral:#FF7A8A;
  --soft:var(--muted);
  --bg:#F4F8F8;
  --border:rgba(0,150,149,.12);
  --font:'Segoe UI',system-ui,sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.main-body.diode-home {
  padding-top: 0;
}

.main-body.diode-home .main {
  min-height: auto;
}

/* ── HERO — light teal, dark ink text, teal circuit canvas ── */
.team-hero {
  background: #F2FAFA;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 150, 149, 0.1);
  padding-top: 88px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-d);
  border: 1px solid rgba(0, 150, 149, 0.28);
  border-radius: 2em;
  background: rgba(0, 150, 149, 0.07);
  padding: 0.35em 1em;
  margin-bottom: 1.6rem;
}

.hero-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: hpulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hpulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
.team-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.06;
  max-width: 620px;
  margin: 0 0 1.2rem;
}

.team-hero h1 span {
  color: var(--teal);
}

.team-hero p {
  font-size: 0.97rem;
  color: var(--mid);
  max-width: 520px;
  margin: 0;
  line-height: 1.78;
}

/* ── SECTIONS ── */
.team-section {
  padding: 72px 0;
}

.team-section.alt {
  background: var(--white);
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 991.98px) {
  .wrap {
    padding: 0 1.3rem;
  }
}

.sec-header {
  margin-bottom: 40px;
}

.sec-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 150, 149, 0.07);
  border: 1px solid rgba(0, 150, 149, 0.18);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.sec-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 24px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.sec-desc {
  font-size: 0.87rem;
  color: var(--soft);
  max-width: 600px;
  line-height: 1.65;
  margin-top: 8px;
}

/* ── GRIDS ── */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.strat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* SAB side-by-side split */
.sab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.sab-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sab-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.sab-data-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* responsive */
@media (max-width: 960px) {
  .founders-grid {
    grid-template-columns: 1fr 1fr;
  }
  .strat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sab-split {
    grid-template-columns: 1fr;
  }
  .sab-data-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .team-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .strat-grid {
    grid-template-columns: 1fr;
  }
  .sab-grid-2 {
    grid-template-columns: 1fr;
  }
  .sab-col-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content {
    padding: 72px 17px;
  }
}
@media (max-width: 480px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .team-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ── SAB sub-section badges ── */
.sub-badge {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}

.sub-badge.immuno {
  background: rgba(0, 150, 149, 0.1);
  color: #007574;
  border: 1px solid rgba(0, 150, 149, 0.25);
}

.sub-badge.onco {
  background: rgba(0, 150, 149, 0.1);
  color: #007574;
  border: 1px solid rgba(0, 150, 149, 0.25);
}

.sub-badge.data {
  background: rgba(0, 150, 149, 0.07);
  color: var(--teal);
  border: 1px solid rgba(0, 150, 149, 0.2);
}

/* ── CONCEPT CANVAS ── */
.concept-canvas-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #F6FBFB;
}

.concept-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 300px;
}

/* Biomarker canvas stretches to match adjacent card */
.biomarker-wrap {
  height: 100%;
  min-height: 320px;
}

.biomarker-wrap canvas {
  height: 100% !important;
  min-height: 320px;
}

.concept-canvas-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;
}

.concept-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  width: fit-content;
}

.concept-badge.immuno {
  background: rgba(0, 150, 149, 0.18);
  color: #005F5F;
  border: 1px solid rgba(0, 150, 149, 0.38);
}

.concept-badge.onco {
  background: rgba(0, 150, 149, 0.18);
  color: #005F5F;
  border: 1px solid rgba(0, 150, 149, 0.38);
}

.concept-badge.data-badge {
  background: rgba(0, 150, 149, 0.1);
  color: var(--teal-d);
  border: 1px solid rgba(0, 150, 149, 0.28);
}

.concept-canvas-label strong {
  font-size: 0.78rem;
  color: var(--ink);
  display: block;
}

.concept-canvas-label > span:last-child {
  font-size: 0.7rem;
  color: var(--soft);
  max-width: 280px;
  line-height: 1.35;
}

/* ── CARDS ── */
.pcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  opacity: 0;
  transform: translateY(16px);
}

.pcard.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s, border-color 0.25s;
}

.pcard:hover {
  box-shadow: 0 6px 28px rgba(0, 150, 149, 0.13);
  transform: translateY(-2px);
  border-color: rgba(0, 150, 149, 0.25);
}

.pcard.open {
  box-shadow: 0 10px 40px rgba(0, 150, 149, 0.16);
  border-color: rgba(0, 150, 149, 0.35);
}

.pcard-photo {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

.pcard-founder .pcard-photo {
  aspect-ratio: 1/1;
}

.pcard-strat .pcard-photo, .pcard-med .pcard-photo, .pcard-sab .pcard-photo {
  aspect-ratio: 1;
}

.pcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}

.pcard:hover .pcard-photo img {
  transform: scale(1.04);
}

/* ── Gradient placeholder (no photo) ── */
.pcard-gradient-ph {
  overflow: hidden;
}

.pcard-founder .pcard-body {
  padding: 22px 24px 18px;
}

.pcard-strat .pcard-body {
  padding: 13px 15px 11px;
}

.pcard-med .pcard-body, .pcard-sab .pcard-body {
  padding: 15px 16px 12px;
}

.pcard-subsect {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.pcard-founder .pcard-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 3px;
}

.pcard-strat .pcard-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 2px;
}

.pcard-med .pcard-name, .pcard-sab .pcard-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 2px;
}

.pcard-creds {
  font-size: 0.67rem;
  color: var(--soft);
  margin-bottom: 4px;
  line-height: 1.4;
}

.pcard-founder .pcard-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-d);
  line-height: 1.4;
  margin-bottom: 10px;
}

.pcard-strat .pcard-role, .pcard-med .pcard-role, .pcard-sab .pcard-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-d);
  line-height: 1.35;
  margin-bottom: 8px;
}

.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.pt {
  font-size: 0.59rem;
  font-weight: 600;
  background: rgba(0, 150, 149, 0.07);
  color: var(--teal-d);
  border-radius: 20px;
  padding: 2px 7px;
}

.pcard-cta {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--teal);
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pcard-cta::after {
  content: "▾";
  display: inline-block;
  transition: transform 0.3s;
}

.pcard.open .pcard-cta::after {
  transform: rotate(180deg);
}

.pcard:hover .pcard-cta, .pcard.open .pcard-cta {
  opacity: 1;
}

.bio-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.pcard.open .bio-panel {
  max-height: 900px;
}

.bio-inner {
  position: relative;
  padding: 30px 18px 20px;
  border-top: 1px solid var(--border);
}

.bio-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--soft);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 4px 6px;
}

.bio-close:hover {
  opacity: 1;
}

.bio-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.bio-circuit path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 0.9;
  opacity: 0.18;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  stroke-linecap: round;
}

.pcard.open .bio-circuit path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s ease 0.1s;
}

.bio-text {
  position: relative;
  z-index: 2;
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.bio-text p + p {
  margin-top: 0.8em;
}

.pcard.open .bio-text {
  opacity: 1;
  transform: none;
}

.bio-org {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 150, 149, 0.08);
  opacity: 0;
  transition: opacity 0.3s ease 0.65s;
}

.pcard.open .bio-org {
  opacity: 1;
}

.borg {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--soft);
  border: 1px solid rgba(0, 150, 149, 0.18);
  border-radius: 3px;
  padding: 2px 7px;
  background: rgba(0, 150, 149, 0.04);
}

/* ── PARTNERS MARQUEE ── */
.team-partners {
  margin-top: 112px;
  margin-bottom: -72px;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.team-partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/sub/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.team-partners__inner {
  position: relative;
  z-index: 1;
}

.team-partners__title {
  font-size: clamp(1.6rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 50px;
}

.team-partners__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.team-partners__track {
  display: flex;
  width: max-content;
  animation: partner-marquee 42s linear infinite;
  gap: 60px;
  will-change: transform;
}

.team-partners__list {
  display: flex;
  align-items: center;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.team-partners__item {
  flex: 0 0 280px;
  width: 280px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-partners__item img {
  display: block;
  object-fit: contain;
}

@keyframes partner-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 700px) {
  .team-partners {
    padding: 72px 0 88px;
  }
  .team-partners__inner {
    padding: 0 20px;
  }
  .team-partners__list {
    gap: 36px;
  }
  .team-partners__item {
    flex: 0 0 200px;
    width: 200px;
    height: 82px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-partners__track {
    animation: none;
  }
}
.diode-footer {
  background: #0a1414;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 33px 0 32px;
  z-index: 1;
  position: relative;
}

.diode-footer .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diode-footer .wrap .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.diode-footer .wrap .f-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.diode-footer .wrap .flinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.diode-footer .wrap .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.diode-footer .wrap .flink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.diode-footer .wrap .design {
  font-size: 14px;
  font-weight: 600;
  color: #FF7A8A;
}
.diode-footer .wrap .flink:hover {
  color: rgba(255, 255, 255, 0.55);
}
.diode-footer .wrap .fsep {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.12);
  -webkit-user-select: none;
          user-select: none;
}
.diode-footer .wrap .fsocial {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.diode-footer .wrap .fsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.diode-footer .wrap .fsoc:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.diode-footer .wrap .fcopy {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .diode-footer .wrap {
    padding: 0 1.3rem;
  }
  .frow {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .flinks {
    order: 3;
  }
  .fsocial {
    order: 2;
  }
}
.avatar-svg {
  width: 100%;
  height: 100%;
  display: block;
}