/** Shopify CDN: Minification failed

Line 810:14 Expected identifier but found whitespace
Line 810:16 Unexpected "{"
Line 810:30 Expected ":"
Line 810:40 Unexpected ","
Line 810:43 Unexpected "{"
Line 810:57 Expected ":"
Line 811:13 Expected identifier but found whitespace
Line 811:15 Unexpected "{"
Line 811:29 Expected ":"

**/
/* START_SECTION:chs-commercial-use (INDEX:17) */
.chs-license {
    background: var(--chs-bg);
    color: var(--chs-text);
    padding: var(--chs-pad-top) 20px var(--chs-pad-bottom);
  }

  .chs-license,
  .chs-license * {
    box-sizing: border-box;
  }

  .chs-license__inner {
    width: 100%;
    max-width: var(--chs-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(500px, 1fr) minmax(0, 1.35fr);
    gap: 40px;
    align-items: center;
  }

  .chs-license__content h2 {
    margin: 0;
    font-family: var(--font-heading-family);
    font-size: clamp(36px, 3.4vw, 54px);
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 800;
  }

  .chs-license__subheading {
    margin-top: 16px;
    max-width: 560px;
    font-family: var(--font-body-family);
    font-size: 17px;
    line-height: 1.5;
  }

  .chs-license__subheading p {
    margin: 0;
  }

  .chs-license__lists {
    margin-top: 22px;
    display: grid;
    gap: 18px;
  }

  .chs-license__group-title {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .chs-license__group-title strong {
    font-family: var(--font-body-family);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
  }

  .chs-license__status-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .chs-license__status-icon svg,
  .chs-license__mini-check svg,
  .chs-license__mini-x svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .chs-license__group-title--yes {
    color: var(--chs-yes);
  }

  .chs-license__group-title--yes strong,
  .chs-license__group-title--no strong {
    color: var(--chs-text);
  }

  .chs-license__group-title--no {
    color: var(--chs-no);
  }

  .chs-license__group ul {
    list-style: none;
    margin: 16px 0 0 54px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 14px;
  }

  .chs-license__group li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
  }

  .chs-license__mini-check,
  .chs-license__mini-x {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 2px;
  }

  .chs-license__mini-check {
    color: var(--chs-yes);
  }

  .chs-license__mini-x {
    color: var(--chs-no);
  }

  .chs-license__group li strong,
  .chs-license__group li span {
    display: block;
    font-family: var(--font-body-family);
  }

  .chs-license__group li strong {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0;
  }

  .chs-license__group li div > span {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.45;
  }

  .chs-license__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .chs-license__image-card {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    background: #f4f0eb;
  }

  .chs-license__image,
  .chs-license__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media screen and (max-width: 990px) {
    .chs-license__inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .chs-license__group ul {
      grid-template-columns: 1fr;
    }
  }

  @media screen and (max-width: 749px) {
    .chs-license {
      padding-left: 16px;
      padding-right: 16px;
    }

    .chs-license__gallery {
      gap: 9px;
    }

    .chs-license__image-card {
      border-radius: 12px;
    }

    .chs-license__group ul {
      margin-left: 0;
    }
  }
/* END_SECTION:chs-commercial-use */
/* START_SECTION:chs-cta-button (INDEX:18) */
.chs-cta-only {
  background: var(--bg);
  padding: var(--pt) 20px var(--pb);
}

.chs-cta-only,
.chs-cta-only * {
  box-sizing: border-box;
}

.chs-cta-only__inner {
  width: 100%;
  display: flex;
}

.chs-cta-only__inner--left {
  justify-content: flex-start;
}

.chs-cta-only__inner--center {
  justify-content: center;
}

.chs-cta-only__inner--right {
  justify-content: flex-end;
}

.chs-cta-only__button {
  width: min(100%, var(--w));
  min-height: var(--h);
  padding: 0 28px;
  border-radius: var(--r);
  background: var(--btn);
  color: var(--txt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-family: var(--font-body-family);
  font-size: var(--fs);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.chs-cta-only__button:hover {
  color: var(--txt);
  opacity: .92;
}

.chs-cta-only__button span {
  font-size: 1.35em;
  font-weight: 400;
}

@media screen and (max-width: 749px) {
  .chs-cta-only {
    padding-left: 20px;
    padding-right: 20px;
  }

  .chs-cta-only__button {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* END_SECTION:chs-cta-button */
/* START_SECTION:chs-everything-you-get (INDEX:20) */
.chs-everything {
    background: var(--chs-bg);
    color: var(--chs-text);
    padding: var(--chs-pad-top) 20px var(--chs-pad-bottom);
    overflow: hidden;
  }

  .chs-everything,
  .chs-everything * {
    box-sizing: border-box;
  }

  .chs-everything__inner {
    width: 100%;
    max-width: var(--chs-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, var(--chs-text-column)) minmax(0, var(--chs-image-column));
    gap: 44px;
    align-items: center;
  }

  .chs-everything__left {
    min-width: 0;
  }

  .chs-everything__title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .chs-everything__title-row h2 {
    margin: 0;
    max-width: 520px;
    font-family: var(--font-heading-family);
    font-size: clamp(38px, 3.8vw, 58px);
    line-height: .98;
    letter-spacing: -.04em;
    font-weight: 800;
  }

  .chs-everything__heart {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: var(--chs-pink);
    margin-top: 10px;
  }

  .chs-everything__heart svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .chs-everything__lists {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .chs-everything__lists ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }

  .chs-everything__lists li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: var(--font-body-family);
    font-size: var(--chs-list-font-size);
    line-height: 1.4;
    font-weight: 400;
  }

  .chs-everything__check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--chs-pink);
    margin-top: -1px;
  }

  .chs-everything__check svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .chs-everything__visuals {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .chs-everything__visual {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--chs-image-radius);
  }

  .chs-everything__visual img,
  .chs-everything__visual svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  @media screen and (max-width: 1050px) {
    .chs-everything__inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .chs-everything__visuals {
      max-width: 850px;
      width: 100%;
      margin: 0 auto;
    }
  }

  @media screen and (max-width: 749px) {
    .chs-everything {
      padding-left: 24px;
      padding-right: 24px;
    }

    .chs-everything__title-row {
      gap: 10px;
    }

    .chs-everything__title-row h2 {
      font-size: clamp(36px, 11vw, 48px);
    }

    .chs-everything__heart {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
      margin-top: 6px;
    }

    .chs-everything__lists {
      grid-template-columns: 1fr;
      gap: 12px;
    }


  }
/* END_SECTION:chs-everything-you-get */
/* START_SECTION:chs-faq (INDEX:21) */
.chs-faq {
  background: var(--chs-bg);
  color: var(--chs-text);
  padding: var(--chs-pad-top) var(--chs-side-pad) var(--chs-pad-bottom);
}

.chs-faq,
.chs-faq * {
  box-sizing: border-box;
}

.chs-faq__inner {
  width: 100%;
  max-width: var(--chs-width);
  margin: 0 auto;
}

.chs-faq__header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.chs-faq__eyebrow {
  margin-bottom: 10px;
  color: var(--chs-accent);
  font-family: var(--font-body-family);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chs-faq__header h2 {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: var(--chs-heading-size);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 800;
}

.chs-faq__subheading {
  margin-top: 12px;
  font-family: var(--font-body-family);
  font-size: var(--chs-sub-size);
  line-height: 1.5;
}

.chs-faq__subheading p {
  margin: 0;
}

.chs-faq__list {
  display: grid;
  gap: var(--chs-item-gap);
}

.chs-faq__item {
  overflow: hidden;
  border: 1px solid var(--chs-border);
  border-radius: var(--chs-item-radius);
  background: var(--chs-item-bg);
}

.chs-faq__question {
  width: 100%;
  padding: var(--chs-item-pad-y) var(--chs-item-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body-family);
  font-size: var(--chs-question-size);
  line-height: 1.3;
  font-weight: 700;
  color: var(--chs-text);
}

.chs-faq__question::-webkit-details-marker {
  display: none;
}

.chs-faq__question::marker {
  display: none;
  content: "";
}

.chs-faq__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--chs-accent);
  display: grid;
  place-items: center;
}

.chs-faq__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.chs-faq__icon-v {
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease;
}

.chs-faq__item[open] .chs-faq__icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

.chs-faq__answer {
  padding: 0 var(--chs-item-pad-x) var(--chs-item-pad-y);
  font-family: var(--font-body-family);
  font-size: var(--chs-answer-size);
  line-height: 1.6;
  color: var(--chs-text);
  opacity: .82;
}

.chs-faq__answer p {
  margin: 0 0 12px;
}

.chs-faq__answer p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 749px) {
  .chs-faq {
    padding-left: 18px;
    padding-right: 18px;
  }

  .chs-faq__header {
    margin-bottom: 24px;
  }

  .chs-faq__header h2 {
    font-size: var(--chs-heading-mobile);
  }

  .chs-faq__question {
    font-size: max(15px, calc(var(--chs-question-size) - 1px));
    padding-left: 16px;
    padding-right: 16px;
  }

  .chs-faq__answer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* END_SECTION:chs-faq */
/* START_SECTION:chs-image-carousel (INDEX:22) */
.chs-manual-carousel {
  background: var(--chs-bg);
  color: var(--chs-text);
  padding: var(--chs-pad-top) var(--chs-side-pad) var(--chs-pad-bottom);
}

.chs-manual-carousel,
.chs-manual-carousel * {
  box-sizing: border-box;
}

.chs-manual-carousel__inner {
  width: 100%;
  max-width: var(--chs-width);
  margin: 0 auto;
}

.chs-manual-carousel__header {
  min-height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.chs-manual-carousel__heading-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.chs-manual-carousel__heading-wrap h2 {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: var(--chs-heading-size);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 700;
}

.chs-manual-carousel__title-icon {
  width: var(--chs-icon-size);
  height: var(--chs-icon-size);
  flex: 0 0 var(--chs-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--chs-accent);
}

.chs-manual-carousel__title-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chs-manual-carousel__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.chs-manual-carousel__arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(32,34,25,.14);
  border-radius: 50%;
  background: #fff;
  color: var(--chs-text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.chs-manual-carousel__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chs-manual-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - (var(--chs-cards-desktop) - 1) * var(--chs-gap))
    / var(--chs-cards-desktop)
  );
  gap: var(--chs-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding: 1px;
}

.chs-manual-carousel__track::-webkit-scrollbar {
  display: none;
}

.chs-manual-carousel__card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--chs-radius);
  background: transparent;
  scroll-snap-align: start;
  align-self: start;
}

.chs-manual-carousel__image,
.chs-manual-carousel__placeholder {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 749px) {
  .chs-manual-carousel {
    padding-left: 16px;
    padding-right: 0;
  }

  .chs-manual-carousel__header {
    min-height: 36px;
    margin-bottom: 13px;
    padding-right: 16px;
  }

  .chs-manual-carousel__heading-wrap {
    gap: 8px;
  }

  .chs-manual-carousel__heading-wrap h2 {
    font-size: var(--chs-heading-mobile);
  }

  .chs-manual-carousel__title-icon {
    width: min(var(--chs-icon-size), 23px);
    height: min(var(--chs-icon-size), 23px);
    flex-basis: min(var(--chs-icon-size), 23px);
  }

  .chs-manual-carousel__controls {
    display: none;
  }

  .chs-manual-carousel__track {
    grid-auto-columns: var(--chs-mobile-width);
    padding-right: 16px;
  }
}
/* END_SECTION:chs-image-carousel */
/* START_SECTION:chs-lifetime-access-hero (INDEX:24) */
.chs-life-hero {
  background: var(--chs-bg);
  color: var(--chs-text);
  padding: var(--chs-pad-top) var(--chs-side-pad) var(--chs-pad-bottom);
}

.chs-life-hero,
.chs-life-hero * {
  box-sizing: border-box;
}

.chs-life-hero__inner {
  width: 100%;
  max-width: var(--chs-width);
  margin: 0 auto;
  text-align: center;
}

.chs-life-hero__eyebrow {
  margin-bottom: 14px;
  color: var(--chs-accent);
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chs-life-hero__heading {
  margin: 0;
  font-family: {{ heading_font.family }}, {{ heading_font.fallback_families }};
  font-style: {{ heading_font.style }};
  font-size: var(--chs-heading-size);
  line-height: var(--chs-heading-line);
  letter-spacing: -.04em;
  font-weight: 800;
}

.chs-life-hero__accent {
  color: var(--chs-accent);
}

.chs-life-hero__subheading {
  max-width: var(--chs-sub-width);
  margin: 20px auto 0;
  font-family: var(--font-body-family);
  font-size: var(--chs-sub-size);
  line-height: 1.5;
}

.chs-life-hero__subheading p {
  margin: 0;
}

.chs-life-hero__price-row {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-family: var(--font-body-family);
}

.chs-life-hero__compare {
  font-size: calc(var(--chs-price-size) * .62);
  text-decoration: line-through;
  opacity: .55;
}

.chs-life-hero__price {
  font-size: var(--chs-price-size);
  line-height: 1;
  font-weight: 800;
}

.chs-life-hero__price-note {
  font-size: 13px;
  opacity: .7;
}

.chs-life-hero__button {
  width: min(100%, var(--chs-button-width));
  min-height: var(--chs-button-height);
  margin: 26px auto 0;
  padding: 0 28px;
  border-radius: var(--chs-button-radius);
  background: var(--chs-button-bg);
  color: var(--chs-button-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-family: var(--font-body-family);
  font-size: var(--chs-button-size);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity .18s ease, transform .18s ease;
}

.chs-life-hero__button:hover {
  color: var(--chs-button-text);
  opacity: .92;
  transform: translateY(-1px);
}

.chs-life-hero__button span {
  font-size: 1.35em;
  font-weight: 400;
}

.chs-life-hero__note {
  margin-top: 11px;
  font-family: var(--font-body-family);
  font-size: 12px;
  line-height: 1.35;
  opacity: .72;
}

.chs-life-hero__trust {
  margin-top: var(--chs-trust-gap);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--chs-trust-color);
  font-family: var(--font-body-family);
  font-size: var(--chs-trust-size);
  line-height: 1.3;
  font-weight: 700;
}

.chs-life-hero__heart {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: var(--chs-accent);
}

.chs-life-hero__heart svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.chs-life-hero__benefits {
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--chs-benefit-gap);
}

.chs-life-hero__benefit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body-family);
  font-size: var(--chs-benefit-size);
  line-height: 1.3;
}

.chs-life-hero__check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--chs-accent);
}

.chs-life-hero__check svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media screen and (max-width: 749px) {
  .chs-life-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .chs-life-hero__heading {
    font-size: var(--chs-heading-mobile);
  }

  .chs-life-hero__subheading {
    font-size: var(--chs-sub-mobile);
  }

  .chs-life-hero__price {
    font-size: var(--chs-price-size-mobile);
  }

  .chs-life-hero__benefits {
    gap: 12px 18px;
  }

  .chs-life-hero__benefit {
    font-size: 12px;
  }
}
/* END_SECTION:chs-lifetime-access-hero */
/* START_SECTION:chs-lifetime-cta-strip (INDEX:25) */
.chs-lifetime-strip {
    padding: var(--chs-pad-top) 20px var(--chs-pad-bottom);
  }

  .chs-lifetime-strip,
  .chs-lifetime-strip * {
    box-sizing: border-box;
  }

  .chs-lifetime-strip__inner {
    width: 100%;
    max-width: var(--chs-width);
    margin: 0 auto;
    padding: 18px 28px;
    border-radius: var(--chs-radius);
    background: var(--chs-bg);
    color: var(--chs-text);

    display: grid;
    grid-template-columns: 1fr minmax(360px, .95fr);
    align-items: center;
    gap: 42px;
  }

  .chs-lifetime-strip__copy {
    text-align: center;
  }

  .chs-lifetime-strip__copy h2 {
    margin: 0;
    font-family: var(--font-heading-family);
    font-size: clamp(34px, 3.2vw, 50px);
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 800;
  }

  .chs-lifetime-strip__copy p {
    margin: 10px 0 0;
    font-family: var(--font-body-family);
    font-size: 16px;
    line-height: 1.35;
  }

  .chs-lifetime-strip__action {
    text-align: center;
  }

  .chs-lifetime-strip__button {
    width: 100%;
    min-height: 58px;
    padding: 0 26px;
    border-radius: 7px;
    background: var(--chs-pink);
    color: var(--chs-button-text);
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    font-family: var(--font-body-family);
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .01em;

    transition: opacity .18s ease, transform .18s ease;
  }

  .chs-lifetime-strip__button:hover {
    color: var(--chs-button-text);
    opacity: .92;
    transform: translateY(-1px);
  }

  .chs-lifetime-strip__button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
  }

  .chs-lifetime-strip__note {
    margin: 8px 0 0;
    font-family: var(--font-body-family);
    font-size: 13px;
    line-height: 1.3;
  }

  @media screen and (max-width: 900px) {
    .chs-lifetime-strip__inner {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 24px;
    }

    .chs-lifetime-strip__copy h2 {
      font-size: 38px;
    }

    .chs-lifetime-strip__action {
      max-width: 560px;
      width: 100%;
      margin: 0 auto;
    }
  }

  @media screen and (max-width: 749px) {
    .chs-lifetime-strip {
      padding-left: 20px;
      padding-right: 20px;
    }

    .chs-lifetime-strip__inner {
      padding: 22px 18px;
      border-radius: min(var(--chs-radius), 20px);
    }

    .chs-lifetime-strip__copy h2 {
      font-size: clamp(32px, 9vw, 40px);
    }

    .chs-lifetime-strip__copy p {
      font-size: 15px;
    }

    .chs-lifetime-strip__button {
      min-height: 54px;
      padding: 0 18px;
      font-size: 14px;
      gap: 12px;
    }
  }
/* END_SECTION:chs-lifetime-cta-strip */
/* START_SECTION:hs-how-it-works (INDEX:51) */
.chs-how {
    background: var(--chs-bg);
    color: var(--chs-text);
    padding: var(--chs-padding-top) 20px var(--chs-padding-bottom);
  }

  .chs-how * {
    box-sizing: border-box;
  }

  .chs-how__inner {
    width: 100%;
    max-width: var(--chs-width);
    margin: 0 auto;
  }

  .chs-how__heading {
    margin: 0 0 22px;
    text-align: center;
    font-family: var(--font-heading-family);
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.03em;
  }

  .chs-how__steps {
    display: grid;
    grid-template-columns: 1fr 90px 1fr 90px 1fr;
    align-items: center;
    gap: 18px;
  }

  .chs-how__step {
    display: grid;
    grid-template-columns: 34px 90px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  .chs-how__number {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-body-family);
    font-size: 16px;
    font-weight: 800;
  }

  .chs-how__number--pink { background: #dd406f; }
  .chs-how__number--teal { background: #32aaa8; }
  .chs-how__number--gold { background: #efa915; }

  .chs-how__icon {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border-radius: 50%;
  }

  .chs-how__icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .chs-how__icon--pink {
    background: #fbe3e9;
    color: #dd406f;
  }

  .chs-how__icon--teal {
    background: #e0f2f1;
    color: #25777b;
  }

  .chs-how__icon--gold {
    background: #fde8bf;
    color: #202219;
  }

  .chs-how__copy strong {
    display: block;
    font-family: var(--font-body-family);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
  }

  .chs-how__copy p {
    margin: 7px 0 0;
    font-family: var(--font-body-family);
    font-size: 14px;
    line-height: 1.45;
  }

  .chs-how__arrow {
    width: 90px;
    color: #8d8d8d;
  }

  .chs-how__arrow svg {
    display: block;
    width: 100%;
    height: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 4 4;
  }

  @media screen and (max-width: 1050px) {
    .chs-how__steps {
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: 600px;
      margin: 0 auto;
    }

    .chs-how__arrow {
      display: none;
    }
  }

  @media screen and (max-width: 520px) {
    .chs-how {
      padding-left: 16px;
      padding-right: 16px;
    }

    .chs-how__step {
      grid-template-columns: 30px 72px minmax(0, 1fr);
      gap: 11px;
    }

    .chs-how__number {
      width: 28px;
      height: 28px;
      font-size: 14px;
    }

    .chs-how__icon {
      width: 72px;
      height: 72px;
    }

    .chs-how__icon svg {
      width: 43px;
      height: 43px;
    }
  }
/* END_SECTION:hs-how-it-works */
