:root {
  --navy-950: #01030f;
  --navy-900: #020616;
  --navy-800: #050a1b;
  --violet-deep: #140c3d;
  --lime: #b9c85a;
  --blue: #4ea8ff;
  --blue-soft: rgba(78, 168, 255, 0.85);
  --ink: #f7fbff;
  --ink-soft: #c5cee7;
  --ink-subtle: #8890aa;
  --line: rgba(255, 255, 255, 0.1);
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;


  --team-hero-left-push: clamp(56px, 6.4vw, 104px);
}


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


html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--navy-950);
  color-scheme: dark;
}


body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}


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


.team-main,
.team-main * {
  box-sizing: border-box;
}


.team-main {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: block;
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow: hidden;
}


.team-main :where(h1, h2, h3, p, span, small, strong, em, li, label) {
  cursor: default;
}


.team-main :where(a, button, [role="button"]) {
  cursor: pointer;
}


/* ==============================
  TEAM HERO
============================== */


.team-hero {
  position: relative;
  isolation: isolate;
  width: 100vw;
  max-width: 100vw;
  min-height: clamp(540px, 68vh, 720px);
  margin-top: calc(var(--cb-header-offset, 0px) * -1);
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #100833 0%,
      #09051f 10%,
      #01030f 100%
    );
}


.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.16;
}


.team-hero-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100vw - 64px));
  min-height: clamp(540px, 68vh, 720px);
  margin: 0 auto;
  padding-top: calc(var(--cb-header-offset, 0px) + clamp(96px, 14vh, 148px));
  padding-right: 0;
  padding-bottom: clamp(86px, 10vh, 128px);
  padding-left: var(--team-hero-left-push);
  display: grid;
  align-items: center;
  justify-items: start;
  text-align: left;
}


.team-hero-copy {
  width: min(100%, 980px);
  display: grid;
  justify-items: start;
  align-content: center;
  text-align: left;
}


.team-title {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.94;
  font-weight: 550;
  letter-spacing: -0.078em;
  text-wrap: balance;
}


.team-subtitle {
  max-width: 720px;
  margin: clamp(26px, 3vw, 38px) 0 0;
  color: rgba(247, 251, 255, 0.88);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.045em;
}


.team-hero-nav {
  margin-top: clamp(46px, 5vw, 68px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(20px, 2.8vw, 38px);
}


.team-hero-nav a {
  position: relative;
  color: rgba(197, 206, 231, 0.54);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
  text-decoration: none;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}


.team-hero-nav a:hover,
.team-hero-nav a:focus-visible,
.team-hero-nav a.is-active {
  color: var(--blue);
  text-decoration: none;
  outline: none;
}


.team-hero-nav a.is-active::after {
  content: none;
  display: none;
}


.team-hero .team-title,
.team-hero .team-subtitle,
.team-hero .team-hero-nav {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


.team-hero.is-ready .team-title,
.team-hero.is-ready .team-subtitle,
.team-hero.is-ready .team-hero-nav {
  animation: teamHeroIn 620ms ease both;
}


.team-hero.is-ready .team-subtitle {
  animation-delay: 90ms;
}


.team-hero.is-ready .team-hero-nav {
  animation-delay: 160ms;
}


@keyframes teamHeroIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }


  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/* ==============================
  RESPONSIVE
============================== */


@media (max-width: 980px) {
  :root {
    --team-hero-left-push: clamp(28px, 5vw, 56px);
  }


  .team-hero-shell {
    width: min(100% - 56px, 920px);
  }


  .team-title {
    max-width: 760px;
    font-size: clamp(54px, 10vw, 86px);
    line-height: 0.96;
  }


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


@media (max-width: 760px) {
  :root {
    --team-hero-left-push: 0px;
  }


  .team-hero {
    min-height: clamp(520px, 72vh, 680px);
  }


  .team-hero-shell {
    width: min(100% - 36px, 620px);
    min-height: clamp(520px, 72vh, 680px);
    padding-top: calc(var(--cb-header-offset, 0px) + 86px);
    padding-bottom: 86px;
  }


  .team-title {
    max-width: 100%;
    font-size: clamp(48px, 13vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.074em;
  }


  .team-subtitle {
    font-size: 19px;
    line-height: 1.32;
  }


  .team-hero-nav {
    margin-top: 42px;
    gap: 18px 24px;
  }


  .team-hero-nav a {
    font-size: 15px;
  }
}


@media (max-width: 460px) {
  .team-hero-nav {
    display: grid;
    justify-items: start;
    gap: 18px;
  }

}


@media (prefers-reduced-motion: reduce) {
  .team-hero .team-title,
  .team-hero .team-subtitle,
  .team-hero .team-hero-nav {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }


  .team-hero-nav a {
    transition: none !important;
  }
}


/* ==============================
  TEAM FOUNDER SECTION
============================== */


.team-founder-section {
  position: relative;
  color: var(--ink);
  padding: clamp(92px, 8vw, 132px) 0 clamp(108px, 9vw, 154px);
  overflow: hidden;
}


.team-founder-shell {
  width: min(1320px, calc(100vw - 64px));
  margin: 0 auto;
  padding-left: 0;
  display: grid;
  justify-items: center;
}


.team-founder-grid {
  width: min(100%, 790px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}


.team-founder-card {
  position: relative;
  min-height: clamp(340px, 30vw, 410px);
  overflow: hidden;
  border-radius: 4px;
  background: #101116;
  color: var(--ink);
}


.team-founder-card--photo {
  isolation: isolate;
}


.team-founder-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
}


.team-founder-card--photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 44%;
  background:
    linear-gradient(
      180deg,
      rgba(1, 3, 15, 0) 0%,
      rgba(1, 3, 15, 0.72) 58%,
      rgba(1, 3, 15, 0.94) 100%
    );
  pointer-events: none;
}


.team-founder-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 96px;
  padding: 22px 24px 24px;
  display: grid;
  align-items: end;
}


.team-founder-info h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: -0.055em;
}


.team-founder-info p {
  margin: 8px 0 0;
  color: rgba(197, 206, 231, 0.68);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}


.team-founder-card--quote {
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  align-content: space-between;
  background: #17181c;
}


.team-founder-quote-mark {
  color: rgba(247, 251, 255, 0.22);
  font-size: clamp(50px, 4.4vw, 72px);
  line-height: 0.8;
  font-weight: 500;
  letter-spacing: 1em;
}


.team-founder-card blockquote {
  max-width: 330px;
  margin: 0;
  color: rgba(247, 251, 255, 0.92);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -0.06em;
}


.team-founder-section .team-founder-card {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}


.team-founder-section.is-visible .team-founder-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


.team-founder-section.is-visible .team-founder-card:nth-child(2) {
  transition-delay: 110ms;
}


/* ==============================
  RESPONSIVE
============================== */


@media (max-width: 980px) {
  .team-founder-shell {
    width: min(100% - 56px, 920px);
  }


  .team-founder-grid {
    width: min(100%, 720px);
  }
}


@media (max-width: 760px) {
  .team-founder-section {
    padding: 82px 0 118px;
  }


  .team-founder-shell {
    width: min(100% - 36px, 620px);
  }


  .team-founder-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }


  .team-founder-card {
    min-height: 390px;
  }


  .team-founder-card--quote {
    min-height: 300px;
  }


  .team-founder-card blockquote {
    max-width: 420px;
    font-size: clamp(29px, 8.5vw, 42px);
  }
}


@media (prefers-reduced-motion: reduce) {
  .team-founder-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ==============================
  TEAM VALUES SECTION
============================== */


.team-values-section {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  padding: clamp(82px, 7vw, 112px) 0 clamp(88px, 7vw, 118px);
  overflow: hidden;
  background: #01030f;
}


.team-values-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100vw - 64px));
  margin: 0 auto;
  padding-left: var(--team-hero-left-push, 0px);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(52px, 8vw, 122px);
  align-items: start;
}


.team-values-copy {
  min-width: 0;
  padding-top: 10px;
}


.team-values-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: -0.075em;
}


.team-values-copy p {
  max-width: 340px;
  margin: clamp(24px, 2.6vw, 34px) 0 0;
  color: rgba(197, 206, 231, 0.68);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.48;
  font-weight: 430;
  letter-spacing: -0.035em;
}


.team-values-list-wrap {
  position: relative;
  min-width: 0;
  padding-right: clamp(30px, 3vw, 48px);
}


.team-values-progress {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  width: 2px;
  background: rgba(247, 251, 255, 0.10);
  overflow: hidden;
}


.team-values-progress span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--team-values-progress, 0%);
  background:
    linear-gradient(
      to bottom,
      var(--lime) 0%,
      var(--blue) 52%,
      #9a86e8 100%
    );
  transition: height 320ms cubic-bezier(0.16, 1, 0.3, 1);
}


.team-values-list {
  display: grid;
  gap: 0;
}


.team-values-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 26px;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 2.4vw, 32px) 0;
  border-bottom: 1px solid rgba(247, 251, 255, 0.10);
  opacity: 0.56;
  cursor: pointer;
  outline: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}


.team-values-item:first-child {
  padding-top: 0;
}


.team-values-item:hover,
.team-values-item:focus-visible,
.team-values-item.is-active {
  opacity: 1;
}


.team-values-item::after {
  content: "+";
  grid-column: 3;
  align-self: start;
  justify-self: end;
  color: var(--lime);
  font-size: 25px;
  line-height: 1;
  font-weight: 420;
  transform: translateY(2px);
  transition:
    color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}


.team-values-item.is-active::after {
  content: "−";
  color: var(--blue);
  transform: translateY(2px);
}


  .team-values-item span {
  padding-top: 7px;
  color: var();
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}


.team-values-item div {
  grid-column: 2;
  min-width: 0;
}


.team-values-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.058em;
}


.team-values-item p {
  max-width: 560px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(197, 206, 231, 0.70);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.52;
  font-weight: 300;
  letter-spacing: -0.032em;
  transition:
    max-height 320ms ease,
    opacity 220ms ease,
    margin-top 220ms ease;
}


.team-values-item.is-active p {
  max-height: 150px;
  margin-top: 14px;
  opacity: 1;
}


/* Entrance */


.team-values-section .team-values-copy,
.team-values-section .team-values-item,
.team-values-section .team-values-progress {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}


.team-values-section.is-visible .team-values-copy,
.team-values-section.is-visible .team-values-item,
.team-values-section.is-visible .team-values-progress {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


.team-values-section.is-visible .team-values-progress {
  transition-delay: 80ms;
}


.team-values-section.is-visible .team-values-item:nth-child(1) {
  transition-delay: 120ms;
}


.team-values-section.is-visible .team-values-item:nth-child(2) {
  transition-delay: 180ms;
}


.team-values-section.is-visible .team-values-item:nth-child(3) {
  transition-delay: 240ms;
}


.team-values-section.is-visible .team-values-item:nth-child(4) {
  transition-delay: 300ms;
}


/* ==============================
  RESPONSIVE
============================== */


@media (max-width: 980px) {
  .team-values-shell {
    width: min(100% - 56px, 920px);
    grid-template-columns: 1fr;
    gap: 54px;
  }


  .team-values-copy h2 {
    max-width: 720px;
  }


  .team-values-copy p {
    max-width: 520px;
  }
}


@media (max-width: 760px) {
  .team-values-section {
    padding: 82px 0 112px;
  }


  .team-values-shell {
    width: min(100% - 36px, 620px);
    padding-left: 0;
    gap: 46px;
  }


  .team-values-copy h2 {
    font-size: clamp(44px, 13vw, 66px);
    line-height: 1.02;
  }


  .team-values-list-wrap {
    padding-right: 22px;
  }


  .team-values-progress {
    right: 0;
  }


  .team-values-item {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 26px 0;
  }


  .team-values-item span {
    grid-column: 1;
    padding-top: 0;
  }


  .team-values-item div {
    grid-column: 1;
  }


  .team-values-item::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }


  .team-values-item p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }


  .team-values-item.is-active p {
    margin-top: 8px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .team-values-copy,
  .team-values-item,
  .team-values-progress,
  .team-values-progress span,
  .team-values-item p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }


  .team-values-item p {
    max-height: none !important;
    margin-top: 8px !important;
  }
}

/* ==============================
  VALUES STABILITY PATCH
  Keeps the final CTA from jumping
  when the values section rotates.
============================== */


.team-values-section {
  min-height: clamp(560px, 58svh, 680px);
}


.team-values-list-wrap {
  min-height: clamp(320px, 30vw, 390px);
}


/* ==============================
  TEAM FINAL CTA SECTION
============================== */


.team-final-cta {
  position: relative;
  width: 100%;
  min-height: clamp(680px, 90svh, 940px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(
      to bottom,
      rgba(1, 3, 15, 1) 0%,
      rgba(1, 3, 15, 1) 46%,
      rgba(5, 13, 52, 0.96) 100%
    );
}


.team-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(1, 3, 15, 0.62) 0%,
      rgba(1, 3, 15, 0.18) 48%,
      rgba(247, 251, 255, 0.035) 100%
    );
  pointer-events: none;
}


.team-final-cta-inner {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(54px);
  transition:
    opacity 720ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
}


.team-final-cta-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(60px, 6.8vw, 112px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.08em;
  text-wrap: balance;
}


.team-final-cta-copy {
  margin: clamp(24px, 2.4vw, 34px) 0 0;
  color: rgba(247, 251, 255, 0.76);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.42;
  font-weight: 430;
  letter-spacing: -0.035em;
}


.team-final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(34px, 3.4vw, 50px);
}


.team-final-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.018em;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}


.team-final-button:hover,
.team-final-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}


.team-final-button--primary {
  border: 1px solid rgba(185, 200, 90, 0.96);
  background: var(--lime);
  color: #050711;
}


.team-final-button--primary:hover,
.team-final-button--primary:focus-visible {
  background: #c7d765;
  border-color: #c7d765;
  color: #050711;
}


.team-final-cta.is-visible .team-final-cta-inner {
  opacity: 1;
  transform: translateY(0);
}


/* ==============================
  RESPONSIVE
============================== */


@media (max-width: 980px) {
  .team-values-section {
    min-height: auto;
  }


  .team-values-list-wrap {
    min-height: clamp(340px, 42vw, 440px);
  }
}


@media (max-width: 720px) {
  .team-final-cta {
    min-height: 760px;
  }


  .team-final-cta-inner {
    width: min(100% - 30px, 620px);
  }


  .team-final-cta-title {
    font-size: clamp(54px, 15vw, 82px);
    line-height: 0.98;
  }


  .team-final-cta-copy {
    font-size: 18px;
    line-height: 1.45;
  }


  .team-final-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }


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


@media (prefers-reduced-motion: reduce) {
  .team-final-cta-inner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }


  .team-final-button {
    transition: none !important;
  }


  .team-final-button:hover,
  .team-final-button:focus-visible {
    transform: none !important;
  }
}
