/* 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-proposal,
.investor-proposal *,
.investor-proposal *::before,
.investor-proposal *::after,
.investor-proposal-card,
.investor-proposal-card *,
.investor-proposal-card *::before,
.investor-proposal-card *::after {
  box-sizing: border-box;
}

.investor-proposal {
  --investor-reason-block-gap: 18px;

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

.investor-proposal__inner {
  display: grid;
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding: 72px 0 57px;
  grid-template-columns: 457px minmax(0, 850px);
  align-items: start;
  gap: 72px;
}

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

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

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

.investor-proposal__panel {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 25px 22px 25px 21px;
  overflow: hidden;
  border-radius: 20px;
  background: #6f9f75;
  isolation: isolate;
}

.investor-proposal__background-media,
.investor-proposal__background-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.investor-proposal__background-media {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: var(--investor-proposal-background-position, center center);
}

.investor-proposal__background-tint {
  z-index: -1;
  background: rgba(66, 132, 74, 0.34);
}

.investor-proposal__cards {
  display: flex !important;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: var(--investor-reason-block-gap);
}

.investor-proposal__cards > slot[name="children"] {
  display: flex !important;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: var(--investor-reason-block-gap);
}

/* Webflow assigns ONE wrapper div to the slot; display: contents collapses
   it so the slot's flex column and block gap reach the reason rows directly. */
.investor-proposal__cards > slot[name="children"]::slotted(*) {
  display: contents !important;
}

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

.investor-proposal-card {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 98px minmax(0, 1fr);
  align-items: center;
  column-gap: 46px;
  color: #fcfcfc;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
  order: var(--investor-proposal-card-priority, 1);
}

.investor-proposal-card__number {
  width: 98px;
  margin: 0;
  color: #fcfcfc;
  font-size: 80px;
  font-weight: 300;
  line-height: 96px;
  letter-spacing: -0.02em;
  text-align: center;
}

.investor-proposal-card__body {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 203px;
  padding: 25px 29px 27px;
  border-radius: 20px;
  background: linear-gradient(155.46deg, rgba(222, 216, 202, 0.2) -50.09%, rgba(24, 20, 30, 0.2) 106.94%);
  overflow: hidden;
}

.investor-proposal-card.is-revealed .investor-proposal-card__body {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.investor-proposal-card__content {
  position: relative;
  z-index: 1;
}

.investor-proposal-card__title {
  width: min(594px, 100%);
  margin: 0;
  color: #fcfcfc;
  font: inherit;
  font-size: 27px;
  font-weight: 400;
  line-height: 32.4px;
  overflow-wrap: anywhere;
}

.investor-proposal-card__description {
  width: min(575px, 100%);
  margin: 17px 0 0;
  color: #fcfcfc;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  overflow-wrap: anywhere;
}

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

.investor-proposal-reveal .investor-proposal__header,
.investor-proposal-reveal .investor-proposal__panel {
  opacity: 0;
}

.investor-proposal-reveal.is-revealed .investor-proposal__header,
.investor-proposal-reveal.is-revealed .investor-proposal__panel {
  animation: investor-proposal-reveal 850ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.investor-proposal-reveal.is-revealed .investor-proposal__panel {
  animation-delay: 90ms;
}

@media (max-width: 1439px) {
  .investor-proposal__inner {
    width: calc(100% - 60px);
    grid-template-columns: minmax(300px, 0.54fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 72px);
  }

  .investor-proposal-card {
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 30px;
  }

  .investor-proposal-card__number {
    width: 82px;
    font-size: 68px;
    line-height: 82px;
  }
}

@media (max-width: 1000px) {
  .investor-proposal__inner {
    padding-top: 60px;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .investor-proposal__title {
    width: min(705px, 100%);
    font-size: 52px;
    line-height: 60px;
  }

  .investor-proposal__description {
    width: min(560px, 100%);
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .investor-proposal__inner {
    width: calc(100% - 32px);
    padding: 48px 0 56px;
    gap: 32px;
  }

  .investor-proposal__title {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.12;
  }

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

  .investor-proposal__panel {
    padding: 16px;
    border-radius: 16px;
  }

  .investor-proposal__cards {
    gap: var(--investor-reason-block-gap);
  }

  .investor-proposal-card {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 8px;
  }

  .investor-proposal-card__number {
    width: auto;
    font-size: 52px;
    line-height: 58px;
    text-align: left;
  }

  .investor-proposal-card__body {
    min-height: 0;
    padding: 24px 20px 28px;
    border-radius: 16px;
  }

  .investor-proposal-card__title {
    font-size: 25px;
    line-height: 30px;
  }

  .investor-proposal-card__description {
    margin-top: 16px;
    font-size: 13px;
    line-height: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .investor-proposal-reveal .investor-proposal__header,
  .investor-proposal-reveal .investor-proposal__panel {
    opacity: 1;
    animation: none;
  }
}


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

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

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

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

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

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

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

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

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

.investor-proposal-reveal.is-revealed .investor-proposal__header {
  animation-name: investor-proposal-reveal-from-left;
}

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

