@font-face {
  font-family: 'FinancierText';
  src: url('../fonts/FinancierText-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'FinancierDisplay';
  src: url('../fonts/FinancierDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

body {
  padding-top: 88px;
}

.pc-content {
  font-size: unset;
}

.paper {
  background-color: #FFF1E5;
}

.slate {
  background-color: #262A33;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

.claret {
  background-color: #990F3D;
  color: #FFF;
}

.bg-slate {
  background-color: #262A33;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.bg-claret {
  background-color: #990F3D;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.bg-pink {
  background-color: #FCD0B1;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.increase {
  padding-top: 88px;
  padding-bottom: 55px;
  scroll-margin-top: 0;
}

.reduce {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .increase {
    padding-top: 112px;
    padding-bottom: 80px;
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.site-nav.is-hidden {
  transform: translateY(-100%);
}

.site-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 24px;
  background-color: #262A33;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.site-nav.is-hidden .site-nav__bar {
  box-shadow: none !important;
  border-bottom-color: transparent !important;
}

.site-nav__logo {
  display: inline-flex;
  align-items: center;
  height: 40px;
}

.site-nav__logo img {
  display: block;
  height: 40px;
  width: auto;
}

.site-nav__toggle {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #FCD0B1;
  border-radius: 0;
  background-color: #FCD0B1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
}

.site-nav__toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: #262A33;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
  margin: 0;
}

.site-nav__toggle span:first-of-type {
  top: 13px;
}

.site-nav__toggle span:nth-of-type(2) {
  top: 19px;
}

.site-nav__toggle span:last-of-type {
  top: 25px;
}

.site-nav--open .site-nav__toggle span:first-of-type {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.site-nav--open .site-nav__toggle span:nth-of-type(2) {
  opacity: 0;
}

.site-nav--open .site-nav__toggle span:last-of-type {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav__panel {
  position: fixed;
  inset: 88px 0 0 0;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: calc(100vh - 88px);
  padding: 24px 24px 100px;
  background-color: #FFF1E5;
  border-top: 1px solid #262A33;
  overflow-y: auto;
  box-sizing: border-box;
}

.site-nav--open .site-nav__panel {
  display: flex;
}

body.nav-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
  touch-action: none;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
}

.site-nav__list li + li {
  border-top: 1px solid #262A33;
}

.site-nav__list a {
  display: block;
  padding: 18px 0;
  color: #262A33;
  font-family: MetricWeb, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.96px;
  line-height: 120%;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

@media (max-width: 1023px) {
  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    text-decoration: none;
    color: #262A33;
  }
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: #262A33;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    color: #FFF;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media (max-width: 1023px) {
  .site-nav__list a::before {
    content: "•";
    color: #990F3D;
    margin-right: 12px;
  }
}

@media (min-width: 1024px) {
  .site-nav__list a::before {
    content: none;
  }
}

.site-nav__download {
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 0;
  border: 2px solid #FCD0B1 !important;
}

@media (max-width: 1023px) {
  .site-nav__download {
    position: sticky;
    bottom: 16px;
    align-self: flex-start;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .site-nav .site-nav__download.button.cta {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: center;
  }
}

@media (min-width: 768px) {
  .site-nav__bar {
    padding: 24px 32px;
  }

  .site-nav__panel {
    padding: 32px 32px 100px 32px;
  }

  .site-nav__list a {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .site-nav__bar {
    padding: 24px 40px;
  }

  .site-nav__toggle {
    display: none;
  }

  .site-nav__panel {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-height: auto;
    padding: 0;
    background-color: transparent;
    overflow: visible;
    border-top: 0;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-left: auto;
  }

  .site-nav__list li,
  .site-nav__list li:last-child {
    border: none;
  }

  .site-nav__list a {
    padding: 0;
    font-size: 16px;
    color: #FFF;
    text-transform: uppercase;
  }

  .site-nav__download {
    margin-left: 8px;
    padding: 10px 12px !important;
    min-height: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
    letter-spacing: 0.8px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    box-sizing: border-box;
    border: 2px solid #FCD0B1 !important;
  }

}

.text {
  max-width: 700px;
}

.text p a {
  color: #0D7680;
  text-decoration: underline;
}

.intro p, .outro p {
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.chapter p {
  font-family: MetricWeb, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; 
  letter-spacing: 0.96px;
}

.chapter p:first-child {
  background-color: #990F3D;
  color: #FFF;
  padding: 5px 40px;
  display: inline-block;
}

.chapter h2 {
  color: #262A33;
  font-family: MetricWeb, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.statement {
  padding: 0 16px;
}

.statement-list-intro {
  margin-bottom: unset;
  padding-bottom: 26px;
}

.statement p {
  color: #262A33;
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  max-width: 950px;
}

.statement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.statement-list li {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid #262A33;
}

.statement-list li:last-child {
  border-bottom: none;
}

.statement-list li::before {
  content: "●";
  color: #990F3D;
  font-size: 34px;
  align-self: center;
  padding-right: 16px;
}

.statement-list h2 {
  color: #262A33;
  grid-column: 2;
  font-family: "FinancierDisplay";
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  margin: 0;
  max-width: 760px;
}

.statement-list p {
  color: #262A33;
  grid-column: 2;
  font-family: MetricWeb, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  margin-top: 6px;
  max-width: 704px;
}

@media (min-width: 768px) {
  .intro, .outro {
    padding-left: 16px;
    padding-right: 16px;
  }

  .statement {
    padding: 32px 40px;
  }

  .statement-list-intro {
    margin-bottom: unset;
    padding-bottom: 56px;
  }

  .statement-list li {
    gap: 12px;
  }

  .statement-list li::before {
    padding-right: 33px;
  }

  .statement-list h2 {
    font-size: 42px;
  }

  .statement-list p {
    font-size: 18px;
  }

  .chapter p {
    font-size: 18px;
    letter-spacing: 1.08px;
  }

  .chapter h2 {
    font-size: 36px;
    margin-top: 9px;
  }
}
@media (min-width: 1024px) {
  .intro, .outro {
    padding-left: unset;
    padding-right: unset;
  }

  .statement {
    padding: 32px 80px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .expand {
    padding: 72px 80px 16px 80px
  }

  .intro p, .outro p {
    font-size: 34px;
  }

  .statement p {
    font-size: 34px;
  }

  .statement-list-intro {
    margin-bottom: unset;
    padding-bottom: 88px;
  }

  .statement-list li {
    gap: 16px;
  }

  .statement-list h2 {
    font-size: 56px;
  }

  .statement-list p {
    font-size: 24px;
  }

  .chapter p {
    font-size: 20px;
    letter-spacing: 1.2px;
  }

  .chapter h2 {
    font-size: 44px;
  }
}

.button {
  font-family: MetricWeb, sans-serif;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 110% !important;
  letter-spacing: 0.96px !important;
  border-radius: 0 !important;
  padding: 20px !important;
}

.button--primary {
  background-color: #FCD0B1;
  color: #262A33;
  border: 2px solid #FCD0B1;
}

.button--primary:hover {
  background-color: #262A33;
  color: #FCD0B1;
  border: 2px solid #FCD0B1;
}

@media (min-width: 1024px) {
  .button {
    font-size: 20px !important;
    letter-spacing: 1.2px !important;
    padding: 20px 32px !important;
  }

  .site-nav .site-nav__download.button.cta {
    padding: 10px 12px !important;
    min-height: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
    letter-spacing: 0.8px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    box-sizing: border-box;
  }
}

.video-wrapper {
  margin: 0 auto;
  max-width: 1600px;
  padding: 64px 80px 0 80px;
  box-sizing: border-box;
}

.video-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-responsive__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1023px) {
  .video-wrapper {
    padding: 32px 0 0 0;
  }
}

.pull-quote--text-only-centered {
  text-align: left;
}

.pull-quote--text-only-centered .pull-quote__text {
  text-align: left;
}

.pull-quote--text-only-centered .pull-quote__text h2 {
  text-align: left;
}

.pull-quote__meta {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}

.pull-quote__text h2 {
  color: #000;
  font-family: "FinancierDisplay";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 32px 0;
}

.pull-quote__meta p {
  color: #000;
  font-family: MetricWeb, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.96px;
}

.pull-quote__position {
  text-align: left;
}

@media (min-width: 768px) {
  .pull-quote--text-only-centered {
    text-align: center;
  }

  .pull-quote--text-only-centered .pull-quote__text {
    text-align: center;
  }

  .pull-quote--text-only-centered .pull-quote__text h2 {
    text-align: center;
  }

  .pull-quote__meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .pull-quote__position {
    text-align: right;
  }

  .pull-quote__text h2 {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .pull-quote--text-only-centered {
    padding: 112px 20px;
  }

  .pull-quote__text h2 {
    font-size: 56px;
    padding: 40px 0;
  }
}

.split-screen-wrapper {
  border-top: 2px solid #262A33;
  border-bottom: 2px solid #262A33;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.split-screen__content h2 {
  color: #000000;
  font-family: "FinancierText";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.split-screen__content p {
  color: #000000;
  font-family: MetricWeb, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: unset;
}

@media (min-width: 768px) {
  .split-screen--flush .split-screen__content {
    padding: 32px 40px;
  }

  .split-screen__content h2 {
    font-size: 36px;
  }
}

@media (max-width: 1023px) {
  .split-screen__media {
    background-color: #262A33;
  }
}

@media (min-width: 1024px) {
  .split-screen-wrapper {
    background: linear-gradient(to right, #262A33 50%, transparent 50%);
  }

  .split-screen-wrapper:has(.split-screen--reversed-desktop) {
    background: linear-gradient(to right, transparent 50%, #262A33 50%);
  }

  .split-screen__content h2 {
    font-size: 34px;
    padding-bottom: 24px;
  }

  .split-screen__content p {
    font-size: 20px;
  }

  .split-screen__media {
    align-self: start;
    margin-top: 0;
  }

  .split-screen--flush .split-screen__content {
    padding: 48px;
  }
}

.component--carousel {
  padding: 0;
  max-width: 100%;
}

.carousel-swiper {
  max-width: 1600px;
  margin: 0 auto;
  border-top: 2px solid #262A33;
  border-bottom: 2px solid #262A33;
  height: 85vh;
  position: relative;
  width: 100%;
}

.swiper-wrapper {
  width: 100%;
}

.carousel-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 16px 32px 16px;
  border-right: 2px solid #262A33;
  background-color: #FFF1E5;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.carousel-slide:last-child {
  border-right: none;
}

.carousel-slide__background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FCD0B1;
  transition: height 1.5s ease-out;
}

.carousel-slide__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.carousel-stat {
  font-family: "FinancierDisplay";
  font-size: 140px;
  font-weight: 400;
  letter-spacing: 1.4px;
  margin: 0;
  color: #262A33;
}

.carousel-stat span {
  font-size: 31px;
  letter-spacing: 0.31px;
}

.carousel-info {
  font-family: MetricWeb, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  color: #000000;
  max-width: 90%;
}

.carousel-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  padding: 0;
}

.carousel-button svg {
  width: 44px;
  height: 44px;
}

.carousel-button--prev svg {
  transform: rotate(180deg);
}

.carousel-button:hover {
  opacity: 0.8;
}

.carousel-button:disabled {
  opacity: 0.5;
  cursor: pointer;
}

.carousel-controls {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background-color: #FFF1E5;
}

@media (max-width: 767px) {
  .carousel-swiper {
    height: 70vh;
  }

  .carousel-slide {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .carousel-swiper {
    height: 70vh;
  }

  .carousel-controls {
    padding: 24px 40px;
  }
}

@media (min-width: 1024px) {
  .carousel-swiper {
    height: 80vh;
  }

  .carousel-stat {
    font-size: 180px;
    letter-spacing: 1.8px;
  }

  .carousel-stat span {
    font-size: 40px;
    letter-spacing: 0.4px;
  }

  .carousel-info {
    font-size: 24px;
  }
}

@media (min-width: 1600px) {
  .carousel-swiper {
    border: 2px solid #262A33;
  }
}

.audio-component {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.audio-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 32px 16px;
}

.audio-item__image {
  width: 100%;
  overflow: hidden;
  margin: -32px -16px 0 -16px;
  width: calc(100% + 32px);
}

.audio-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.audio-item__content {
  width: 100%;
}

.audio-item__name {
  color: #FFF;
  font-family: MetricWeb, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 0 12px 0;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

.audio-item__description {
  color: #FFF;
  font-family: MetricWeb, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

.audio-item__player {
  width: 100%;
}

.audio-item__player {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.soundwave-container {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -20px;
  contain: layout style paint;
}

.custom-audio-player {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #990F3D;
  padding: 8px 8px 8px 0;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: visible;
}

.custom-audio-player audio {
  display: none;
}

.player-button {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.player-button:hover {
  opacity: 0.8;
}

.player-button:active {
  opacity: 0.6;
}

.play-btn {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.volume-btn {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.player-progress-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
  min-width: 0;
}

.player-time-display {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 60px;
}

.time-separator {
  color: #FFFFFF;
}

.player-progress {
  flex-grow: 1;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  min-width: 50px;
}

.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transform: translateY(-3px);
}

.player-progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  margin: -3px 0 0 0;
  padding: 0;
}

.player-progress::-webkit-slider-runnable-track {
  background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF var(--progress-percent), rgba(255, 255, 255, 0.3) var(--progress-percent), rgba(255, 255, 255, 0.3) 100%);
  height: 4px;
  border-radius: 2px;
  border: none;
  padding: 0;
  margin: 0;
}

.player-progress::-moz-range-track {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.player-volume {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  flex-shrink: 1;
  min-width: 40px;
}

.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transform: translateY(-3px);
}

.player-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  margin: -3px 0 0 0;
  padding: 0;
}

.player-volume::-webkit-slider-runnable-track {
  background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF var(--progress-percent), rgba(255, 255, 255, 0.3) var(--progress-percent), rgba(255, 255, 255, 0.3) 100%);
  height: 4px;
  border-radius: 2px;
  border: none;
  padding: 0;
  margin: 0;
}

.player-volume::-moz-range-track {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .audio-component {
    max-width: 375px;
    margin: 0 auto;
  }

  .audio-item {
    padding: 32px 16px;
  }

  .audio-item__image {
    margin: -32px -16px 0 -16px;
    width: calc(100% + 32px);
  }

  .soundwave-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: -15px;
    contain: layout style paint;
  }

  .custom-audio-player {
    width: 100%;
    max-width: 100%;
    gap: 8px;
    padding: 8px 12px;
    box-sizing: border-box;
  }

  .play-btn {
    width: 28px;
    height: 28px;
  }

  .player-time-display {
    font-size: 11px;
  }

  .player-volume {
    width: 50px;
  }
}

@media (min-width: 1024px) {
  .audio-component {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
  }

  .audio-item {
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    gap: 0;
    padding: 0;
  }

  .audio-item__image {
    flex: 1;
    min-width: 0;
    margin: 0;
  }

  .audio-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px;
  }

  .audio-item__player {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 32px 40px;
    box-sizing: border-box;
  }

  .soundwave-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
    contain: layout style paint;
  }

  .custom-audio-player {
    width: 100%;
    min-width: 0;
    flex: 0;
    flex-direction: row;
    gap: 10px;
    padding: 8px 12px;
    box-sizing: border-box;
    overflow: visible;
    flex-shrink: 1;
  }

  .play-btn {
    width: 32px;
    height: 32px;
  }

  .player-time-display {
    font-size: 12px;
  }

  .player-progress {
    min-width: 100px;
    flex-grow: 1;
  }

  .player-volume {
    width: 70px;
  }

  .audio-item__name {
    font-size: 32px;
    text-align: left;
  }

  .audio-item__description {
    font-size: 20px;
    text-align: left;
  }
}

.split-screen__image.lottie-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero {
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__content {
  text-align: left;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.hero__content[data-active] {
  pointer-events: auto;
}

.hero__text {
  font-family: 'FinancierText', Georgia, serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
  margin: 0;
}

.hero__word-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.15em;
  flex-wrap: wrap;
}

.hero__word-highlight {
  display: inline;
  padding: 0 4px 0 8px;
  margin: 0 -4px 0 -8px;
  background: linear-gradient(90deg, #FCD0B1 0%, #FCD0B1 50%, transparent 50%, transparent 100%);
  background-size: 200% 100%;
  background-position-x: 100%;
  opacity: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__text-full {
  color: #000000;
  font-weight: 400;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.hero__changing-word {
  color: #000000;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  width: 115px;
  height: 1em;
  flex-shrink: 0;
}

.hero__constant {
  display: inline;
  margin-left: 0;
}

@media (max-width: 767px) {
  .hero__word-wrapper {
    white-space: normal;
    display: block;
  }

  .hero__changing-word {
    display: block;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }

  .hero__constant {
    display: block;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__word-wrapper {
    white-space: normal;
    display: block;
  }

  .hero__changing-word {
    display: block;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }

  .hero__constant {
    display: block;
    margin-left: 0;
  }
}

.hero__reveal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
}

.hero__reveal[data-active] {
  pointer-events: auto;
}

.hero__reveal-wrapper {
  position: relative;
  display: inline-block;
  text-align: left;
}

.hero__reveal-highlight {
  display: inline;
  padding: 0 4px 0 8px;
  margin: 0 -4px 0 -8px;
  background: linear-gradient(90deg, #FCD0B1 0%, #FCD0B1 50%, transparent 50%, transparent 100%);
  background-size: 200% 100%;
  background-position-x: 100%;
  opacity: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__reveal-text {
  font-family: 'FinancierText', Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 120%;
  font-feature-settings: 'liga' off;
  color: #000000;
  margin: 0;
  text-align: left;
  padding: 0 20px;
}

.hero__intro {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #262A33;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
}

.hero__intro[data-active] {
  pointer-events: auto;
}

.hero__intro-text {
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

.hero__intro-text p {
  margin: 0 0 24px 0;
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

.hero__intro-text p:last-child {
  margin-bottom: 0;
}

.hero__outro {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF1E5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
}

.hero__outro[data-active] {
  pointer-events: auto;
}

.hero__outro-text {
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #262A33;
  max-width: 700px;
  margin: 0 auto;
}

.hero__outro-text p {
  margin: 0 0 24px 0;
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
}

.hero__outro-text p:last-child {
  margin-bottom: 0;
}

.hero__particles-section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 26;
  opacity: 0;
  pointer-events: none;
}

.hero__particles-section[data-active] {
  pointer-events: auto;
}

.hero__particles-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.hero__particle {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #FCD0B1;
  border-radius: 50%;
  pointer-events: none;
}

.hero__particle--outlined {
  background-color: rgba(252, 208, 177, 0.5);
  border: 2px solid #FCD0B1;
}

.hero__particle--blurred {
  background-color: rgba(252, 208, 177, 0.5);
  border: 2px solid #FCD0B1;
  filter: blur(13px);
}

.hero__particles-statement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 350px;
  text-align: center;
  font-family: MetricWeb, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

.hero__particles-statement-2 {
  max-width: 250px;
}

#hero-particles-statement-2 {
  opacity: 0;
}

#outro-section {
  position: relative;
  background-color: #FFF1E5;
  width: 100vw;
  height: 100vh;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

#outro-intro {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF1E5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  opacity: 1;
  padding: 0 20px;
  pointer-events: none;
}

#outro-intro[data-active] {
  pointer-events: auto;
}

#outro-intro-text {
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #262A33;
  max-width: 700px;
  margin: 0 auto;
}

#outro-intro-text p {
  margin: 0 0 24px 0;
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  color: #262A33;
}

#outro-intro-text p:last-child {
  margin-bottom: 0;
}

#outro-cta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #262A33;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
}

#outro-cta[data-active] {
  pointer-events: auto;
}

#outro-cta-text {
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

#outro-cta-text p {
  margin: 0 0 24px 0;
  font-family: MetricWeb, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

#outro-cta-text p:last-child {
  margin-bottom: 24px;
}

#outro-cta .button {
  display: inline-block;
}

@media (min-width: 1024px) {
  #outro-intro-text,
  #outro-intro-text p {
    font-size: 34px;
  }

  #outro-cta-text,
  #outro-cta-text p {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {
  .hero__intro-text,
  .hero__intro-text p {
    font-size: 34px;
  }

  .hero__outro-text,
  .hero__outro-text p {
    font-size: 34px;
  }
}

@media (min-width: 768px) {
  .hero__text {
    font-size: 120px;
    padding: 0 0 0 155px;
  }

  .hero__reveal-text {
    font-size: 80px;
  }
}

.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
}

.form-modal.form-modal--open {
  display: flex;
}

@media (max-width: 767px) {
  .form-modal {
    padding: 0;
  }
}

.form-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262A33;
  cursor: pointer;
}

.form-modal__content {
  position: relative;
  background-color: #FFF1E5;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  animation: slideIn 0.3s ease-out;
  box-sizing: border-box;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #FCD0B1;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  font-weight: 300;
  line-height: 1;
  overflow: visible;
}

.form-modal__close svg {
  width: 18px;
  height: 18px;
  display: block;
}

.form-modal iframe {
  display: block;
  width: 100%;
  border: none;
  margin-top: 8px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FCD0B1;
  color: #262A33;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
  background-color: #262A33;
  color: #FCD0B1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover svg {
  stroke: #FCD0B1;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #262A33;
}