.home-section--narrow {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.home-section--compact {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.home-section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-section__title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.home-section__description {
  text-align: center;
  line-height: 1.4;
  color: #797986;
}

.home-section--horizontal-padding {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 576px) {
  .home-section--horizontal-padding {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .home-section--horizontal-padding {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .home-section--horizontal-padding {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.t-btn {
  --t-btn-background: null;
  --t-btn-color: null;
  --t-btn-border-color: null;
  --t-btn-hover-background: null;
  --t-btn-hover-color: null;
  --t-btn-hover-border-color: null;
  --t-btn-active-background: null;
  --t-btn-active-color: null;
  --t-btn-active-border-color: null;
  --t-btn-disabled-background: null;
  --t-btn-disabled-color: null;
  --t-btn-disabled-border-color: null;
  --t-btn-focus-background: null;
  --t-btn-focus-color: null;
  --t-btn-focus-border-color: null;
  --t-btn-border-radius: 8px;
  --t-btn-padding-y: 9px;
  --t-btn-padding-x: 23px;
  --t-btn-padding-left: var(--t-btn-padding-x);
  --t-btn-font-size: 14px;
  --t-btn-icon-size: 20px;
  --t-btn-border-width: 1px;
  --t-btn-font-weight: 400;
  --t-btn-min-width: auto;
  --t-btn-min-height: auto;
  --t-btn-gap: 6px;
  --t-btn-line-height: 20px;
  --t-btn-focus-box-shadow: 0 0 0 3px #cfccff;
  --t-btn-text-decoration: none;
  padding: var(--t-btn-padding-y) var(--t-btn-padding-x);
  padding-left: var(--t-btn-padding-left);
  border-radius: var(--t-btn-border-radius);
  font-size: var(--t-btn-font-size);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: var(--t-btn-line-height);
  gap: var(--t-btn-gap);
  min-height: var(--t-btn-min-height);
  min-width: var(--t-btn-min-width);
  font-weight: var(--t-btn-font-weight);
  -webkit-text-decoration: var(--t-btn-text-decoration);
  text-decoration: var(--t-btn-text-decoration);
  background-color: var(--t-btn-background);
  color: var(--t-btn-color);
  cursor: pointer;
  border: var(--t-btn-border-width) solid var(--t-btn-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.t-btn i {
  flex-shrink: 0;
  font-size: var(--t-btn-icon-size);
}
.t-btn:hover {
  background-color: var(--t-btn-hover-background);
  color: var(--t-btn-hover-color);
  border-color: var(--t-btn-hover-border-color);
}
.t-btn:active, .t-btn:active:hover {
  background-color: var(--t-btn-active-background);
  color: var(--t-btn-active-color);
  border-color: var(--t-btn-active-border-color);
}
.t-btn:focus-visible {
  background-color: var(--t-btn-focus-background);
  color: var(--t-btn-focus-color);
  border-color: var(--t-btn-focus-border-color);
  box-shadow: var(--t-btn-focus-box-shadow);
  outline: none;
}
.t-btn:disabled, .t-btn.t-btn-disabled, .t-btn:disabled:hover, .t-btn.t-btn-disabled:hover, .t-btn:disabled:focus, .t-btn.t-btn-disabled:focus, .t-btn:disabled:active, .t-btn.t-btn-disabled:active, .t-btn:disabled:active:hover, .t-btn.t-btn-disabled:active:hover {
  background-color: var(--t-btn-disabled-background);
  color: var(--t-btn-disabled-color);
  border-color: var(--t-btn-disabled-border-color);
  cursor: not-allowed;
}

.t-btn.t-btn-lg {
  --t-btn-padding-y: 11px;
  --t-btn-padding-x: 39px;
  --t-btn-icon-size: 24px;
  --t-btn-line-height: 24px;
  --t-btn-font-weight: 700;
}

/**
    How to add a new icon?
    * Add the SVG source file to '~/Assets/Icons/svg'
    * In case you want to add a color variation to this icon, check the Gulp task called 'icons'
    * Add a variable here with SVG file name in the following template: $svg-icons-{file-name}_{color}: '{file-name}_{color}.svg'
    * Add a new 'scss' file, name it using the following template: '_svg-icons-{file-name}_{color}.scss'. Use other files as example for the content
*/
/*
  HEX to filter conversion:
  https://isotropic.co/tool/hex-color-to-css-filter/
*/
.t-btn.t-btn-primary {
  --t-btn-background: #746dff;
  --t-btn-color: #ffffff;
  --t-btn-border-color: #746dff;
  --t-btn-hover-background: #9590ff;
  --t-btn-hover-color: #ffffff;
  --t-btn-hover-border-color: #9590ff;
  --t-btn-active-background: #5336d6;
  --t-btn-active-color: #ffffff;
  --t-btn-active-border-color: #5336d6;
  --t-btn-disabled-color: #a2a2af;
  --t-btn-disabled-background: #e8e8ec;
  --t-btn-disabled-border-color: #e8e8ec;
  --t-btn-focus-background: #746dff;
  --t-btn-focus-color: #ffffff;
  --t-btn-focus-border-color: #746dff;
}
.t-btn.t-btn-primary i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:active i, .t-btn.t-btn-primary:active:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:focus i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:disabled i, .t-btn.t-btn-primary.t-btn-disabled i, .t-btn.t-btn-primary:disabled:hover i, .t-btn.t-btn-primary.t-btn-disabled:hover i, .t-btn.t-btn-primary:disabled:focus i, .t-btn.t-btn-primary.t-btn-disabled:focus i, .t-btn.t-btn-primary:disabled:active i, .t-btn.t-btn-primary.t-btn-disabled:active i, .t-btn.t-btn-primary:disabled:active:hover i, .t-btn.t-btn-primary.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.svg-icons {
  vertical-align: middle;
  display: inline-block;
  background-size: 1em;
  width: 1em;
  height: 1em;
}

.svg-icons.lazyload {
  background-image: none;
}

.svg-icons_baseline {
  vertical-align: baseline;
}

.svg-icons--color-white {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(107%) contrast(101%);
}

.svg-icons--color-border {
  filter: invert(89%) sepia(4%) saturate(231%) hue-rotate(164deg) brightness(103%) contrast(93%);
}

.svg-icons--color-muted {
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.svg-icons--color-gray-60 {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.svg-icons--color-gray-70 {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.svg-icons--color-yellow-60 {
  filter: invert(88%) sepia(100%) saturate(1110%) hue-rotate(314deg) brightness(103%) contrast(101%);
}

.svg-icons--color-yellow-40 {
  filter: invert(89%) sepia(15%) saturate(1180%) hue-rotate(332deg) brightness(104%) contrast(102%);
}

.svg-icons-chevron-left {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--chevron-left);
}

.svg-icons-chevron-right {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--chevron-right);
}

.home-hero-section-container {
  --button-padding: 7px;
  --button-size: 48px;
  --edge-offset: 12px;
}

.home-hero-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.home-hero-section__title {
  text-align: center;
  font-size: 32px;
  line-height: 1.25;
  font-weight: bold;
}

.home-hero-section__underline {
  display: inline-block;
  position: relative;
  background-image: url('data:image/svg+xml,<svg width="429" height="29" viewBox="0 0 429 29" fill="none" xmlns="http://www.w3.org/2000/svg"><g style="mix-blend-mode:multiply"><path d="M9 29V9H8.52333C8.0125 9 7.5025 9.09083 7.06333 9.35167C5.605 10.2183 2.33333 12.8475 2.33333 19C2.33333 20.8242 1.55417 23.2225 0.749166 25.2133C0.0408335 26.9642 1.285 29 3.17417 29H9ZM34.043 16.8015L34.6311 26.7842L34.043 16.8015ZM154.249 12.5144L154.616 22.5076L154.249 12.5144ZM420 0.0959768V20.096H420.477C420.988 20.096 421.498 20.0051 421.937 19.7443C423.395 18.8776 426.667 16.2485 426.667 10.096C426.667 8.27181 427.446 5.87348 428.251 3.88264C428.959 2.13181 427.715 0.0959768 425.826 0.0959768H420ZM9 29C13.8676 29 18.5063 28.5125 22.6996 28.0191C27.0469 27.5077 30.7769 27.0112 34.6311 26.7842L33.4549 6.81878C28.8494 7.0901 24.3008 7.69286 20.3629 8.15611C16.2712 8.63747 12.6182 9 9 9V29ZM34.6311 26.7842C74.1365 24.4568 114.367 23.9833 154.616 22.5076L153.883 2.52107C114.359 3.97015 73.1976 4.47748 33.4549 6.81878L34.6311 26.7842ZM154.616 22.5076C243.103 19.2634 330.92 20.096 420 20.096V0.0959768C331.185 0.0959768 242.844 -0.740581 153.883 2.52107L154.616 22.5076Z" fill="%23FFCC56"/></g></svg>');
  background-repeat: no-repeat;
  background-position: center bottom;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto -6px;
  padding: 0 12px 6px;
  background-size: 100% auto;
}

.home-hero-section-title__blue {
  color: #746dff;
}

.home-hero-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.home-hero-section-carousel {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.home-hero-section-carousel__cards {
  display: flex;
  gap: 24px;
  padding: 24px;
  align-items: center;
  overflow: hidden;
  width: 100%;
  scroll-snap-type: x mandatory;
  padding-left: calc(var(--edge-offset) + var(--button-size) + var(--edge-offset));
  padding-right: calc(var(--edge-offset) + var(--button-size) + var(--edge-offset));
}

.home-hero-section-carousel__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--button-padding);
  font-size: 32px;
  border: 1px solid #d7d7de;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  transition: all 0.15s ease-in-out;
  z-index: 1;
}

.home-hero-section-carousel__btn:hover {
  background-color: #f5f5f5;
  box-shadow: none;
}

.home-hero-section-carousel__card {
  border-radius: 24px;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  width: 204px;
  transition: all 0.15s ease-in-out;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: center;
  aspect-ratio: 260/291;
  height: auto;
}

.home-hero-section-carousel__card:hover {
  box-shadow: 0px 8px 16px -2px rgba(27, 33, 44, 0.12);
  transform: scale(1.02);
}

.home-hero-section-carousel__card-image {
  width: 100%;
  pointer-events: none;
}

.home-hero-section-carousel__btn i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}

.home-hero-section-carousel__btn--prev {
  left: var(--edge-offset);
  padding-left: calc(var(--button-padding) - 2px);
  padding-right: calc(var(--button-padding) + 2px);
}

.home-hero-section-carousel__btn--next {
  right: var(--edge-offset);
  padding-left: calc(var(--button-padding) + 2px);
  padding-right: calc(var(--button-padding) - 2px);
}

.home-hero-section-carousel__btn--disabled {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 576px) {
  .home-hero-section__title {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .home-hero-section__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2.4px;
  }
}
@media (min-width: 1024px) {
  .home-hero-section-container {
    --button-padding: 11px;
    --button-size: 64px;
  }
  .home-hero-section-carousel__card {
    width: 280px;
  }
  .home-hero-section-carousel__btn {
    font-size: 40px;
  }
}
@media (min-width: 1680px) {
  .home-hero-section-carousel__card {
    width: 260px;
  }
  .home-hero-section-carousel__btn {
    display: none;
  }
  .home-hero-section-carousel__cards {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (hover: none) and (pointer: coarse) {
  .home-hero-section-carousel__btn {
    display: none;
  }
  .home-hero-section-carousel__cards {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-left: 24px;
    padding-right: 24px;
  }
  .home-hero-section-carousel__card:hover {
    transform: none;
    box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  }
}
.t-btn.t-btn-warning {
  --t-btn-background: #ffb200;
  --t-btn-color: #000000;
  --t-btn-border-color: #ffb200;
  --t-btn-hover-background: #ffcc56;
  --t-btn-hover-color: #000000;
  --t-btn-hover-border-color: #ffcc56;
  --t-btn-active-background: #ba7c26;
  --t-btn-active-color: #000000;
  --t-btn-active-border-color: #ba7c26;
  --t-btn-disabled-color: #a2a2af;
  --t-btn-disabled-background: #e8e8ec;
  --t-btn-disabled-border-color: #e8e8ec;
  --t-btn-focus-background: #ffb200;
  --t-btn-focus-color: #000000;
  --t-btn-focus-border-color: #ffb200;
}
.t-btn.t-btn-warning:disabled i, .t-btn.t-btn-warning.t-btn-disabled i, .t-btn.t-btn-warning:disabled:hover i, .t-btn.t-btn-warning.t-btn-disabled:hover i, .t-btn.t-btn-warning:disabled:focus i, .t-btn.t-btn-warning.t-btn-disabled:focus i, .t-btn.t-btn-warning:disabled:active i, .t-btn.t-btn-warning.t-btn-disabled:active i, .t-btn.t-btn-warning:disabled:active:hover i, .t-btn.t-btn-warning.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.home-signup-link {
  min-width: 160px;
}

.how-it-works-card {
  display: flex;
  flex-direction: column;
}

.how-it-works-card__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.how-it-works-card__highlighted-title {
  color: #746dff;
}

.how-it-works-card__description {
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  color: #797986;
  margin-bottom: 40px;
}

.how-it-works-card__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: -7.343px 14.686px 36.716px 0px rgba(35, 33, 126, 0.1);
}

.how-it-works-card__link {
  align-self: center;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .how-it-works-card {
    display: grid;
    grid-template-columns: 1fr 310px;
    grid-template-areas: "title image" "description image" "link image";
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
  .how-it-works-card__title {
    grid-area: title;
    font-size: 24px;
    text-align: left;
  }
  .how-it-works-card__description {
    grid-area: description;
    font-weight: normal;
    text-align: left;
    margin-bottom: 0;
  }
  .how-it-works-card__image {
    grid-area: image;
  }
  .how-it-works-card__link {
    grid-area: link;
    margin-top: 32px;
    justify-self: flex-start;
  }
}
@media (min-width: 1280px) {
  .how-it-works-card {
    grid-template-columns: 1fr 542px;
    grid-template-rows: 1fr auto 1fr;
    -moz-column-gap: 120px;
    column-gap: 120px;
  }
  .how-it-works-card__title {
    margin-bottom: 24px;
    align-self: flex-end;
  }
  .how-it-works-card__link {
    align-self: flex-start;
  }
}
.how-it-works-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 767.98px) {
  .how-it-works-section :not(.how-it-works-section__last-card) .how-it-works-card__link {
    display: none;
  }
}
@media (min-width: 576px) {
  .how-it-works-section {
    gap: 80px;
  }
}
@media (min-width: 768px) {
  .how-it-works-section .how-it-works-card:nth-of-type(2n) {
    grid-template-columns: 310px 1fr;
    grid-template-areas: "image title" "image description" "image link";
  }
  .how-it-works-section .how-it-works-card:nth-of-type(2n) .how-it-works-card__title,
  .how-it-works-section .how-it-works-card:nth-of-type(2n) .how-it-works-card__description {
    text-align: right;
  }
  .how-it-works-section .how-it-works-card:nth-of-type(2n) .how-it-works-card__link {
    justify-self: flex-end;
  }
}
@media (min-width: 1280px) {
  .how-it-works-section .how-it-works-card:nth-of-type(2n) {
    grid-template-columns: 542px 1fr;
  }
}
.why-join-card {
  --why-join-card-icon-backrgoud: #9590ff;
  background-color: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: -10px 20px 50px 0px rgba(35, 33, 126, 0.1);
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas: "icon title" "desc desc";
  gap: 16px;
}

.why-join-card--yellow {
  --why-join-card-icon-backrgoud: #ffb200;
}

.why-join-card--violet {
  --why-join-card-icon-backrgoud: #9590ff;
}

.why-join-card--red {
  --why-join-card-icon-backrgoud: #ff4b6c;
}

.why-join-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 32px;
  background: var(--why-join-card-icon-backrgoud);
  border-radius: 4px;
}

.why-join-card__title {
  font-weight: bold;
  font-size: 24px;
  align-self: center;
}

.why-join-card__description {
  grid-area: desc;
  line-height: 1.4;
  color: #797986;
}

@media (min-width: 1024px) {
  .why-join-card {
    padding: 24px;
    grid-template-columns: 1fr;
    grid-template-areas: "icon" "title" "desc";
  }
}
.why-join-section {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  background-color: #f3f3ff;
}

.why-join-section__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 576px) {
  .why-join-section {
    gap: 80px;
  }
}
@media (min-width: 1024px) {
  .why-join-section__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.video-tutorial-section {
  background-color: #fff4da;
}

.video-tutorial-section__content {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.video-tutorial-section__subtitle {
  font-size: 24px;
  line-height: 1.25;
  font-weight: bold;
  position: relative;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto -14px;
  background-image: url('data:image/svg+xml,<svg width="204" height="18" viewBox="0 0 204 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g style="mix-blend-mode:multiply"><path d="M4 17.2539V9.25391H3.80933C3.605 9.25391 3.401 9.29024 3.22533 9.39457C2.642 9.74124 1.33333 10.7929 1.33333 13.2539C1.33333 13.9836 1.02167 14.9429 0.699667 15.7392C0.416333 16.4396 0.914 17.2539 1.66967 17.2539H4ZM15.9427 11.0554L16.4331 15.0252L15.9427 11.0554ZM73.2674 6.76826L73.574 10.7565L73.2674 6.76826ZM200 0.349883V8.34988H200.191C200.395 8.34988 200.599 8.31355 200.775 8.20922C201.358 7.86255 202.667 6.81088 202.667 4.34988C202.667 3.62022 202.978 2.66088 203.3 1.86455C203.584 1.16422 203.086 0.349883 202.33 0.349883H200ZM4 17.2539C6.54544 17.2539 8.92795 16.72 10.934 16.2251C13.0754 15.6969 14.7215 15.2366 16.4331 15.0252L15.4522 7.08556C13.1295 7.37249 10.8277 8.01152 9.01797 8.45795C7.07297 8.93776 5.5013 9.25391 4 9.25391V17.2539ZM16.4331 15.0252C35.2312 12.703 54.2509 12.2421 73.574 10.7565L72.9608 2.78003C54.2415 4.2192 34.4463 4.73914 15.4522 7.08556L16.4331 15.0252ZM73.574 10.7565C115.687 7.51875 157.471 8.34988 200 8.34988V0.349883C157.693 0.349883 115.47 -0.488157 72.9608 2.78003L73.574 10.7565Z" fill="%23CFCCFF"/></g></svg>');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  padding: 0 6px 14px;
}

.video-tutorial-section__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  max-width: 1440px;
  margin: 0 auto;
}

.video-tutorial-section__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 576px) {
  .video-tutorial-section__content {
    gap: 40px;
  }
}
.svg-icons-add-circle {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--add-circle);
}

.svg-icons-minus-circle {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--minus-circle);
}

.faq-card {
  position: relative;
  padding: 24px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
}

.faq-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 2;
}

.faq-card:focus-within {
  box-shadow: 0 0 0 4px #e8e7ff;
}

.faq-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 5px;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
}

.faq-card__title {
  font-size: 20px;
  font-weight: bold;
}

.faq-card__toggle-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.faq-card__body {
  color: #797986;
}

.faq-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f3f3ff;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.home-faq-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.home-faq-section__cta {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .home-faq-section {
    gap: 80px;
  }
}
.cb-fixed-ratio {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cb-fixed-ratio.cb-fixed-ratio_contain .cb-fixed-ratio__element {
  -o-object-fit: contain;
  object-fit: contain;
}
.cb-fixed-ratio .cb-fixed-ratio__element {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cb-fixed-ratio_tool-thumbnail {
  padding-bottom: 100%;
}

.cb-fixed-ratio_tool-preview-icon {
  padding-bottom: 100%;
}

.cb-fixed-ratio_video {
  padding-bottom: 56.25%;
}

.cb-fixed-ratio_logo {
  padding-bottom: 33.3333333333%;
}

.cb-fixed-ratio_pdf-logo {
  padding-bottom: 100%;
}

.cb-fixed-ratio_pdf-logo-editor {
  padding-bottom: 56.25%;
}

.cb-fixed-ratio--school-logo {
  padding-bottom: 100%;
}

.cb-fixed-ratio--project-tool {
  padding-bottom: 75%;
}

.cb-fixed-ratio_lesson-cover {
  padding-bottom: 58.8235294118%;
}

.home-customers-section {
  --logos-gap: 56px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.home-customers-section__carousel {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: var(--logos-gap);
}

.home-customers-section__carousel::before {
  content: "";
  position: absolute;
  background: linear-gradient(-270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  width: 80px;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.home-customers-section__carousel::after {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  width: 80px;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.home-customers-section__carousel-track {
  display: flex;
  gap: var(--logos-gap);
  animation: scroll-left 60s linear infinite;
}

.home-customers-section__carousel:hover .home-customers-section__carousel-track {
  animation-play-state: paused;
}

.home-customers-section__logo {
  width: 140px;
  flex-shrink: 0;
}

.home-customers-section__logo .cb-fixed-ratio {
  padding-bottom: 100%;
}

.home-customers-section__cta {
  align-self: center;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--logos-gap)));
  }
}
@media (min-width: 576px) {
  .home-customers-section {
    gap: 80px;
  }
}
.testimonial-card {
  position: relative;
  padding: 24px;
  background-color: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-card__quote {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -20px;
  left: -20px;
  z-index: 2;
}

.testimonial-card__content {
  line-height: 1.4;
  flex-grow: 1;
}

.testimonial-card-youtube-footer {
  display: grid;
  grid-template-columns: 48px 1fr;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.testimonial-card-youtube-footer__author-image {
  grid-row: 1/3;
  border-radius: 50%;
}

.testimonial-card-youtube-footer__author-name {
  color: #797986;
}

.testimonial-card-youtube-footer__video-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card-youtube-footer__video-link a {
  font-size: 12px;
  color: #797986;
  text-decoration: underline;
}

.testimonial-card-social-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card-social-footer a {
  color: #797986;
  text-decoration: underline;
}

.testimonial-card-text-footer {
  color: #797986;
  line-height: 1.4;
}

.testimonials-section {
  --cards-gap: 24px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #5336d6;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials-section .home-section__title {
  color: #ffcc56;
}
.testimonials-section .home-section__description {
  color: #cfccff;
}

.testimonials-section__carousel {
  padding-top: 12px;
  display: flex;
  gap: var(--cards-gap);
  overflow: hidden;
}

.testimonials-section__carousel-track {
  display: flex;
  gap: var(--cards-gap);
  flex-shrink: 0;
  animation: scroll-right 60s linear infinite;
}

.testimonials-section__carousel:hover .testimonials-section__carousel-track {
  animation-play-state: paused;
}

.testimonials-section__carousel-track .testimonial-card {
  width: 280px;
  flex-shrink: 0;
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-100% - var(--cards-gap)));
  }
  100% {
    transform: translateX(0);
  }
}
.statistics-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.statistics-card-value {
  position: relative;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #746dff;
}

.statistics-card-label {
  text-align: center;
  font-size: 20px;
}

.statistics-section-wrapper {
  background-color: #fff4da;
}

.statistics-section {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.statistics-section__cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.statistics-section__cards .statistics-card {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
}

.statistics-section__like {
  position: absolute;
  top: -18px;
  right: -35px;
}

@media (min-width: 768px) {
  .statistics-section__cards {
    flex-direction: row;
  }
  .statistics-section__cards .statistics-card {
    max-width: 360px;
  }
}
.svg-icons-star {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--star);
}

.svg-icons-star-filled {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--star-filled);
}

.cb-preloader {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUgMTJoM00xMiA1djNNMTkgMTJoLTNNMTIgMTl2LTNNNy4wNSAxNi45NWwyLjEyMS0yLjEyMU03LjA1IDcuMDVsMi4xMjEgMi4xMjFNMTYuOTUgNy4wNWwtMi4xMjEgMi4xMjEiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  animation: cb-preloader-spin 1s steps(8) infinite;
}
@keyframes cb-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

.cb-preloader--medium {
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.cb-preloader--em {
  background-size: 1em;
  width: 1em;
  height: 1em;
}

.cb-preloader--color-white {
  filter: invert(99%) sepia(99%) saturate(0%) hue-rotate(282deg) brightness(109%) contrast(101%);
}

.t-favorite-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  padding: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-favorite-button--lightgray.t-favorite-button--default .t-favorite-button__icon {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}
.t-favorite-button--lightgray .cb-preloader {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.t-favorite-button--gray.t-favorite-button--default .t-favorite-button__icon {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}
.t-favorite-button--gray .cb-preloader {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.t-favorite-button--white.t-favorite-button--default .t-favorite-button__icon {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-favorite-button--white .cb-preloader {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}

.t-favorite-button:hover .t-favorite-button__icon,
.t-favorite-button--hovered .t-favorite-button__icon {
  filter: invert(88%) sepia(100%) saturate(1110%) hue-rotate(314deg) brightness(103%) contrast(101%);
}

.t-favorite-button--favorite .t-favorite-button__icon {
  filter: invert(89%) sepia(15%) saturate(1180%) hue-rotate(332deg) brightness(104%) contrast(102%);
}

.tool-badge {
  --tool-badge-top: 10px;
  position: absolute;
  width: 200px;
  top: var(--tool-badge-top);
  left: calc(-90px + var(--tool-badge-top));
  font-size: 14px;
  line-height: 27px;
  color: #ffffff;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  transform: rotate(-45deg);
  z-index: 1;
  text-align: center;
  white-space: nowrap;
}

.tool-badge--blue {
  background-color: #746dff;
}

.tool-badge--red {
  background-color: #ff4b6c;
}

.tool-badge--green {
  background-color: #0abc54;
}

.tool-preview-theme--gray {
  --tool-preview-bg: #f5f5f5;
  --tool-preview-category-bg: #eeeef1;
  --tool-preview-category-color: #222229;
  --tool-preview-border: #d7d7de;
}

.tool-preview-theme--cerulean {
  --tool-preview-bg: #ebfeff;
  --tool-preview-category-bg: #d8fcff;
  --tool-preview-category-color: #00bfc9;
  --tool-preview-border: #c5fafd;
}

.tool-preview-theme--phlox {
  --tool-preview-bg: #fcf0ff;
  --tool-preview-category-bg: #f9e1ff;
  --tool-preview-category-color: #e260ff;
  --tool-preview-border: #e260ff;
}

.tool-preview-theme--blue {
  --tool-preview-bg: #f3f3ff;
  --tool-preview-category-bg: #e8e7ff;
  --tool-preview-category-color: #746dff;
  --tool-preview-border: #cfccff;
}

.tool-preview-theme--yellow {
  --tool-preview-bg: #fffaed;
  --tool-preview-category-bg: #fff4da;
  --tool-preview-category-color: #ba7c26;
  --tool-preview-border: #ffe09a;
}

.tool-preview-theme--green {
  --tool-preview-bg: #e1ffee;
  --tool-preview-category-bg: #c5ffdd;
  --tool-preview-category-color: #0abc54;
  --tool-preview-border: #acffcf;
}

.tool-preview-theme--red {
  --tool-preview-bg: #fff0f3;
  --tool-preview-category-bg: #ffe4e9;
  --tool-preview-category-color: #ff4b6c;
  --tool-preview-border: #ffd3db;
}

.tool-preview-category__thumbnail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tool-preview-bg);
}

.tool-preview-category__thumbnail {
  width: 48px;
  height: 72px;
}

.tool-preview-category {
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  width: 72px;
}

.tool-preview-category__name {
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  border-radius: 0;
  background-color: var(--tool-preview-category-bg);
  color: var(--tool-preview-category-color);
}
.tool-preview-category__name:last-of-type:first-of-type, .tool-preview-category__name:last-of-type:not(:first-of-type) {
  border-radius: 0 0 4px 4px;
}

.tool-preview {
  position: relative;
  display: flex;
  gap: 16px;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  align-items: flex-start;
  border: 1px solid transparent;
  will-change: border-color, background-color;
  transition: border-color 250ms ease-out, background-color 250ms ease-out;
  cursor: pointer;
  overflow: hidden;
}

.tool-preview:hover {
  border-color: #746dff;
}

.tool-preview__name {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 20px;
}

.tool-preview__name-value {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #222229;
}

a.tool-preview__name-value::after {
  content: "";
  position: absolute;
  inset: 0;
}

.tool-preview__description {
  font-size: 12px;
  color: #797986;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 15px;
}

.tool-preview__preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.tool-preview__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.tools-section-wrapper {
  background: #f3f3ff;
}

.tools-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.tools-section__tools {
  display: grid;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.tools-section__cta {
  display: flex;
  justify-content: center;
}

.tools-section__tools .tool-preview:hover {
  cursor: default;
  border-color: transparent;
}

@media (min-width: 768px) {
  .tools-section__tools {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .tools-section__tools {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .tools-section__tools .tool-preview:last-child {
    grid-column: auto;
  }
}
.tw-badge-tile {
  --tw-badge-tile-bg-color: #f5f5f5;
  --tw-badge-tile-color: #000000;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  gap: 12px;
  background-color: var(--tw-badge-tile-bg-color);
  color: var(--tw-badge-tile-color);
}

.tw-badge-tile__icon {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tw-badge-tile--yellow {
  --tw-badge-tile-bg-color: #fff4da;
  --tw-badge-tile-color: #ba7c26;
}
.tw-badge-tile--yellow .tw-badge-tile__icon:not(.tw-badge-tile__icon--original-color) {
  filter: invert(54%) sepia(30%) saturate(6834%) hue-rotate(23deg) brightness(97%) contrast(101%);
}

.tw-badge-tile--green {
  --tw-badge-tile-bg-color: #e1ffee;
  --tw-badge-tile-color: #0abc54;
}
.tw-badge-tile--green .tw-badge-tile__icon:not(.tw-badge-tile__icon--original-color) {
  filter: invert(52%) sepia(27%) saturate(5829%) hue-rotate(113deg) brightness(100%) contrast(92%);
}

.tw-badge-tile--red {
  --tw-badge-tile-bg-color: #fff0f3;
  --tw-badge-tile-color: #ff4b6c;
}
.tw-badge-tile--red .tw-badge-tile__icon:not(.tw-badge-tile__icon--original-color) {
  filter: invert(61%) sepia(53%) saturate(7343%) hue-rotate(324deg) brightness(107%) contrast(107%);
}

.tw-badge-tile--phlox {
  --tw-badge-tile-bg-color: #fcf0ff;
  --tw-badge-tile-color: #e260ff;
}
.tw-badge-tile--phlox .tw-badge-tile__icon:not(.tw-badge-tile__icon--original-color) {
  filter: invert(48%) sepia(80%) saturate(1824%) hue-rotate(246deg) brightness(98%) contrast(107%);
}

.svg-icons-european-union {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--european-union);
}

.svg-icons-edit {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--edit);
}

.svg-icons-cursor {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--cursor);
}

.svg-icons-ai {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--ai);
}

.library-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.library-section .tw-badge-tile__text {
  font-size: 12px;
  line-height: 1;
}
.library-section .tw-badge-tile__icon {
  font-size: 16px;
}

.library-section__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.library-section__cta {
  display: flex;
  justify-content: center;
}

.library-section__image-container {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}

.library-section__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: -10px 20px 50px 0px rgba(35, 33, 126, 0.1);
}

.library-section__image--md {
  display: none;
}

@media (min-width: 576px) {
  .library-section__features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .library-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .library-section__image--md {
    display: block;
  }
  .library-section__image--xs {
    display: none;
  }
}
@media (min-width: 1024px) {
  .library-section__features {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.worksheets-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #dee2e6;
}
.worksheets-section .tw-badge-tile__text {
  font-size: 12px;
  line-height: 1;
}
.worksheets-section .tw-badge-tile__icon {
  font-size: 16px;
}

.worksheets-section__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.worksheets-section__cta {
  display: flex;
  justify-content: center;
}

.worksheets-section__image-container {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}

.worksheets-section__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: -10px 20px 50px 0px rgba(35, 33, 126, 0.1);
}

.worksheets-section__image--md {
  display: none;
}

@media (min-width: 576px) {
  .worksheets-section__features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .worksheets-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .worksheets-section__image--md {
    display: block;
  }
  .worksheets-section__image--xs {
    display: none;
  }
  .worksheets-section__features {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
html {
  scroll-padding-top: 56px;
}