@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Tenor+Sans&display=swap');
html {
  background: #ffffff;
  scroll-padding-bottom: var(--sticky_offer_height);
  scrollbar-color: #bd2612 #ffffff;
  scrollbar-width: thin;
  font-size: 32px;
}
@media all and (max-width: 750px) {
  html {
    font-size: calc(1vw * (16 / 3.75));
  }
}
:root {
  --sticky_offer_height: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



html::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

html::-webkit-scrollbar-track,
html::-webkit-scrollbar-corner {
  background: #ffffff;
}

html::-webkit-scrollbar-thumb {
  border-radius: 62.4375rem;
  background: #bd2612;
}

@media (forced-colors: active) {
  html {
    scrollbar-color: auto;
    scrollbar-width: auto;
  }
}

body {
  width: 100%;
  background: #ffffff;
  font-family: "Manrope", sans-serif;
}

body.paid_channel_page.is_preloading {
  overflow: hidden;
}

.deferred_image_fallback {
  display: none;
}

.paid_channel_preloader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.paid_channel_preloader_logo {
  display: block;
  width: 70%;
  max-width: 25.6875rem;
  height: auto;
  animation: paid_channel_preloader_pulse 1s linear infinite;
}

@keyframes paid_channel_preloader_pulse {
  0%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.6;
  }
}

.paid_channel_preloader.is_fading {
  opacity: 0;
}

.paid_channel_preloader.is_hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .deferred_image_fallback {
  display: none;
}

.paid_channel_preloader {
    transition: none;
  }

  .paid_channel_preloader_logo {
    animation: none;
  }
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.hero_button,
.pricing_button,
.footer_top_button,
.sticky_offer_button {
  text-decoration: none;
}

.hero_button,
.pricing_button,
.sticky_offer_button {
  transition: background-color 0.5s ease, color 0.5s ease;
}

.pricing_button,
.sticky_offer_button {
  border: 0.0625rem solid #bd2612;
}

@media (hover: hover) and (pointer: fine) {
  .hero_button:hover {
    background-color: #bd2612;
    color: #ffffff;
  }

  .pricing_button:hover,
  .sticky_offer_button:hover {
    background-color: #ffffff;
    color: #bd2612;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero_button,
  .pricing_button,
  .sticky_offer_button {
    transition: none;
  }
}

.hero_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 23.4375rem;
  overflow: hidden;
}

.hero_section > .container {
  position: relative;
  isolation: isolate;
  padding-top: 5rem;
  background: #bd2612;
}

.hero_texture {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 50.5625rem;
  height: auto;
  opacity: 0.1;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  user-select: none;
}

.hero_intro,
.hero_offer {
  position: relative;
  z-index: 1;
  display: flex;
  width: calc(100% - 2rem);
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
}

.hero_eyebrow {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Tenor Sans", sans-serif;
  font-size: 0.8671875rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero_title {
  margin-top: 1.25rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  text-align: center;
}

.hero_title_accent {
  color: #a3d3f5;
}

.hero_underline {
  width: 9.4375rem;
  height: auto;
  margin-top: -0.0625rem;
  margin-right: 1.125rem;
  align-self: flex-end;
}

.hero_video_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 343 / 193;
  margin: 0.6875rem 0 1.25rem;
  overflow: hidden;
  border: 0.125rem solid #ffffff;
  background: #161616;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.25);
}

.hero_video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_video::cue {
  background: rgba(22, 22, 22, 0.8);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
}

.hero_video_sound {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 50%;
  display: inline-flex;
  max-width: calc(100% - 2rem);
  padding: 0.625rem 0.875rem;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid rgba(255, 255, 255, 0.35);
  border-radius: 62.4375rem;
  appearance: none;
  background: rgba(22, 22, 22, 0.78);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.18);
  color: #ffffff;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  text-align: center;
  transform: translateX(-50%);
  transition: background-color 180ms ease, opacity 180ms ease;
  white-space: nowrap;
}

.hero_video_sound:hover {
  background: rgba(22, 22, 22, 0.9);
}

.hero_video_sound:focus-visible {
  outline: 0.125rem solid #ffffff;
  outline-offset: 0.125rem;
}

.hero_video_sound:disabled {
  cursor: wait;
  opacity: 0.7;
}

.hero_video_sound[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero_video_sound {
    transition: none;
  }
}

.hero_description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
}

.hero_offer {
  margin-top: 1.5rem;
}

.hero_button {
  display: flex;
  width: 100%;
  padding: 0.75rem 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #bd2612;
  cursor: pointer;
}

.hero_button_label,
.hero_button_price {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
}

.hero_button_label {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.hero_button_price {
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  line-height: 2.25rem;
}

.hero_result {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-align: center;
}

.hero_result strong {
  color: #ffffff;
  font-weight: 600;
}

.hero_bottom {
  position: relative;
  z-index: 1;
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  margin-top: 2.375rem;
}

.income_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.income_section > .container {
  padding: 3rem 1rem;
  background: #ffffff;
}

.income_content,
.income_heading {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.income_title {
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.income_subtitle {
  margin-top: 0.75rem;
  color: #bd2612;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25rem;
}

.income_description {
  margin-top: 1.5rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.beliefs_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.beliefs_section > .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    url("../images/beliefs_texture.jpg");
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 13.8rem 24.525rem;
}

.beliefs_top_edge,
.beliefs_bottom_edge {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  flex: none;
}

.beliefs_heading {
  display: flex;
  width: calc(100% - 2rem);
  margin: 2.375rem auto 0;
  flex-direction: column;
}

.beliefs_title {
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.beliefs_underline {
  width: 9.4375rem;
  height: auto;
  margin-top: 0.1875rem;
  margin-left: 0.375rem;
}

.beliefs_cards {
  display: flex;
  width: calc(100% - 2rem);
  margin: 0.6875rem auto 0;
  flex-direction: column;
  gap: 1.25rem;
}

.beliefs_card {
  display: flex;
  width: 100%;
  padding: 1.5rem;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
}

.beliefs_card_title {
  color: #393936;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.beliefs_card_description {
  margin-top: 0.5rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.beliefs_bottom_edge {
  margin-top: 2.375rem;
}

.revenue_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.revenue_section > .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #c33b29;
}

.revenue_content {
  display: flex;
  width: calc(100% - 2rem);
  margin: 5rem auto 0;
  flex-direction: column;
}

.revenue_title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  text-align: center;
}

.revenue_title_accent {
  color: #a3d3f5;
}

.revenue_title_underlined {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  vertical-align: top;
}

.revenue_title_underlined::after {
  display: block;
  width: 6.8125rem;
  height: 0.5rem;
  margin-top: -0.125rem;
  margin-bottom: -0.375rem;
  background: url("../icons/revenue_underline.svg") center / 100% 100% no-repeat;
  content: "";
}

.revenue_wishes,
.revenue_wishes_list,
.revenue_paths,
.revenue_levels,
.revenue_level_list,
.revenue_level_card,
.revenue_level_intro,
.revenue_limit {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.revenue_wishes {
  margin-top: 2.25rem;
}

.revenue_wishes_title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.revenue_wishes_list {
  margin-top: 1rem;
  gap: 1rem;
}

.revenue_wish,
.revenue_limit {
  background:
    repeating-linear-gradient(to right, var(--dash_color), var(--dash_color) 0.5625rem, transparent 0.5625rem, transparent 1.125rem) top left / 100% 0.0625rem no-repeat,
    repeating-linear-gradient(to right, var(--dash_color), var(--dash_color) 0.5625rem, transparent 0.5625rem, transparent 1.125rem) bottom left / 100% 0.0625rem no-repeat,
    repeating-linear-gradient(to bottom, var(--dash_color), var(--dash_color) 0.5625rem, transparent 0.5625rem, transparent 1.125rem) top left / 0.0625rem 100% no-repeat,
    repeating-linear-gradient(to bottom, var(--dash_color), var(--dash_color) 0.5625rem, transparent 0.5625rem, transparent 1.125rem) top right / 0.0625rem 100% no-repeat;
}

.revenue_wish {
  --dash_color: #78281d;
  width: 100%;
  padding: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.revenue_paths {
  margin-top: 2.25rem;
}

.revenue_paths_title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  text-align: center;
}

.revenue_paths_row {
  display: flex;
  width: 100%;
  margin-top: 1.5rem;
  align-items: flex-start;
}

.revenue_path_image {
  display: block;
  width: 11.375rem;
  height: auto;
  flex: none;
}

.revenue_path_image_time {
  margin: -0.75rem -0.5625rem -1.75916875rem -1rem;
}

.revenue_paths_or {
  z-index: 1;
  width: 1.8125rem;
  margin-top: 1.82875rem;
  flex: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-align: center;
}

.revenue_path_image_knowledge {
  margin: -0.75rem -1.01955rem -1.75916875rem -0.54295rem;
}

.revenue_levels {
  margin-top: 2.25rem;
}

.revenue_levels_title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.revenue_level_list {
  margin-top: 1.25rem;
  gap: 1.25rem;
}

.revenue_level_card {
  padding: 1.5rem;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
}

.revenue_level_title {
  color: #393936;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.revenue_level_description,
.revenue_limit_text {
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.revenue_level_description {
  margin-top: 0.25rem;
}

.revenue_limit {
  --dash_color: #78281d;
  width: calc(100% - 1rem);
  margin-top: 2rem;
  margin-left: 1rem;
  padding: 0 1rem 1rem;
}

.revenue_limit_badge {
  margin: -0.75rem 0 0.375rem -2rem;
  padding: 0.25rem 0.75rem;
  align-self: flex-start;
  border-radius: 6.25rem;
  background: #bd2612;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
  white-space: nowrap;
  transform: rotate(-1deg);
}

.revenue_limit_unlimited {
  --dash_color: #a3d3f5;
}

.revenue_limit_unlimited .revenue_limit_badge {
  margin-top: -0.765625rem;
  margin-bottom: 0.390625rem;
  background: #a3d3f5;
}

.revenue_bottom {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  margin-top: 2.405rem;
  margin-bottom: -0.029375rem;
  flex: none;
}

.steps_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.steps_section > .container {
  display: flex;
  padding: 3rem 1rem;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

.steps_intro,
.steps_list,
.steps_item_content,
.steps_item_text {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.steps_title {
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.steps_description,
.steps_item_description {
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.steps_description {
  margin-top: 1rem;
}

.steps_list {
  margin-top: 1.5rem;
  gap: 1.25rem;
}

.steps_item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 1rem;
}

.steps_number {
  display: block;
  width: 1.75rem;
  padding: 0.375rem 0;
  flex: none;
  color: #a3d3f5;
  font-family: "Tenor Sans", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 3rem;
  text-align: left;
}

.steps_item:first-child .steps_number {
  text-align: center;
}

.steps_item_content {
  flex: 1;
}

.steps_item_title {
  color: #393936;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.steps_item_description {
  margin-top: 0.25rem;
}

.steps_result {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.steps_result img {
  display: block;
  width: 0.75rem;
  height: auto;
  flex: none;
}

.author_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.author_section > .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #e7f4fc url("../images/author_texture.jpg") center top / 100% 100% no-repeat;
}

.author_top_edge,
.author_bottom_edge {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  flex: none;
}

.author_intro {
  display: flex;
  width: calc(100% - 2rem);
  margin: 2.375rem auto 0;
  flex-direction: column;
}

.author_title {
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.author_bio {
  display: flex;
  width: 100%;
  margin-top: 1.25rem;
  flex-direction: column;
  gap: 0.75rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.author_portrait {
  display: block;
  width: 22.209375rem;
  height: auto;
  margin-top: 1.5rem;
  margin-left: 0.22875rem;
  flex: none;
}

.author_method_card {
  display: flex;
  width: calc(100% - 2rem);
  margin: 1.5rem auto 0;
  padding: 1.5rem;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
}

.author_method_title {
  color: #393936;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.author_method_card p {
  margin-top: 1rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.author_bottom_edge {
  margin-top: 2.375rem;
}

.reasons_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.reasons_section > .container {
  display: flex;
  padding: 3rem 1rem;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

.reasons_title {
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.reasons_description,
.reasons_emphasis,
.reasons_card_intro {
  color: #393936;
  font-size: 1rem;
  line-height: 1.5rem;
}

.reasons_description {
  margin-top: 1rem;
  font-weight: 400;
}

.reasons_emphasis {
  margin-top: 1rem;
  font-weight: 600;
}

.reasons_card {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  flex-direction: column;
  background: #ffffff url("../icons/reasons_border.svg") 0 0 / 100% 100% no-repeat;
}

.reasons_card_intro {
  font-weight: 400;
}

.reasons_topics {
  display: grid;
  width: 100%;
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
}

.reasons_topic {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  color: #393936;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  text-align: center;
}

.reasons_topic img {
  display: block;
  width: 3rem;
  height: auto;
  margin-top: 0rem;
  margin-bottom: 0.25rem;
  flex: none;
  box-shadow: 0px 5px 25px;
  border-radius: 50%;
}

.reasons_card_summary {
  margin-top: 1rem;
  color: #393936;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.program_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.program_section > .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #bd2612;
}

.program_top_edge,
.program_bottom_edge {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  flex: none;
}

.program_intro {
  display: flex;
  width: calc(100% - 2rem);
  margin: 2.375rem auto 0;
  flex-direction: column;
}

.program_title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.program_description {
  margin-top: 1.25rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.program_cards,
.program_card,
.program_card_body {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.program_cards {
  width: calc(100% - 2rem);
  margin: 1.5rem auto 0;
  gap: 1rem;
}

.program_card {
  --card_rotation: 0deg;

  padding: 1.5rem;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
  transform: rotate(var(--card_rotation));
}

.program_card_title {
  color: #393936;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.program_card_body {
  margin-top: 1rem;
  gap: 0.5rem;
}

.program_card_description,
.program_card_detail {
  color: #393936;
  font-weight: 400;
}

.program_card_description {
  font-size: 1rem;
  line-height: 1.5rem;
}

.program_card_detail {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.program_card_detail strong {
  font-weight: 700;
}

.program_button {
  width: calc(100% - 2rem);
  margin: 1.5rem auto 0;
}

.program_bottom_edge {
  margin-top: 2.375rem;
}

.results_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.results_section > .container {
  display: flex;
  padding: 3rem 1rem;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

.results_title {
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.results_description,
.results_learning_title,
.results_list_item,
.results_card {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5rem;
}

.results_description {
  margin-top: 1rem;
  font-weight: 400;
}

.results_learning {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  flex-direction: column;
}

.results_learning_title {
  font-weight: 600;
}

.results_list {
  display: flex;
  width: 100%;
  margin-top: 0.75rem;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.results_list_item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}

.results_list_item img {
  display: block;
  width: 0.75rem;
  height: auto;
  margin-top: 0.5rem;
  flex: none;
}

.results_list_item span {
  min-width: 0;
  flex: 1;
}

.results_cards {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

.results_card {
  width: 100%;
  padding: 0.6875rem 1.4375rem;
  border: 0.0625rem solid #bd2612;
  font-weight: 400;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
}

.fears_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.fears_section > .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #a3d3f5 url("../images/fears_texture.jpg") center / 100% 100% no-repeat;
}

.fears_top_edge,
.fears_bottom_edge {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  flex: none;
}

.fears_intro {
  display: flex;
  width: calc(100% - 2rem);
  margin: 2.375rem auto 0;
  flex-direction: column;
}

.fears_title {
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.fears_description {
  margin-top: 1.25rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.fears_cards {
  display: flex;
  width: calc(100% - 2rem);
  margin: 1.5rem auto 0;
  flex-direction: column;
  gap: 1rem;
}

.fears_card {
  --card_rotation: 0deg;

  display: flex;
  width: 100%;
  padding: 1.5rem;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
  transform: rotate(var(--card_rotation));
}

.fears_card_tilt_left {
  --card_rotation: -1deg;

  margin-top: 0.1865234375rem;
  margin-bottom: 0.1865234375rem;
}

.fears_card_tilt_right {
  --card_rotation: 1deg;

  margin-top: 0.185546875rem;
  margin-bottom: 0.185546875rem;
}

.fears_card_label {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff url("../icons/fears_label_single.svg") 0 0 / 100% 100% no-repeat;
  color: #393936;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.fears_card_label_double {
  background-image: url("../icons/fears_label_double.svg");
}

.fears_card_answer {
  display: flex;
  width: 100%;
  margin-top: 0.75rem;
  align-items: flex-start;
  gap: 0.5rem;
}

.fears_card_answer img {
  display: block;
  width: 0.75rem;
  height: auto;
  margin-top: 0.5rem;
  flex: none;
}

.fears_card_answer p {
  min-width: 0;
  flex: 1;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.fears_bottom_edge {
  margin-top: 2.375rem;
}

.pricing_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.pricing_section > .container {
  display: flex;
  padding: 3rem 1rem;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  background: #ffffff;
}

.pricing_card {
  display: flex;
  width: 100%;
  padding: 2rem;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
}

.pricing_title {
  color: #393936;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.pricing_date {
  margin-top: 0.25rem;
  color: #393936;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.pricing_ticket {
  display: grid;
  width: 19.9375rem;
  margin: 0.75rem -1.25rem -0.7824096875rem;
  flex: none;
}

.paid_channel_page.has_pricing_parallax
  [data-scroll-animation="pricing_parallax"] {
  transform:
    perspective(40rem)
    translate3d(
      0,
      var(--pricing_parallax_y, 0px),
      0
    )
    rotateX(var(--pricing_parallax_rotate_x, 0deg));
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

.pricing_ticket_art,
.pricing_ticket_price {
  grid-area: 1 / 1;
}

.pricing_ticket_art {
  display: block;
  width: 100%;
  height: auto;
}

.pricing_ticket_price {
  align-self: start;
  justify-self: center;
  margin-top: 3.225625rem;
  font-family: "Tenor Sans", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 4.5rem;
  white-space: nowrap;
  transform: translateX(0.03125rem);
}

.pricing_ticket_price_blue {
  color: #a3d3f5;
}

.pricing_ticket_price_red {
  color: #b92a17;
}

.pricing_list {
  display: flex;
  width: 100%;
  margin-top: 0.75rem;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.pricing_list_item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 0.5rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.pricing_list_item img {
  display: block;
  width: 0.75rem;
  height: auto;
  margin-top: 0.5rem;
  flex: none;
}

.pricing_list_item span {
  min-width: 0;
  flex: 1;
}

.pricing_list_item_accent {
  color: #bd2612;
  font-weight: 700;
}

.pricing_button {
  display: flex;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.6875rem 0.9375rem;
  align-items: center;
  justify-content: center;
  background: #bd2612;
  color: #ffffff;
  font-family: "Tenor Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1rem;
  text-transform: uppercase;
}

.doubts_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.doubts_section > .container {
  display: flex;
  padding-bottom: 3rem;
  flex-direction: column;
  overflow: hidden;
  background: #bd2612;
}

.doubts_top_edge {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  flex: none;
}

.doubts_intro,
.doubts_questions {
  display: flex;
  width: calc(100% - 2rem);
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
}

.doubts_intro {
  margin-top: 2.375rem;
  gap: 2rem;
}

.doubts_intro_title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.doubts_short_answers {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 2rem;
}

.doubts_short_card {
  display: grid;
  width: 100%;
}

.doubts_short_box,
.doubts_badge {
  grid-area: 1 / 1;
}

.doubts_short_box {
  display: flex;
  width: calc(100% - 1.5rem);
  margin-left: 1.5rem;
  padding: 1.75rem 1rem 1rem;
  background: url("../icons/doubts_answer_long.svg") 0 0 / 100% 100% no-repeat;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.doubts_short_box_compact {
  background-image: url("../icons/doubts_answer_short.svg");
}

.doubts_badge {
  z-index: 1;
  width: 10.3125rem;
  margin-top: -0.622rem;
  margin-left: -0.01666875rem;
  padding: 0.25rem 0.75rem;
  align-self: start;
  justify-self: start;
  border-radius: 6.25rem;
  background: #a3d3f5;
  color: #323232;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  transform: rotate(-1deg);
  transform-origin: left top;
}

.doubts_badge_second {
  width: 15.0625rem;
  margin-top: -0.539125rem;
}

.doubts_questions {
  margin-top: 1.5rem;
  gap: 1.25rem;
}

.doubts_questions_title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.doubts_faq {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}

.doubts_faq_card {
  --card_rotation: 0deg;

  display: flex;
  width: 100%;
  padding: 1.5rem;
  flex-direction: column;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
  transform: rotate(var(--card_rotation));
}

.doubts_faq_card_tilt_left {
  --card_rotation: -1deg;

  margin-top: 0.1865234375rem;
  margin-bottom: 0.1865234375rem;
}

.doubts_faq_card_tilt_right {
  --card_rotation: 1deg;

  margin-top: 0.185546875rem;
  margin-bottom: 0.1865234375rem;
}

.doubts_faq_question {
  color: #393936;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.doubts_faq_answer {
  margin-top: 0.5rem;
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.expertise_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.expertise_section > .container {
  display: flex;
  padding-bottom: 3rem;
  flex-direction: column;
  overflow: hidden;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    url("../images/expertise_texture.jpg");
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 13.8rem 24.525rem;
}

.expertise_top_edge {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: auto;
  flex: none;
}

.expertise_title {
  display: flex;
  width: calc(100% - 2rem);
  margin: 2.375rem auto 0;
  flex-direction: column;
  color: #393936;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.expertise_title_underline {
  display: block;
  width: 9.4375rem;
  height: auto;
  margin: -0.0634765625rem 0 -0.5615234375rem 3.5185546875rem;
  flex: none;
}

.expertise_cards {
  display: flex;
  width: calc(100% - 2rem);
  margin: 1.5rem auto 0;
  flex-direction: column;
  gap: 1.25rem;
}

.expertise_card {
  display: flex;
  width: 100%;
  padding: 1.5rem;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 50, 82, 0.15);
}

.expertise_card_title {
  color: #393936;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.expertise_card_title > span {
  color: #b02816;
}

.expertise_points {
  display: flex;
  margin-top: 1.25rem;
  padding-bottom: 0.01286125rem;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.expertise_point {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 0.5261rem;
}

.expertise_point_icon {
  display: block;
  width: 0.75rem;
  height: auto;
  margin-top: 0.3814375rem;
  flex: none;
}

.expertise_point_text,
.expertise_emphasis_text {
  color: #393936;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.expertise_point_text strong,
.expertise_emphasis_text strong {
  font-weight: 700;
}

.expertise_emphasis {
  display: flex;
  margin-top: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.expertise_badge {
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
  background: #a3d3f5;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
}

.footer_section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.footer_section > .container {
  display: flex;
  padding: 2.5rem 1.25rem calc(2.5rem + var(--sticky_offer_height));
  flex-direction: column;
  overflow: hidden;
}

.footer_links {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer_link {
  color: #6f6f6e;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-decoration: underline;
}

.footer_divider {
  width: 100%;
  margin-top: 1.25rem;
  border-top: 0.0625rem solid #dfdfdf;
}

.footer_details {
  display: flex;
  width: 100%;
  margin-top: 1.25rem;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(0.0625rem);
}

.footer_company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer_company p,
.footer_email {
  color: #a3a3a2;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1rem;
}

.footer_email {
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.footer_top_button {
  display: flex;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9375rem 1.9375rem;
  align-items: center;
  justify-content: space-between;
  border: 0.0625rem solid #dfdfdf;
  appearance: none;
  background: transparent;
  color: #6f6f6e;
  cursor: pointer;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.footer_top_icon {
  display: block;
  width: 1.5rem;
  height: auto;
  flex: none;
  transition: transform 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer_top_button:hover .footer_top_icon {
    transform: translateY(-0.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer_top_icon {
    transition: none;
  }
}

.sticky_offer_section {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(100%);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 240ms;
}

.sticky_offer_section.is_visible {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.sticky_offer_section > .container {
  display: flex;
  height: var(--sticky_offer_height);
  padding: 0.75rem 1.25rem;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  background: rgba(163, 211, 245, 0.9);
}

.sticky_offer_price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  color: #ffffff;
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky_offer_price_row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
}

.sticky_offer_date {
  align-self: center;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  line-height: 0.75rem;
}

.sticky_offer_label {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
  transform: translateY(0.0625rem);
}

.sticky_offer_divider {
  width: 0;
  height: 1.25rem;
  margin-right: -0.0625rem;
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.2);
  flex: none;
}

.sticky_offer_amount {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.25rem;
  transform: translateY(0.0625rem);
}

.sticky_offer_button {
  display: inline-flex;
  min-width: 5.625rem;
  padding: 0.6875rem 0.9375rem;
  align-items: center;
  justify-content: center;
  flex: none;
  appearance: none;
  background: #bd2612;
  color: #ffffff;
  cursor: pointer;
  font-family: "Tenor Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.paid_channel_page.has_scroll_animations img[data-scroll-animation="underline"],
.paid_channel_page.has_scroll_animations .revenue_title_underlined[data-scroll-animation="underline"]::after {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s ease-out;
}

.paid_channel_page.has_scroll_animations img[data-scroll-animation="underline"].is_revealed,
.paid_channel_page.has_scroll_animations .revenue_title_underlined[data-scroll-animation="underline"].is_revealed::after {
  clip-path: inset(0);
}

.paid_channel_page.has_scroll_animations
  .steps_item[data-scroll-animation="steps_item"] .steps_item_content {
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.paid_channel_page.has_scroll_animations
  .steps_item[data-scroll-animation="steps_item"] .steps_number {
  opacity: 0;
  transform: scale(0.82);
  transform-origin: center;
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
    transform 0.42s cubic-bezier(0.34, 1.25, 0.64, 1) 0.22s;
}

.paid_channel_page.has_scroll_animations
  .steps_item[data-scroll-animation="steps_item"].is_revealed .steps_item_content,
.paid_channel_page.has_scroll_animations
  .steps_item[data-scroll-animation="steps_item"].is_revealed .steps_number {
  opacity: 1;
  transform: none;
}

.paid_channel_page.has_scroll_animations [data-scroll-animation="card_fall"] {
  opacity: 0;
  transform:
    translateY(0.75rem)
    rotate(var(--card_rotation, 0deg));
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.paid_channel_page.has_scroll_animations
  [data-scroll-animation="card_fall"].is_revealed {
  opacity: 1;
  transform:
    translateY(0)
    rotate(var(--card_rotation, 0deg));
}

@media (prefers-reduced-motion: reduce) {
  .sticky_offer_section {
    transition: none;
  }

  .paid_channel_page.has_scroll_animations img[data-scroll-animation="underline"],
  .paid_channel_page.has_scroll_animations .revenue_title_underlined[data-scroll-animation="underline"]::after {
    clip-path: inset(0);
    transition: none;
  }

  .paid_channel_page.has_scroll_animations
    .steps_item[data-scroll-animation="steps_item"] .steps_item_content,
  .paid_channel_page.has_scroll_animations
    .steps_item[data-scroll-animation="steps_item"] .steps_number {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .paid_channel_page.has_scroll_animations [data-scroll-animation="card_fall"] {
    opacity: 1;
    transform:
      translateY(0)
      rotate(var(--card_rotation, 0deg));
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .paid_channel_page
    [data-scroll-animation="pricing_parallax"] {
    transform: none;
  }
}
