/* CTA BUTTON */
.cta-button {
  --cta-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 184 187' preserveAspectRatio='none'%3E%3Cpath d='M163.223 58.6286C190.096 73.9843 190.096 112.732 163.223 128.088L71.8147 180.321C39.8151 198.607 0 175.501 0 138.646L0 48.0709C0 11.2154 39.8152 -11.8902 71.8147 6.39523L163.223 58.6286Z'/%3E%3C/svg%3E");
  --cta-shadow-y: 4.3478cqw;
  --cta-label-x: -12.0978cqw;
  --cta-label-y: 17.2989cqw;
  --cta-label-angle: -30deg;
  --cta-arrow-angle: 0deg;
  --cta-transition: 0.3s ease;

  position: relative;
  isolation: isolate;
  container-type: inline-size;

  height: var(--cta-h, 187px);
  aspect-ratio: 184 / 187;

  color: #fff;
  text-decoration: none;

  translate: calc(-1 * var(--cta-shift-x, 24px)) 0;
  transition: translate var(--cta-transition);

  outline: none;
}
.cta-button::before,
.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;

  mask-image: var(--cta-mask);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.cta-button::before {
  z-index: -2;
  background-color: #2c2b7c;
  translate: 0 var(--cta-shadow-y);
  transition: translate 0.25s ease;
}
.cta-button::after {
  z-index: -1;
  background-color: #3c3ab9;
}
.cta-button__text {
  position: absolute;
  top: 47.8261cqw;
  left: 27.1739cqw;
  width: 67.0326cqw;
  height: 10.8696cqw;
  white-space: nowrap;
  font-weight: 700;
  translate: var(--cta-label-x) var(--cta-label-y);
  rotate: var(--cta-label-angle);
  transition:
    translate var(--cta-transition),
    rotate var(--cta-transition);
}
@media (min-width: 600px) {
  .cta-button__text {
    font-size: 7.6087cqw;
    line-height: 10.8696cqw;
  }
}
.cta-button__icon {
  position: absolute;
  top: 50%;
  left: 58.337cqw;
  width: 8.6957cqw;
  height: 2.1739cqw;
  translate: 0 -50%;
}
.cta-button__icon::before,
.cta-button__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background-color: #6d6bd5;
  transform-origin: calc(100% - 1.087cqw) center;
  transition: rotate var(--cta-transition);
}
.cta-button__icon::before {
  rotate: calc(-1 * var(--cta-arrow-angle));
}
.cta-button__icon::after {
  rotate: var(--cta-arrow-angle);
}
.cta-button:hover,
.cta-button:focus-visible,
.cta-button:active {
  --cta-shadow-y: 4.3478cqw;
  --cta-label-x: -10.8696cqw;
  --cta-label-y: 0px;
  --cta-label-angle: 0deg;
  --cta-arrow-angle: 45deg;
  --cta-shift-x: 0px;
}
.cta-button:active {
  --cta-shadow-y: 1.087cqw;
}
@media (prefers-reduced-motion: reduce) {
  .cta-button {
    --cta-transition: 0s;
  }
  .cta-button::before {
    transition: none;
  }
}

@media (max-width: 599px) {
  .cta-button {
    --cta-shift-x: 0px;
    --cta-arrow-angle: 45deg;
    --cta-shadow-y: 6px;
    --cta-h: 56px;

    width: 100%;
    aspect-ratio: auto;
    padding-top: var(--cta-shadow-y);

    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-button::before,
  .cta-button::after {
    mask-image: none;
    border-radius: 999px;
  }
  .cta-button__text {
    position: static;
    width: auto;
    height: auto;
    translate: none;
    rotate: none;

    display: flex;
    align-items: center;
    gap: 12px;
  }
  .cta-button__icon {
    position: relative;
    top: auto;
    left: auto;
    width: 16px;
    height: 4px;
    flex: none;
    translate: none;
  }
  .cta-button__icon::before,
  .cta-button__icon::after {
    transform-origin: calc(100% - 2px) center;
  }
}

/* MARK LIST */
.mark-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mark-list-wrapper p {
  font-weight: 700;
}
.mark-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style-type: none;
}
.mark-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 4px;
  font-weight: 300;
}
.mark-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 3px;
  border-radius: 50px;
  background-color: #ed1c24;
}

@media (max-width: 767px) {
  .mark-list li {
    align-items: flex-start;
    gap: 12px;
  }
  .mark-list li::before {
    margin-top: 0.6em;
  }
}

/* SPINNER */

.spinner {
  width: 268px;
  aspect-ratio: 1/1;
  animation: spinner-spin var(--spinner-duration, 24s) linear infinite;
}
@keyframes spinner-spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation: none;
  }
}

/* DOUBLE ARROW */

.double-arrow {
  position: relative;
  flex: none;
  width: calc(var(--double-arrow-h, 54px) * 92.311 / 54);
  height: var(--double-arrow-h, 54px);
  color: #ed1c24;
}
.arrows-element__left,
.arrows-element__right {
  position: absolute;
  top: 0;
  width: calc(var(--double-arrow-h, 54px) * 49 / 54);
  height: var(--double-arrow-h, 54px);
  fill: currentColor;
}
.arrows-element__left {
  left: 0;
  translate: var(--double-arrow-shift, 0px) 0;
  transition: translate var(--double-arrow-transition, 0.3s ease);
}
.arrows-element__right {
  left: calc(var(--double-arrow-h, 54px) * 44.16 / 54);
}
@media (prefers-reduced-motion: reduce) {
  .arrows-element__left {
    transition: none;
  }
}

.feature-label {
  min-height: var(--feature-label-h, 62px);
  padding: var(--feature-label-inset, 8px);
  padding-left: var(--feature-label-pad, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--feature-label-gap, 16px);
  border-radius: 999px;
  background-color: #fff0f1;
}
.feature-label__content {
  display: flex;
  flex-direction: column;
}
.feature-label__content .label-3 {
  font-weight: 300;
  color: var(--text-secondary);
}
.feature-label__content .body-2 {
  font-weight: 500;
}
.feature-label__icon {
  flex: none;
  width: calc(
    var(--feature-label-h, 62px) - 2 * var(--feature-label-inset, 8px)
  );
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #ed1c24;
}
.feature-label__icon svg {
  width: var(--feature-label-icon, 20px);
  height: var(--feature-label-icon, 20px);
}
