/* 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;
  }
}

.investor-offer,
.investor-offer *,
.investor-offer *::before,
.investor-offer *::after,
.investor-offer-card,
.investor-offer-card *,
.investor-offer-card *::before,
.investor-offer-card *::after {
  box-sizing: border-box;
}

.investor-offer {
  --investor-offer-card-gap: 30px;

  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fcfcfc;
  color: #18141e;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
}

.investor-offer__inner {
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding: 41px 0 38px;
}

.investor-offer__header {
  width: 100%;
  min-width: 0;
}

.investor-offer__title {
  width: min(795px, 100%);
  margin: 0;
  color: #18141e;
  font: inherit;
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.investor-offer__description {
  width: min(491px, 100%);
  margin: 29px 0 0;
  color: #18141e;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.investor-offer__cards {
  display: grid !important;
  width: 100%;
  min-width: 0;
  margin-top: 44px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: 1fr;
  gap: var(--investor-offer-card-gap);
  align-items: stretch;
}

.investor-offer__cards:has(> slot[name="children"]) {
  display: block !important;
}

.investor-offer__cards > slot[name="children"] {
  display: flex !important;
  width: calc(100% + var(--investor-offer-card-gap));
  min-width: 0;
  margin: calc(var(--investor-offer-card-gap) / -2);
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

/* Webflow assigns ONE wrapper div to the slot; display: contents collapses
   it so the card hosts participate in the slot's wrap-flex directly. */
.investor-offer__cards > slot[name="children"]::slotted(*) {
  display: contents !important;
}

/* !important: Webflow's page-level code-island { display: contents } rule
   beats normal :host declarations, which killed the card sizing. */
:host([data-investor-offer-card-host]) {
  display: flex !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 15px !important;
  flex: 1 1 400px !important;
}

:host {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100% !important;
  order: var(--investor-offer-card-priority, 1);
}

.investor-offer-card {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 352px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 31px 22px 57px;
  overflow: hidden;
  border: 1px solid rgba(24, 20, 30, 0.02);
  border-radius: 20px;
  background: linear-gradient(155.46deg, #fcfcfc 0%, #e6ece9 100%);
  color: #18141e;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
  order: var(--investor-offer-card-priority, 1);
}

.investor-offer-card__category {
  width: fit-content;
  max-width: 100%;
  min-height: 29px;
  margin: 0;
  padding: 6px 16px;
  border-radius: 999px;
  background: #3dbf7b;
  color: #18141e;
  font-size: 13px;
  font-weight: 500;
  line-height: 16.25px;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.investor-offer-card__title {
  width: min(528px, 100%);
  margin: 38px 0 0;
  color: #18141e;
  font: inherit;
  font-size: 27px;
  font-weight: 400;
  line-height: 32.4px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.investor-offer-card__description {
  width: min(528px, 100%);
  margin: 33px 0 0;
  color: #18141e;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

@keyframes investor-offer-reveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.investor-offer-reveal .investor-offer__header,
.investor-offer-reveal .investor-offer-card {
  opacity: 0;
}

.investor-offer-reveal.is-revealed .investor-offer__header,
.investor-offer-reveal.is-revealed .investor-offer-card {
  animation: investor-offer-reveal 850ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.investor-offer-reveal.is-revealed .investor-offer-card {
  animation-delay: 110ms;
}

@media (max-width: 1439px) {
  .investor-offer__inner {
    width: calc(100% - 60px);
  }
}

@media (max-width: 1000px) {
  .investor-offer {
    --investor-offer-card-gap: 24px;
  }

  .investor-offer__inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .investor-offer__title {
    font-size: 52px;
    line-height: 60px;
  }

  .investor-offer__cards {
    margin-top: 40px;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: var(--investor-offer-card-gap);
  }

  :host([data-investor-offer-card-host]) {
    margin: 12px !important;
    flex-basis: 100% !important;
  }

  .investor-offer-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .investor-offer {
    --investor-offer-card-gap: 16px;
  }

  .investor-offer__inner {
    width: calc(100% - 32px);
    padding: 40px 0 48px;
  }

  .investor-offer__title {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.12;
  }

  .investor-offer__description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 19px;
  }

  .investor-offer__cards {
    margin-top: 32px;
    gap: var(--investor-offer-card-gap);
  }

  :host([data-investor-offer-card-host]) {
    margin: 8px !important;
  }

  .investor-offer-card {
    padding: 28px 20px 40px;
    border-radius: 16px;
  }

  .investor-offer-card__title {
    margin-top: 32px;
    font-size: 25px;
    line-height: 30px;
  }

  .investor-offer-card__description {
    margin-top: 24px;
    font-size: 15px;
    line-height: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .investor-offer-reveal .investor-offer__header,
  .investor-offer-reveal .investor-offer-card {
    opacity: 1;
    animation: none;
  }
}


@keyframes investor-offer-card-reveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

.investor-offer-card--reveal {
  opacity: 0;
}

.investor-offer-card--reveal.is-revealed {
  animation: investor-offer-card-reveal 850ms cubic-bezier(0.4, 0, 0.2, 1) 60ms both;
}

@media (prefers-reduced-motion: reduce) {
  .investor-offer-card--reveal {
    opacity: 1;
    animation: none;
  }
}

/* Waterfall: siblings entering together stagger left-to-right */

/* waterfall-investor-offer-card */
:host(:nth-child(2)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(2) {
  animation-delay: 160ms;
}
:host(:nth-child(3)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(3) {
  animation-delay: 260ms;
}
:host(:nth-child(4)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(4) {
  animation-delay: 360ms;
}
:host(:nth-child(5)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(5) {
  animation-delay: 460ms;
}
:host(:nth-child(6)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(6) {
  animation-delay: 560ms;
}
:host(:nth-child(7)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(7) {
  animation-delay: 660ms;
}

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

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

.investor-offer-reveal.is-revealed .investor-offer__header {
  animation-name: investor-offer-reveal-from-left;
}

/* waterfall-ext-investor-offer-card: items 8+ keep cascading instead of snapping to the base delay */
:host(:nth-child(8)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(8) {
  animation-delay: 760ms;
}
:host(:nth-child(9)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(9) {
  animation-delay: 860ms;
}
:host(:nth-child(n + 10)) .investor-offer-card--reveal.is-revealed,
.investor-offer-card--reveal.is-revealed:nth-child(n + 10) {
  animation-delay: 960ms;
}

