.banner {
  width: 100%;
}
.banner-top {
  width: 100%;
  padding: 3.659rem 0 1.28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-title h1 {
  font-weight: bold;
  font-size: 1.829rem;
  text-align: center;
  margin-bottom: 0.762rem;
}
.banner-title h2 {
  font-size: 1.098rem;
  color: #84828e;
  text-align: center;
  margin-bottom: 1.28rem;
}
.banner-downloads {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-downloads .download-btn {
  font-size: 0.732rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #a229f5 0%, #5695ec 100%);
  border-radius: 1.524rem;
  padding: 0.732rem 2.744rem;
  cursor: pointer;
  margin-bottom: 1.28rem;
  display: flex;
  align-items: center;
  column-gap: 0.305rem;
}
.banner-downloads .download-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.098rem;
}
.download-group .download-item {
  width: 5.488rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-group .download-item:hover {
  width: 5.488rem;
}
.download-group .download-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.download-group img {
  width: 2.134rem;
  height: 2.134rem;
}
.download-group .download-img span {
  font-size: 0.732rem;
  color: #181818;
}
.download-group .download-qrcode span {
  font-size: 10px;
  color: #181818;
}
.banner .banner-image {
  width: 100%;
}
.statistic {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 80px;
  row-gap: 30px;
  margin-top: 100px;
}
.statistic .statistic-image {
  height: 66px;
}
.toolboxes-title {
  font-size: 1.28rem;
  font-weight: bold;
  margin-top: 130px;
  margin-bottom: 84px;
  text-align: center;
}
/* Toolbox grid */
.toolbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.976rem;
  padding-bottom: 36px;
}
.toolbox-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: #f7f6ff;
  border-radius: 0.976rem;
  padding: 1.098rem 1.463rem;
  color: #181818;
}
.toolbox-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.toolbox-card-title {
  font-size: 0.976rem;
  font-weight: bold;
}
.toolbox-card-desc {
  display: none;
  font-size: 16px;
  color: rgba(24, 24, 24, 0.7);
  margin: 0.366rem 0 0.488rem;
}
.toolbox-card-link {
  font-size: 0.732rem;
  color: #7a62f0;
  font-weight: 600;
}
.toolbox-card-link-icon {
  width: 1em;
  height: 1em;
  margin-left: 6px;
}
.toolbox-card-icon {
  width: 3.171rem;
  height: 3.171rem;
}
/* Use Cases */
.use-cases {
  margin-top: 100px;
}
.use-cases-head {
  text-align: center;
  margin-bottom: 24px;
}
.use-cases-title {
  font-size: 1.28rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.use-cases-highlight {
  color: #7a62f0;
}
.use-cases-sub {
  color: rgba(24, 24, 24, 0.7);
}
.use-cases-carousel {
  position: relative;
  padding: 0 3.415rem;
}
.use-cases-viewport {
  overflow: hidden;
  --gap: 0.976rem;
  --per: 3; /* cards per view, adjusted in media queries */
}
.use-cases-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.3s ease;
  will-change: transform;
}
.use-card {
  background: #fbfafe;
  border: 1px solid #e9e7f5;
  border-radius: 0.976rem;
  overflow: hidden;
  color: #181818;
  flex: 0 0 calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
}
.use-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, #f7f6ff 0%, #ffffff 100%);
}
.use-card-img {
  aspect-ratio: 400/353;
}
.use-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.use-card-body {
  padding: 0.976rem 1.098rem 1.098rem;
}
.use-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.366rem;
}
.use-card-desc {
  font-size: 18px;
  color: rgba(24, 24, 24, 0.7);
}
.use-cases-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.134rem;
  height: 2.134rem;
  line-height: 2.134rem;
  text-align: center;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #7a62f0;
  font-size: 1.098rem;
  cursor: pointer;
}
.use-cases-nav-prev {
  left: 0.976rem;
}
.use-cases-nav-next {
  right: 0.976rem;
}
/* Reviews Section */
.reviews {
  margin-top: 84px;
  margin-bottom: 40px;
}
.reviews-title {
  text-align: center;
  font-size: 1.28rem;
  font-weight: bold;
  margin-bottom: 1.951rem;
}
.reviews-carousel {
  position: relative;
  border-radius: 1.098rem;
  padding: 0 3.415rem;
}
.video-track {
  display: flex;
  overflow: hidden;
}
.video-slide {
  min-width: 100%;
  display: none;
}
.video-slide.active {
  display: block;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.732rem;
}
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.134rem;
  height: 2.134rem;
  line-height: 2.134rem;
  text-align: center;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #7a62f0;
  font-size: 1.098rem;
  cursor: pointer;
}
.video-nav-prev {
  left: 0.976rem;
}
.video-nav-next {
  right: 0.976rem;
}
.reviews-quote {
  text-align: center;
  color: rgba(24, 24, 24, 0.7);
  font-size: 32px;
  max-width: 90%;
  margin: 40px auto 0;
  font-weight: 500;
}
/* Community Section */
.community {
  margin-top: 150px;
  margin-bottom: 40px;
}
.community-title,
.community-title-mobile {
  text-align: center;
  font-size: 1.28rem;
  font-weight: bold;
  margin-bottom: 1.463rem;
}
.community-title-mobile {
  display: none;
}
.community-grid {
  column-count: 1;
  column-gap: 1.463rem;
}
.community-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.463rem;
  background: linear-gradient(180deg, #f7f6ff 0%, #ffffff 100%);
  border-radius: 0.976rem;
  border: 1px solid #d4d2e3;
  padding: 1.098rem 20px;
  break-inside: avoid;
}
.community-card-header {
  display: flex;
  align-items: center;
  column-gap: 25px;
  margin-bottom: 0.732rem;
}
.community-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-name {
  font-weight: bold;
  font-size: 20px;
  color: #5d5a88;
  line-height: normal;
}
.community-text {
  color: rgba(24, 24, 24, 0.7);
  font-size: 18px;
}
.community-text .highlight {
  color: #7a62f0;
  font-weight: 700;
}
.faq-container {
  background-color: #fff;
  padding-top: 2.927rem;
}
.faq-title {
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 1.463rem;
  margin-bottom: 1.951rem;
}
.faq-item {
  padding: 0.305rem 0;
}
.faq-item a:hover {
  color: #9747ff !important;
}
.faq-question {
  font-size: 0.732rem;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fbfafe;
  padding: 0.732rem 1.524rem;
  border-radius: 0.976rem;
}
.faq-icon {
  width: 1.098rem;
  height: 1.098rem;
  transition: transform 0.3s ease;
  user-select: none;
}
.faq-answer {
  font-size: 0.732rem;
  overflow: hidden;
  height: 0;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  color: #181818;
  background-color: #fbfafe;
  padding: 0 1.524rem;
  transition: all 0.3s ease;
  border-radius: 0.976rem;
}
.faq-item.active .faq-question {
  font-weight: bold;
}
.faq-item.active .faq-answer {
  padding: 0.732rem 1.524rem;
  margin-top: 0.732rem;
  height: auto;
  transform: scaleY(1);
  opacity: 1;
}
.faq-item .faq-answer ul {
  padding: 0 !important;
  margin: 0 !important;
}
.faq-item .faq-answer li {
  list-style: decimal inside !important;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
/* CTA Section */
.cta-section {
  margin-top: 100px;
  margin-bottom: 60px;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  margin-bottom: 20px;
}
.cta-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.cta-title {
  font-weight: bold;
  font-size: 1.28rem;
  text-align: left;
}
.cta-subtitle {
  color: #000;
  text-align: left;
}
.cta-desc {
  color: #666572;
  font-weight: 500;
  font-size: 1.098rem;
  margin: 16px 0 80px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(90deg, #8a2ff7 0%, #5a93ff 100%);
  border-radius: 999px;
  padding: 24px 80px;
  font-size: 24px;
}
.cta-button:hover {
  color: #ffffff !important;
}
.cta-button-icon {
  width: 1em;
  height: 1em;
}
@media screen and (min-width: 1320px) {
  .toolbox-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.463rem;
  }
  .toolbox-card {
    padding: 1.463rem 1.951rem;
    column-gap: 20px;
  }
  .toolbox-card--primary {
    grid-column: auto;
    grid-row: span 2;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .toolbox-card--primary .toolbox-card-desc {
    margin-bottom: 60px;
  }
  .toolbox-card-desc {
    display: block;
  }
  .toolbox-card-icon {
    width: 4.512rem;
    height: 4.512rem;
  }
  .toolbox-card--primary .toolbox-card-icon {
    width: 222px;
    height: 220px;
    margin-bottom: 0.976rem;
  }
  .reviews {
    margin-top: 100px;
  }
  .use-cases {
    margin-top: 120px;
  }
  .reviews-carousel {
    padding: 0 3.902rem;
  }
  .reviews-quote {
    font-size: 32px;
  }
  .community-grid {
    column-count: 4;
  }
  .cta-logo {
    width: 120px;
    height: 120px;
  }
  .cta-title {
    font-size: 42px;
  }
  .cta-subtitle {
    font-size: 32px;
  }
  .cta-desc {
    font-size: 36px;
  }
  .cta-button {
    padding: 24px 80px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1319.9px) {
  .statistic {
    column-gap: 60px;
  }
  .community {
    margin-top: 60px;
  }
  .use-cases-viewport {
    --per: 3;
  }
  .community-grid {
    column-count: 3;
  }
  .cta-logo {
    width: 120px;
    height: 120px;
  }
  .cta-title {
    font-size: 42px;
  }
  .cta-subtitle {
    font-size: 28px;
  }
  .cta-desc {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .statistic {
    column-gap: 50px;
  }
  .community {
    margin-top: 60px;
  }
  .use-cases-viewport {
    --per: 2;
  }
  .community-grid {
    column-count: 2;
  }
  .community-text {
    font-size: 14px;
  }
  .community-name {
    font-size: 16px;
  }
  .cta-logo {
    width: 80px;
    height: 80px;
  }
  .cta-title {
    font-size: 36px;
  }
  .cta-subtitle {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1319.9px) {
  .toolboxes-title {
    margin-bottom: 60px;
  }
  .toolbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .toolbox-card {
    flex-direction: column;
  }
  .toolbox-card-content {
    width: 100%;
  }
  .toolbox-card--primary {
    flex-direction: row;
    grid-column: 1 / -1;
  }
  .toolbox-card--primary .toolbox-card-desc {
    display: block;
  }
  .toolbox-card-icon {
    width: 3.659rem;
    height: 3.659rem;
  }
  .toolbox-card--primary .toolbox-card-icon {
    width: 142px;
    height: 75px;
  }
  .reviews-quote {
    font-size: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .statistic {
    flex-direction: column;
    margin-top: 40px;
  }
  .toolbox-card {
    flex-direction: row-reverse;
    padding: 0.976rem 1.098rem;
    justify-content: flex-end;
    column-gap: 20px;
  }
  .toolboxes-title {
    margin-top: 84px;
    margin-bottom: 40px;
  }
  .toolbox-card-link-icon {
    margin-left: 4px;
  }
  .toolbox-grid {
    row-gap: 10px;
  }
  .toolbox-card-title {
    margin-bottom: 0.366rem;
  }
  .toolbox-card-link {
    display: inline-flex;
    align-items: center;
  }
  .toolbox-card-icon {
    width: 2.744rem;
    height: 2.744rem;
  }
  .toolbox-card--primary {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.463rem 1.098rem;
  }
  .toolbox-card--primary .toolbox-card-icon {
    width: 6.1rem;
    height: 6.1rem;
    margin-top: 0.488rem;
    margin-bottom: 0.488rem;
  }
  .reviews {
    display: none;
  }
  .community {
    margin-top: 60px;
  }
  .use-cases {
    margin-top: 60px;
  }
  .use-cases-carousel {
    padding: 0 2.2rem;
  }
  .use-cases-viewport {
    --per: 1;
  }
  .community-text {
    font-size: 14px;
  }
  .community-name {
    font-size: 16px;
  }
  .cta-section {
    margin-top: 60px;
  }
  .cta-title {
    font-size: 28px;
  }
  .cta-subtitle {
    font-size: 20px;
  }
  .cta-desc {
    font-size: 20px;
  }
  .cta-button {
    padding: 24px 60px;
    min-width: 320px;
    font-size: 18px;
  }
  .use-card-title {
    font-size: 16px;
  }
  .use-card-desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 480px) and (max-width: 767.9px) {
  .community-grid {
    column-count: 1;
  }
}
@media screen and (max-width: 479.9px) {
  .community-title {
    display: none;
  }
  .community-title-mobile {
    display: block;
    text-align: center;
  }
}