/* Authored \n breaks are desktop-only; below the site's mobile breakpoint
   (navbar switch, 1280px) the text reflows naturally. */
@media (max-width: 1280px) {
  br.multiline-br {
    display: none;
  }
}

.investors-shell,
.investors-shell * {
  box-sizing: border-box;
}

:host {
  display: block;
  width: 100%;
}

.investors-shell {
  width: 100%;
  color: #18141e;
  background: #fcfcfc;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
}

.investors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 675px));
  justify-content: center;
  gap: 30px;
  width: 100%;
  min-height: 690px;
  margin: 0 auto;
  padding: 40px 30px 80px;
  overflow: hidden;
  border-radius: 20px;
  color: #18141e;
  background: #e6ece9;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
}

.investors__intro,
.investors__metrics {
  min-width: 0;
}

.investors__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin: 0;
  padding: 4px 17px;
  border-radius: 999px;
  color: #18141e;
  background: #fcfcfc;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.investors__title {
  width: min(591px, 100%);
  margin: 40px 0 0;
  color: #18141e;
  font: inherit;
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: 0;
}

.investors__description {
  width: min(474px, 100%);
  margin: 32px 0 0;
  color: #18141e;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.investors__metrics {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 59px;
}

.investors__statistics {
  width: 100%;
}

/* Webflow places all assigned statistic components inside a named slot.
   These rules preserve the same vertical list and divider rhythm there. */
.investors__statistics:has(> slot[name="children"]) {
  display: block;
}

.investors__statistics > slot[name="children"] {
  display: block !important;
  width: 100%;
}

.investors__statistics > slot[name="children"]::slotted(*) {
  display: flex !important;
  flex-direction: column;
  width: 100% !important;
  min-width: 0 !important;
}

.investor-statistic {
  --investor-sequence-index: 0;

  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  column-gap: 65px;
  align-items: center;
  min-height: 121px;
  border-top: 1px solid rgba(24, 20, 30, 0.2);
  color: #18141e;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
}

/* The first Figma row is 116px; subsequent rows are 121px. */
:host(:first-child) .investor-statistic,
.investors__statistics > .investor-statistic:first-child {
  min-height: 116px;
}

:host(:nth-child(2)) .investor-statistic,
.investor-statistic:nth-child(2) {
  --investor-sequence-index: 1;
}

:host(:nth-child(3)) .investor-statistic,
.investor-statistic:nth-child(3) {
  --investor-sequence-index: 2;
}

:host(:nth-child(4)) .investor-statistic,
.investor-statistic:nth-child(4) {
  --investor-sequence-index: 3;
}

:host(:nth-child(5)) .investor-statistic,
.investor-statistic:nth-child(5) {
  --investor-sequence-index: 4;
}

:host(:nth-child(6)) .investor-statistic,
.investor-statistic:nth-child(6) {
  --investor-sequence-index: 5;
}

:host(:nth-child(7)) .investor-statistic,
.investor-statistic:nth-child(7) {
  --investor-sequence-index: 6;
}

:host(:nth-child(8)) .investor-statistic,
.investor-statistic:nth-child(8) {
  --investor-sequence-index: 7;
}

.investor-statistic__value,
.investor-statistic__description {
  margin: 0;
}

.investor-statistic__value {
  display: flex;
  align-items: baseline;
  color: #3dbf7b;
  font-size: 80px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.investor-statistic__description {
  width: min(293px, 100%);
  color: #18141e;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.investors__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 26px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #18141e;
  background: #3dbf7b;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.investors__cta--mobile {
  display: none;
}

.investors__cta:hover {
  background: #35b572;
  transform: translateY(-1px);
}

.investors__cta:active {
  transform: scale(0.98);
}

.investors__cta:focus-visible {
  outline: 2px solid #18141e;
  outline-offset: 3px;
}

@keyframes investors-fade-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.investors--reveal .investors__intro,
.investors--reveal .investors__cta,
.investor-statistic--reveal {
  opacity: 0;
}

.investors--reveal.is-revealed .investors__intro {
  animation: investors-fade-up 850ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.investors--reveal.is-revealed .investors__cta {
  animation: investors-fade-up 850ms cubic-bezier(0.4, 0, 0.2, 1) 560ms both;
}

.investor-statistic--reveal.is-revealed {
  animation: investors-fade-up 850ms cubic-bezier(0.4, 0, 0.2, 1)
    calc(80ms + var(--investor-sequence-index) * 180ms) both;
}

@media (max-width: 991px) {
  .investors {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 40px;
  }

  .investors__title {
    font-size: 52px;
    line-height: 1.12;
  }

  .investors__metrics {
    padding-top: 18px;
  }
}

@media (max-width: 767px) {
  .investors-shell {
    padding: 0 7px 56px;
  }

  .investors {
    gap: 29px;
    width: 100%;
    padding: 20px 16px 0;
    border-radius: 15px;
  }

  .investors__eyebrow {
    min-height: 22px;
    padding: 3px 14px;
    font-size: 12px;
    line-height: 16px;
  }

  .investors__title {
    width: 100%;
    margin-top: 25px;
    font-size: clamp(28px, 8.2vw, 32px);
    line-height: 1.1;
  }

  .investors__description {
    width: min(338px, 100%);
    margin-top: 30px;
    font-size: 16px;
    line-height: 20px;
  }

  .investors__metrics {
    padding-top: 0;
  }

  .investor-statistic,
  :host(:first-child) .investor-statistic,
  .investors__statistics > .investor-statistic:first-child {
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 5px;
    min-height: 0;
    padding: 3px 0 12px;
  }

  :host(:first-child) .investor-statistic,
  .investors__statistics > .investor-statistic:first-child {
    padding-bottom: 13px;
  }

  :host(:last-child) .investor-statistic,
  .investors__statistics > .investor-statistic:last-child {
    padding-bottom: 33px;
  }

  .investor-statistic__value {
    font-size: 48px;
    line-height: 1;
  }

  .investor-statistic__description {
    width: 100%;
    font-size: 16px;
    line-height: 18px;
  }

  .investors__cta--desktop {
    display: none;
  }

  .investors__cta--mobile {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: 26px 16px 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .investors--reveal .investors__intro,
  .investors--reveal .investors__cta,
  .investor-statistic--reveal {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* Direction variety: headings/copy arrive from the left */
@keyframes investors--reveal-from-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.investors--reveal.is-revealed .investors__intro {
  animation-name: investors--reveal-from-left;
}

