/* Generated by scripts/build-css.sh — do not edit */
/* === base.css === */
/* ============================================================
   基础重置 / 全局
   断点：mobile <768 / tablet 768-1023 / below-desktop <1024
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    "Microsoft YaHei", "微软雅黑", sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html[lang="zh-cn"] body,
html[lang="zh-cn"] body * {
  font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", "微软雅黑", sans-serif;
}

html[lang="en"] body,
html[lang="en"] body * {
  font-family: "Times New Roman", Times, serif;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-swiper__pagination {
  display: none;
}

@media (max-width: 1080px) {
  .mobile-swiper {
    width: 100%;
    overflow: hidden;
  }

  .mobile-swiper__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .mobile-swiper__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background-color: #d8e2e2;
    opacity: 1;
    transition: width 0.2s ease, background-color 0.2s ease;
  }

  .mobile-swiper__pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: #1c9a99;
  }
}

@media (min-width: 1081px) {
  .mobile-swiper__pagination {
    display: none !important;
  }
}

/* 锚点跳转时为固定页头预留偏移 */
.hero,
.about,
.highlights,
.case,
.invite {
  scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* === header.css === */
/* ============================================================
   Header
   ============================================================ */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.app-header.is-hidden {
  transform: translateY(-100%);
}
.app-header.is-scrolled,
.app-header.is-menu-open {
  background-color: rgba(16, 17, 20, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.app-header__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (min-width: 1680px) {
  .app-header__inner {
    padding-inline: 0;
  }
}
@media (max-width: 1199px) {
  .app-header__inner {
    padding-block: 22px;
  }
}
@media (max-width: 767px) {
  .app-header__inner {
    padding-inline: 20px;
  }
}
.app-header.is-scrolled .app-header__inner {
  padding-block: 18px;
}

.app-header .logo {
  margin: 0;
  font: inherit;
  line-height: 1;
  flex-shrink: 0;
}
.app-header .logo__link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.app-header .logo__mark {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .app-header .logo__mark {
    height: 40px;
  }
}
.app-header .logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .app-header .logo__text {
    display: none;
  }
}
.app-header .logo__title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: "Times New Roman", Times, serif;

}
.app-header .logo__sub {
  font-size: 13px;
  color: #dddddd;
  letter-spacing: 0.5px;
  font-family: "Times New Roman", Times, serif;
}

.app-header .nav {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
}
.app-header .nav__link {
  font-size: 18px;
  color: #dddddd;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.app-header .nav__link:hover {
  color: #fff;
}
.app-header .nav__link.is-active {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.app-header .nav__divider {
  width: 1px;
  height: 14px;
  background-color: #404040;
}

.app-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-toggle{
  cursor: pointer;
}


/* ---------- 汉堡菜单按钮（仅非桌面端显示） ---------- */
.app-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #404040;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
}
.app-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background-color: #dddddd;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.app-header.is-menu-open .app-header__menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.app-header.is-menu-open .app-header__menu-toggle span:nth-child(2) {
  opacity: 0;
}
.app-header.is-menu-open .app-header__menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 非桌面端：导航收起为下拉面板 ---------- */
@media (max-width: 1199px) {
  .app-header__menu-toggle {
    display: inline-flex;
  }
  .app-header .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 8px 40px 20px;
    background-color: rgba(16, 17, 20, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .app-header.is-menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .app-header .nav__link {
    padding-block: 15px;
    font-size: 18px;
  }
  .app-header .nav__link.is-active {
    font-size: 18px;
    color: #3ccbc4;
  }
  .app-header .nav__divider {
    width: 100%;
    height: 1px;
  }
}
@media (max-width: 767px) {
  .app-header .nav {
    padding-inline: 20px;
  }
}


/* === hero.css === */
/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 940px;
  overflow: hidden;
  background-color: #101114;
}
@media (max-width: 1023px) {
  .hero {
    min-height: 0;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/backgound-1.png");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__bg-slide {
  display: none;
}
@media (max-width: 767px) {
  .hero__bg {
    background-image: none;
  }
  .hero__bg-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease;
  }
  .hero__bg-slide.is-active {
    opacity: 1;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 17, 20, 0.92) 0%, rgba(16, 17, 20, 0.7) 38%, rgba(16, 17, 20, 0.3) 70%, rgba(16, 17, 20, 0.45) 100%),
    linear-gradient(180deg, rgba(16, 17, 20, 0.6) 0%, rgba(16, 17, 20, 0) 22%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1680px) {
  .hero__inner {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .hero__inner {
    padding-inline: 20px;
  }
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-sizing: border-box;
  width: 300px;
}
.hero .btn__arrow {
  width: 18px;
  height: 18px;
}
.hero .btn--primary {
  height: 68px;
  padding-inline: 36px;
  border-radius: 10px;
  background-color: #3ccbc4;
  color: #101114;
  font-size: 20px;
  font-weight: 600;
}
.hero .btn--primary .btn__arrow {
  width: 22px;
  height: 22px;
}
.hero .btn--primary:hover {
  box-shadow: 0 12px 28px rgba(60, 203, 196, 0.35);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .hero .btn--primary {
    width: 100%;
  }
}

.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 180px;
  padding-bottom: 80px;
}
@media (max-width: 1023px) {
  .hero__body {
    padding-top: 116px;
    padding-bottom: 56px;
  }
}

.hero .intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 640px;
}
.hero .intro__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #dddddd;
}
.hero .intro__badge-line {
  width: 30px;
  height: 2px;
  background-color: #3ccbc4;
}
.hero .intro__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero .intro__h1 {
  display: flex;
  flex-direction: column;
  font-size: 76px;
  line-height: 1.32;
  font-weight: 600;
  color: #fff;
}
.hero .intro__h1 .is-accent {
  color: #3ccbc4;
}
@media (max-width: 1280px) {
  .hero .intro__h1 {
    font-size: 60px;
  }
}
@media (max-width: 1023px) {
  .hero .intro__h1 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .hero .intro__h1 {
    font-size: 40px;
  }
}
.hero .intro__slogan {
  font-size: 28px;
  font-weight: 600;
  color: #3ccbc4;
}
@media (max-width: 767px) {
  .hero .intro__slogan {
    font-size: 22px;
  }
}
.hero .intro__rule {
  width: 50px;
  height: 2px;
  background-color: #3ccbc4;
}
.hero .intro__desc {
  font-size: 20px;
  line-height: 1.9;
  color: #dddddd;
}
@media (max-width: 767px) {
  .hero .intro__desc {
    font-size: 16px;
  }
}

.hero .meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .hero .meta {
    margin-top: 48px;
    gap: 20px;
  }
}
.hero .meta__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero .meta__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}
.hero .meta__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero .meta__primary,
.hero .meta__secondary {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.25;
}
.hero .meta__divider {
  width: 1px;
  height: 40px;
  background-color: #404040;
}
@media (max-width: 767px) {
  .hero .meta__divider {
    display: none;
  }
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 78px;
}
@media (max-width: 1023px) {
  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-top: 48px;
  }
}

.hero .stats {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1023px) {
  .hero .stats {
    width: 100%;
    flex-wrap: wrap;
    gap: 32px 40px;
  }
}
.hero .stats__group {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
}
.hero .stats__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}
.hero .stats__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero .stats__value {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: #8b7cff;
}
.hero .stats__label {
  font-size: 16px;
  color: #dddddd;
  line-height: 1;
}
.hero .stats__divider {
  position: absolute;
  right: -25px;
  width: 1px;
  height: 40px;
  background-color: #404040;
}
@media (max-width: 1023px) {
  .hero .stats__divider {
    display: none;
  }
}


/* === network.css === */
/* ============================================================
   Network
   ============================================================ */
.network {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding-block: 100px;
  background: linear-gradient(to bottom, #FFFFFF 0%, #F4F9FC 100%);
}
@media (max-width: 1023px) {
  .network {
    padding-block: 56px;
  }
}
.network__dots.right-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 457px;
  max-width: 30%;
  pointer-events: none;
  user-select: none;
  transform: scaleX(-1);
}
.network__dots.left-bottom{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 641px;
  max-width: 30%;
  pointer-events: none;
  user-select: none;
  transform: scaleX(-1);
}
.network__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (min-width: 1680px) {
  .network__inner {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .network__inner {
    padding-inline: 20px;
  }
}
.network__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.network .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #1c9a99;
}
.network .eyebrow__arrow {
  width: 10px;
  height: 10px;
  color:  #1C9A99;
  transform: translateY(1px);
}
.network__title {
  display: flex;
  flex-direction: column;
  font-size: 60px;
  line-height: 1.35;
  font-weight: 600;
  color: #101114;
}
.network__title .is-accent {
  color:  #1C9A99;
}
@media (max-width: 1280px) {
  .network__title {
    font-size: 48px;
  }
}
@media (max-width: 1023px) {
  .network__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .network__title {
    font-size: 30px;
  }
}
.network__rule {
  width: 50px;
  height: 3px;
  background-color: #3ccbc4;
}
.network__intro {
  font-size: 18px;
  line-height: 1.9;
  color: #6B7280;
}
@media (max-width: 767px) {
  .network__intro {
    font-size: 15px;
  }
}

.network .diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
}
@media (max-width: 1023px) {
  .network .diagram {
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }
}
.network .cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}
.network .cluster__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 72px;
  margin-bottom: 8px;
}
.network .cluster__title {
  font-size: 20px;
  font-weight: 600;
  color: #101114;
  background-color: #edeef1;
  padding: 5.5px 41px;
  border-radius: 999px;
}
.network .cluster__pill {
  padding: 6.8px 30px;
  border-radius: 999px;
  background-color: #3ccbc4;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.network .cluster__sub {
  font-size: 16px;
  color: #6B7280;
}
.network .cluster__sub.is-accent {
  color: #3ccbc4;
}
.network .cluster__graphic {
  display: block;
  height: 300px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 1280px) {
  .network .cluster__graphic {
    height: 240px;
  }
}
@media (max-width: 1023px) {
  .network .cluster__graphic {
    height: auto;
    width: 100%;
    max-width: 460px;
  }
  .network .cluster__graphic.is-hub {
    max-width: 360px;
  }
}
.network .spacer{
  width: 1px;
  height: 270px;
  background-color: #3ccbc4;
  transform: translateY(16.8%);
}
@media (max-width: 1023px) {
  .network .spacer {
    display: none;
  }
}
.network .diagram__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.network .diagram__arrow img {
  width: 64px;
  height: auto;
  display: block;
}
@media (max-width: 1023px) {
  .network .diagram__arrow {
    transform: rotate(90deg);
  }
}
.network .focus {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}
.network .focus__rule {
  width: 30px;
  height: 3px;
  background-color: #3ccbc4;
  margin-bottom: 8px;
}
.network .focus__title {
  font-size: 22px;
  font-weight: 600;
  color: #3ccbc4;
}
.network .focus__line {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .network .focus {
    align-items: center;
    text-align: center;
    margin-left: 0;
  }
}

.network .callout {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 738px;
  max-width: 100%;
  height: 140px;
  box-sizing: border-box;
  margin: 64px auto 0;
  padding: 24px 32px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 12px 40px rgba(16, 17, 20, 0.08);
}
@media (max-width: 1023px) {
  .network .callout {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .network .callout {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    height: auto;
    padding: 20px;
    text-align: center;
  }
}
.network .callout__check {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #1C9A99;
  display: flex;
  align-items: center;
  justify-content: center;
}
.network .callout__check svg {
  width: 38px;
  height: 38px;
}
.network .callout__title {
  font-size: 28px;
  font-weight: 500;
  color: #101114;
}
.network .callout__title .is-accent {
  color:  #1C9A99;
}
@media (max-width: 767px) {
  .network .callout__title {
    font-size: 20px;
    line-height: 1.4;
  }
  .network .callout__sub {
    font-size: 15px !important;
  }
  .network .callout__check {
    width: 48px;
    height: 48px;
  }
  .network .callout__check svg {
    width: 28px;
    height: 28px;
  }
}
.network .callout__sub {
  margin-top: 6px;
  font-size: 20px;
  color: #6B7280;
}


/* === about.css === */
/* ============================================================
   About
   ============================================================ */
.about {
  width: 100%;
  background-color: #fcfdfe;
}
.about__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 1680px) {
  .about__inner {
    padding-inline: 0;
  }
}
@media (max-width: 1023px) {
  .about__inner {
    padding-block: 48px;
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .about__inner {
    padding-inline: 20px;
    padding-block: 40px;
    gap: 24px;
  }
}
.about__main {
  display: flex;
  align-items: stretch;
  gap: 80px;
}
.about__left {
  flex: 0 0 574px;
  max-width: 574px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  color: #101114;
}
@media (max-width: 1280px) {
  .about__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .about__title {
    font-size: 36px;
  }
}
.about__rule {
  width: 50px;
  height: 2px;
  background-color: #1c9a99;
}
.about__headline {
  display: flex;
  flex-direction: column;
}
.about__headline-line {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  color: #101114;
}
.about__headline-line.is-accent {
  color: #1c9a99;
}
@media (max-width: 1280px) {
  .about__headline-line {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .about__headline-line {
    font-size: 26px;
  }
}
.about__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
}
@media (max-width: 767px) {
  .about__desc {
    font-size: 16px;
  }
}
.about__quote {
  position: relative;
  margin: 10px 0 0;
  max-width: 580px;
  min-height: 160px;
  border-radius: 16px;
  background-color: #f2f8f8;
  padding: 46px 64px;
  display: flex;
  align-items: center;
}
.about__quote-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: #101114;
}
@media (max-width: 1280px) {
  .about__quote {
    max-width: none;
    min-height: auto;
    padding: 40px 32px 32px 52px;
  }
  .about__quote-mark.is-open {
    top: 18px;
    left: 18px;
  }
  .about__quote-mark.is-close {
    bottom: 18px;
    right: 18px;
  }
}
@media (max-width: 767px) {
  .about__quote {
    margin-top: 0;
    padding: 32px 24px 24px 40px;
  }
  .about__quote-text {
    font-size: 17px;
  }
}
.about__quote-mark {
  position: absolute;
  width: 22px;
  height: 22px;
}
.about__quote-mark.is-open {
  top: 26px;
  left: 28px;
}
.about__quote-mark.is-close {
  bottom: 26px;
  right: 28px;
}
@media (max-width: 767px) {
  .about__quote-mark {
    width: 16px;
    height: 16px;
  }
  .about__quote-mark.is-open {
    top: 18px;
    left: 18px;
  }
  .about__quote-mark.is-close {
    bottom: 18px;
    right: 18px;
  }
}
.about__right {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about .card {
  background-color: #fff;
  border-radius: 16px;
  padding: 46px 0;
  display: flex;
  align-items: stretch;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1280px) {
  .about .card {
    padding: 28px 0;
  }
  .about .card__col {
    gap: 12px;
    padding-inline: 12px;
  }
  .about .card__label,
  .about .card__feature-title {
    font-size: 18px;
  }
  .about .card__sub {
    font-size: 14px;
  }
}
.about .card__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-inline: 16px;
}
.about .card--stats .card__col:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}
@media (max-width: 767px) {
  .about .card--stats {
    flex-direction: row;
    padding: 14px 0;
  }
  .about .card__col {
    gap: 8px;
    padding-inline: 6px;
    padding-block: 10px;
  }
  .about .card--stats .card__col:not(:last-child) {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
  }
}
.about .card--features {
  align-items: flex-start;
}
.about .card--features .card__col {
  flex: 1 1 0;
}
.about .card__connector {
  flex: 0 0 0;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: flex-start;
  height: 100px;
  overflow: visible;
}
.about .card__connector-dot {
  width: 8px;
  height: 2px;
  background-color: #1c9a99;
  flex-shrink: 0;
}
.about .card__connector-dot.is-node {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.about .card__connector-dot.is-accent {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
}
.about .card__connector-dot.is-accent::after{
  content: '';
  display: block;
  width: 1px;
  height: 95px;
  background-color: #e5e7eb;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 70%);
}
.about .card__connector-dot.is-purple {
  background-color: #8b7cff;
}
.about .card__connector-dot.is-teal {
  background-color: #3ccbc4;
}
@media (max-width: 1280px) {
  .about .card__connector {
    gap: 5px;
    height: 84px;
  }
  .about .card__connector-dot.is-accent {
    width: 7px;
    height: 7px;
  }
}
@media (max-width: 767px) {
  .about .card--features {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .about .card--features::-webkit-scrollbar {
    display: none;
  }
  .about .card--features.swiper-wrapper {
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .about .card--features .card__col {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .about .card--features .swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }
  .about .card__connector {
    display: none;
  }
}
.about .card__icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .about .card__icon {
    width: 84px;
    height: 84px;
  }
}
@media (max-width: 767px) {
  .about .card__icon {
    width: 52px;
    height: 52px;
  }
}
.about .card__value {
  display: inline-flex;
  align-items: baseline;
  font-family: Inter, "PingFang SC", sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.about .card__unit {
  font-size: 44px;
}
@media (max-width: 1280px) {
  .about .card__value {
    font-size: 48px;
  }
  .about .card__unit {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .about .card__value {
    font-size: 36px;
    white-space: normal;
  }
  .about .card__unit {
    font-size: 26px;
  }
}
.about .card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about .card__label {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #101114;
}
@media (max-width: 767px) {
  .about .card__label {
    font-size: 14px;
  }
}
.about .card__feature-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.about .card__sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}
@media (max-width: 767px) {
  .about .card__sub {
    font-size: 12px;
  }
}
.about__note {
  width: 100%;
  min-height: 90px;
  border-radius: 16px;
  background-color: #f2f8f8;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 30px;
}
@media (max-width: 767px) {
  .about__note {
    align-items: flex-start;
    padding: 20px;
  }
}
.about__note-badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__note-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.about__note-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #101114;
}
.about__note-text em {
  font-style: normal;
  color: #1c9a99;
}
@media (max-width: 1280px) {
  .about__note-text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .about__note-text {
    font-size: 17px;
  }
}

/* Responsive layout: must follow base .about__left / .about__right (flex-basis 574px breaks column stack) */
@media (max-width: 1280px) {
  .about__inner {
    gap: 36px;
  }
  .about__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .about__left {
    flex: none;
    width: 100%;
    max-width: none;
    gap: 30px;
  }
  .about__right {
    flex: none;
    width: 100%;
    gap: 30px;
  }
  .about__quote {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .about__main {
    gap: 30px;
  }
  .about__left {
    gap: 30px;
  }
  .about__right {
    gap: 30px;
  }
}


/* === infra.css === */
/* ============================================================
   Infrastructure
   ============================================================ */
.infra {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}
.infra__inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 100px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1680px) {
  .infra__inner {
    padding-inline: 0;
  }
}
@media (max-width: 1023px) {
  .infra__inner {
    padding-block: 56px;
  }
}
@media (max-width: 767px) {
  .infra__inner {
    padding-inline: 20px;
  }
}
.infra__top {
  position: relative;
}
@media (max-width: 1023px) {
  .infra__top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
  .infra .intro {
    align-items: center;
    text-align: center;
  }
  .infra .intro__eyebrow {
    justify-content: center;
  }
  .infra .intro__rule {
    align-self: center;
  }
  .infra .intro__desc {
    align-self: stretch;
    text-align: left;
  }
  .infra__ellipse {
    display: none;
  }
}
.infra .intro {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.infra .intro__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #1c9a99;
}
@media (max-width: 767px) {
  .infra .intro__eyebrow {
    font-size: 16px;
  }
}
.infra .intro__eyebrow-arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transform: translateY(1px);
}
.infra .intro__title {
  display: flex;
  flex-direction: column;
  font-size: 60px;
  line-height: 1.4;
  font-weight: 600;
  color: #101114;
}
.infra .intro__title .is-accent {
  color: #1c9a99;
}
@media (max-width: 1280px) {
  .infra .intro__title {
    font-size: 48px;
  }
}
@media (max-width: 1023px) {
  .infra .intro__title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .infra .intro__title {
    font-size: 32px;
  }
}
.infra .intro__rule {
  width: 50px;
  height: 2px;
  background-color: #1c9a99;
}
.infra .intro__desc {
  font-size: 18px;
  line-height: 1.9;
  color: #6b7280;
}
@media (max-width: 767px) {
  .infra .intro__desc {
    font-size: 15px;
  }
}
.infra__ellipse {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 0;
  width: 52%;
  max-width: 816px;
  aspect-ratio: 816 / 503;
  pointer-events: none;
  background-image: url("../assets/images/backgound-5.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}
.infra .stats {
  margin-top: 100px;
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 38px 66px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(16, 17, 20, 0.05);
  box-shadow: 0 18px 40px rgba(16, 17, 20, 0.06);
}
@media (max-width: 1080px) {
  .infra .stats {
    margin-top: 40px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 28px 24px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .infra .stats::-webkit-scrollbar {
    display: none;
  }
  .infra .stats.swiper-wrapper {
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .infra .stats {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 28px 24px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .infra .stats::-webkit-scrollbar {
    display: none;
  }
  .infra .stats.swiper-wrapper {
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }
}
.infra .stats__group {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 13px;
}
.infra .stats__badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f1fd;
}
.infra .stats__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.infra .stats__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.infra .stats__value {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #8b7cff;
}
@media (min-width: 1081px) {
  .infra .stats__value {
    margin-top: 7px;
    margin-bottom: 10px;
  }
}
.infra .stats__label {
  font-size: 20px;
  font-weight: 600;
  color: #101114;
  line-height: 1.2;
}
.infra .stats__sub {
  font-size: 16px;
  color: #666666;
  line-height: 1.45;
}
@media (max-width: 1280px) {
  .infra .stats__badge {
    width: 64px;
    height: 64px;
  }
  .infra .stats__icon {
    width: 32px;
    height: 32px;
  }
  .infra .stats__value {
    font-size: 48px;
  }
}
@media (max-width: 1080px) {
  .infra .stats__group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 12px 20px;
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .infra .stats__group.swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }
  .infra .stats__text {
    align-items: center;
    gap: 6px;
  }
  .infra .stats__badge {
    width: 52px;
    height: 52px;
  }
  .infra .stats__icon {
    width: 30px;
    height: 30px;
  }
  .infra .stats__value {
    font-size: 40px;
    line-height: 1.1;
    white-space: normal;
    margin-top: 0;
    margin-bottom: 0;
  }
  .infra .stats__label {
    font-size: 16px;
  }
  .infra .stats__sub {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .infra .stats__group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 12px 20px;
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .infra .stats__group.swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }
  .infra .stats__text {
    align-items: center;
    gap: 6px;
  }
  .infra .stats__badge {
    width: 48px;
    height: 48px;
  }
  .infra .stats__icon {
    width: 28px;
    height: 28px;
  }
  .infra .stats__value {
    font-size: 36px;
    white-space: normal;
  }
  .infra .stats__label {
    font-size: 15px;
  }
  .infra .stats__sub {
    font-size: 13px;
  }
}
.infra .stats__divider {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 1px;
  height: 140px;
  background-color: #e5e7eb;
}
@media (max-width: 1080px) {
  .infra .stats__divider {
    display: none;
  }
}
.infra .promo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 1600px;
  max-width: 100%;
  height: 248px;
  box-sizing: border-box;
  margin-top: 60px;
  padding-inline: 72px;
  border-radius: 16px;
  background: linear-gradient(90deg, #041634 0%, #031943 100%);
}
.infra .promo__lead {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 30px;
  max-width: 60%;
}
.infra .promo__bar {
  flex-shrink: 0;
  width: 2px;
  border-radius: 2px;
  background-color: #3ccbc4;
}
.infra .promo__text {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
}
.infra .promo__text .promo__accent {
  font-size: 28px;
  color: #3ccbc4;
}
@media (max-width: 1023px) {
  .infra .promo {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 40px 32px;
  }
  .infra .promo__lead {
    max-width: none;
    width: 100%;
  }
  .infra .promo__ellipse {
    display: none;
  }
  .infra .promo__text {
    font-size: 24px;
  }
  .infra .promo__text .promo__accent {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .infra .promo {
    padding: 32px 24px;
  }
  .infra .promo__lead {
    gap: 18px;
  }
  .infra .promo__text {
    font-size: 20px;
  }
  .infra .promo__text .promo__accent {
    font-size: 20px;
  }
}
.infra .promo__ellipse {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 64%;
  pointer-events: none;
  background-image: url("../assets/images/backgound-4.png");
  background-size: cover;
  background-position: center right;
}
.infra .promo__ellipse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #041634 0%, rgba(4, 22, 52, 0) 32%);
}
.infra .promo__ellipse::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #041640 0%, rgba(4, 22, 64, 0) 22%);
}


/* === highlights.css === */
/* ============================================================
   Highlights
   ============================================================ */
.highlights {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding-block: 100px;
}
@media (max-width: 1023px) {
  .highlights {
    padding-block: 56px;
  }
}
.highlights__dots.right-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 457px;
  max-width: 30%;
  pointer-events: none;
  user-select: none;
}
.highlights__dots.left-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 641px;
  max-width: 30%;
  pointer-events: none;
  user-select: none;
  transform: scaleX(-1);
}
.highlights__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (min-width: 1680px) {
  .highlights__inner {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .highlights__inner {
    padding-inline: 20px;
  }
}
.highlights__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.highlights__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.3;
  color: #101114;
  margin-bottom: 62px;
  position: relative;
}
.highlights__title::before{
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 40px);
  background-color: #1C9A99;
}
.highlights__title .is-accent {
  color:  #1C9A99;
}
@media (max-width: 1023px) {
  .highlights__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .highlights__title {
    font-size: 30px;
  }
}
.highlights__sub {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}
@media (max-width: 767px) {
  .highlights__sub {
    font-size: 15px;
  }
}
.highlights .cards {
  margin: 72px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1023px) {
  .highlights .cards {
    margin-top: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .highlights .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .highlights .cards {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .highlights .cards::-webkit-scrollbar {
    display: none;
  }
  .highlights .cards.swiper-wrapper {
    overflow: visible;
    scroll-snap-type: none;
  }
}
.highlights .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 32px 48px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #eef1f2;
  box-shadow: 0 18px 40px rgba(16, 17, 20, 0.05);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .highlights .card {
    padding: 32px 18px 36px;
  }
}
@media (max-width: 767px) {
  .highlights .card {
    flex: 0 0 100%;
    padding: 36px 24px 40px;
    border: 0;
    box-shadow: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .highlights .card.swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }
}
.highlights .card__media {
  width: 100%;
  display: flex;
  justify-content: center;
}
.highlights .card__img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
.highlights .card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 28px;
  border-radius: 50%;
  background-color: #3ccbc4;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
.highlights .card__title {
  margin-top: 21px;
  margin-bottom: 31px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #101114;
  position: relative;
}
.highlights .card__title::after{
  content:"";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #3ccbc4;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 27px);
}
@media (max-width: 767px) {
  .highlights .card__title {
    font-size: 20px;
  }
}
.highlights .card__desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
}
.highlights__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 64px;
  text-align: center;
}
@media (max-width: 1023px) {
  .highlights__quote {
    margin-top: 44px;
  }
}
.highlights__quote-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .highlights__quote-mark {
    width: 18px;
    height: 18px;
  }
}
.highlights__quote-text {
  font-size: 28px;
  font-weight: 500;
  color: #101114;
}
@media (max-width: 767px) {
  .highlights__quote-text {
    font-size: 18px;
  }
}


/* === case.css === */
/* ============================================================
   Case Study
   ============================================================ */
.case {
  width: 100%;
  background-color: #fcfdfe;
}
.case__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 100px;
}
@media (min-width: 1680px) {
  .case__inner {
    padding-inline: 0;
  }
}
@media (max-width: 1023px) {
  .case__inner {
    padding-block: 56px;
  }
}
@media (max-width: 767px) {
  .case__inner {
    padding-inline: 20px;
  }
}
.case__main {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1023px) {
  .case__main {
    flex-direction: column;
    gap: 32px;
  }
}
.case__story {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
@media (max-width: 1023px) {
  .case__story {
    flex: 1 1 auto;
    width: 100%;
  }
}
.case__eyebrow {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case__eyebrow-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.35;
  color: #101114;
}
.case__eyebrow-title .is-accent {
  color: #1c9a99;
}
@media (max-width: 1280px) {
  .case__eyebrow-title {
    font-size: 48px;
  }
}
@media (max-width: 1023px) {
  .case__eyebrow-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .case__eyebrow-title {
    font-size: 32px;
  }
}
.case__rule {
  width: 50px;
  height: 2px;
  background-color: #1c9a99;
}
.case__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.35;
  color: #101114;
}
@media (max-width: 1023px) {
  .case__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .case__title {
    font-size: 26px;
  }
}
.case__desc {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
@media (max-width: 767px) {
  .case__desc {
    font-size: 16px;
  }
}
.case__stats {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .case__stats {
    gap: 4px;
  }
}
@media (max-width: 420px) {
  .case__stats {
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .case__stats::-webkit-scrollbar {
    display: none;
  }
  .case__stats.swiper-wrapper {
    overflow: visible;
    scroll-snap-type: none;
  }
}
.case__stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 14px;
  border-radius: 16px;
}
.case__stat.is-highlight {
  background-color: #f6f5fb;
}
.case__stat.is-highlight .case__stat-badge {
  background-color: #fafefe;
}
.case__stat.is-highlight .case__stat-value {
  color: #8b7cff;
}
@media (max-width: 767px) {
  .case__stat {
    padding: 20px 6px;
    gap: 14px;
  }
}
@media (max-width: 420px) {
  .case__stat {
    flex: 0 0 88%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .case__stat.swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }
}
.case__stat-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f7f7;
}
@media (max-width: 767px) {
  .case__stat-badge {
    width: 60px;
    height: 60px;
  }
}
.case__stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .case__stat-icon {
    width: 30px;
    height: 30px;
  }
}
.case__stat-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.case__stat-value {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: #1c9a99;
}
@media (max-width: 1280px) {
  .case__stat-value {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .case__stat-value {
    font-size: 24px;
  }
}
.case__stat-value-append {
  font-size: 16px;
  font-weight: 400;
  margin-left: 4px;
}
.case__stat-label {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #101114;
}
@media (max-width: 1280px) {
  .case__stat-label {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .case__stat-label {
    font-size: 15px;
  }
}
.case__period {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 20px;
  color: #1c9a99;
}
.case__period-icon {
  width: 24px;
  height: 24px;
}
.case__period-label {
  color: #101114;
}
.case__period-date {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1c9a99;
}
@media (max-width: 767px) {
  .case__period {
    font-size: 16px;
  }
}
.case__chart-card {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  padding: 32px 32px 24px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 30px rgba(16, 17, 20, 0.06);
}
@media (max-width: 767px) {
  .case__chart-card {
    padding: 24px 18px 18px;
  }
}
.case__chart-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .case__chart-head {
    gap: 14px;
    margin-bottom: 16px;
  }
}
.case__chart-badge {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f5fb;
}
.case__chart-badge img {
  width: 34px;
  height: 34px;
}
@media (max-width: 767px) {
  .case__chart-badge {
    width: 52px;
    height: 52px;
  }
  .case__chart-badge img {
    width: 26px;
    height: 26px;
  }
}
.case__chart-title {
  font-size: 24px;
  font-weight: 600;
  color: #101114;
}
@media (max-width: 767px) {
  .case__chart-title {
    font-size: 18px;
  }
}
.case__chart-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.case__banner {
  position: relative;
  margin-top: 60px;
  padding: 40px 60px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f2f8f8;
}
.case__banner::before {
  content: "";
  position: absolute;
  left: 60px;
  bottom: 0;
  width: 560px;
  max-width: 45%;
  height: 100%;
  background-image: url("../assets/images/backgound-3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .case__banner {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .case__banner {
    padding: 28px 24px;
  }
  .case__banner::before {
    display: none;
  }
}
.case__banner-content {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 824px;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .case__banner-content {
    margin-left: 0;
  }
}
.case__banner-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #101114;
}
.case__banner-quote-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  transform: translateY(38%);
}
@media (max-width: 1280px) {
  .case__banner-quote {
    font-size: 24px;
  }
  .case__banner-quote-mark{
    transform: translateY(30%);
  }
}
@media (max-width: 767px) {
  .case__banner-quote {
    font-size: 20px;
    gap: 12px;
  }
  .case__banner-quote-mark{
    transform: translateY(20%);
  }
}
.case__banner-sign {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-left: 48px;
  font-size: 16px;
  color: #1c9a99;
}
.case__banner-sign-rule {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #1c9a99;
}
@media (max-width: 767px) {
  .case__banner-sign {
    margin-left: 0;
  }
}


/* === invite.css === */
/* ============================================================
   Invite
   ============================================================ */
.invite {
  width: 100%;
  background-color: #fcfdfe;
}
.invite__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 100px;
}
@media (min-width: 1680px) {
  .invite__inner {
    padding-inline: 0;
  }
}
@media (max-width: 1023px) {
  .invite__inner {
    padding-block: 56px;
  }
}
@media (max-width: 767px) {
  .invite__inner {
    padding-inline: 20px;
  }
}
.invite__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 60px;
}
@media (max-width: 1023px) {
  .invite__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.invite__intro {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .invite__intro {
    width: 100%;
  }
}
.invite__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #1c9a99;
}
.invite__eyebrow-arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transform: translateY(1px);

}
@media (max-width: 767px) {
  .invite__eyebrow {
    font-size: 16px;
  }
}
.invite__title {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  font-size: clamp(32px, 3.4vw, 60px);
  font-weight: 600;
  line-height: 1.4;
  color: #1c9a99;
}
.invite__title .is-dark {
  color: #101114;
}
.invite__title span:first-child {
  color: #101114;
}
@media (max-width: 767px) {
  .invite__title {
    font-size: 30px;
  }
}
.invite__rule {
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 30px;
  background-color: #1c9a99;
}
.invite__sub {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}
@media (max-width: 767px) {
  .invite__sub {
    font-size: 16px;
  }
}
.invite__events {
  flex: 1;
  margin-top: 40px;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  box-shadow: 0 0 10px rgba(16, 17, 20, 0.06);
}
@media (max-width: 767px) {
  .invite__events {
    padding: 28px 22px;
    flex-direction: row;
    gap: 0;
    box-shadow: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .invite__events::-webkit-scrollbar {
    display: none;
  }
  .invite__events.swiper-wrapper {
    overflow: visible;
    scroll-snap-type: none;
  }
}
.invite__event {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .invite__event {
    flex: 0 0 100%;
    justify-content: center;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .invite__event.swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }
}
.invite__event-badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f7f7;
}
.invite__event-badge img {
  width: 28px;
  height: 28px;
  color: #1C9A99;
}
.invite__event-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.invite__event-label {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
}
.invite__event-value {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #101114;
}
.invite__event-sub {
  font-size: 18px;
  color: #6b7280;
}
.invite__form {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 50px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(16, 17, 20, 0.06);
}
@media (max-width: 1280px) {
  .invite__form {
    padding: 36px;
  }
}
@media (max-width: 1023px) {
  .invite__form {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .invite__form {
    padding: 28px 22px;
    gap: 24px;
  }
}
.invite__form-head {
  display: flex;
  flex-direction: column;
}
.invite__form-title {
  font-size: clamp(34px, 3.2vw, 60px);
  font-weight: 700;
  line-height: 1.2;
  color: #101114;
}
.invite__form-title span{
  font-family: "Times New Roman", Times, serif !important;
}
.invite__form-title .is-accent {
  color: #1c9a99;
}
@media (max-width: 767px) {
  .invite__form-title {
    font-size: 34px;
  }
}
.invite__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.invite__label {
  font-size: 20px;
  color: #101114;
}
@media (max-width: 767px) {
  .invite__label {
    font-size: 16px;
  }
}
.invite__control {
  display: flex;
  align-items: center;
  height: 60px;
  padding-inline: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background-color: #fff;
  transition: border-color 0.2s ease;
}
.invite__control:focus-within {
  border-color: #1c9a99;
}
.invite__control input,
.invite__control span {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  color: #101114;
  font-family: inherit;
}
.invite__control input::placeholder {
  color: #999999;
}
@media (max-width: 767px) {
  .invite__control input,
  .invite__control select {
    font-size: 16px;
  }
}
.invite__control select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.invite__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.invite__phone:focus-within {
  border-color: #1c9a99;
}
.invite__phone .invite__control {
  border: none;
  border-radius: 0;
}
.invite__phone .invite__control:focus-within {
  border-color: transparent;
}
.invite__control--code {
  position: relative;
  flex: 0 0 120px;
  padding-right: 40px;
  border-right: 1px solid #e5e7eb !important;
}
.invite__chevron {
  position: absolute;
  right: 16px;
  width: 16px;
  height: 16px;
  color: #333;
  pointer-events: none;
}
.invite__control--phone {
  flex: 1 1 auto;
  min-width: 0;
}
.invite__submit {
  height: 68px;
  border: none;
  border-radius: 10px;
  background-color: #1c9a99;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease;
}
.invite__submit:hover {
  background-color: #178683;
}
@media (max-width: 767px) {
  .invite__submit {
    height: 56px;
    font-size: 20px;
  }
}
.invite__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.45;
  color: #101114;
  transform: translateY(20px);
}
.invite__privacy span {
  min-width: 0;
}
.invite__privacy-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #1c9a99;
}
@media (max-width: 767px) {
  .invite__privacy {
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
    text-align: left;
    transform: none;
  }
}
.invite__audience {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding: 12px 30px;
  border-radius: 16px;
  background-color: #f2f8f8;
}
@media (max-width: 1023px) {
  .invite__audience {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .invite__audience {
    gap: 14px;
    padding: 16px 18px;
  }
}
.invite__audience-badge {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.invite__audience-badge img {
  width: 32px;
  height: 32px;
}
.invite__audience-text {
  font-size: 24px;
  font-weight: 500;
  color: #101114;
}
@media (max-width: 767px) {
  .invite__audience-text {
    font-size: 17px;
  }
}


/* === footer.css === */
/* ============================================================
   Footer
   ============================================================ */
.footer *{
    font-family: "Times New Roman", Times, serif !important;
}
.footer {
  width: 100%;
  background-color: #020b1a;
}
.footer__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 1023px) {
  .footer__inner {
    padding-block: 64px 48px;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    padding-inline: 20px;
  }
}
.footer__logo {
  width: 300px;
  height: auto;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 220px;
  }
}
.footer__brand {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__brand-name {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__brand-name {
    font-size: 30px;
  }
}
.footer__brand-slogan {
  font-size: 28px;
  color: #3ccbc4;
}
@media (max-width: 767px) {
  .footer__brand-slogan {
    font-size: 20px;
  }
}
.footer__tagline {
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
}
@media (max-width: 767px) {
  .footer__tagline {
    font-size: 16px;
  }
}
.footer__divider {
  width: 100%;
  max-width: 1600px;
  height: 1px;
  margin-top: 50px;
  background-color: #404040;
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 50px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .footer__socials {
    gap: 20px;
  }
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__social:hover {
  opacity: 0.8;
}
.footer__social-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.footer__social-label {
  font-family: "Inter", sans-serif;
  font-size: 24px;
}
.footer__social-label.is-muted {
  color: #ddd;
}
@media (max-width: 767px) {
  .footer__social-label {
    font-size: 18px;
  }
}
.footer__social-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transform: translateY(4.5px);
}
.footer__social-sep {
  width: 1px;
  height: 36px;
  background-color: #404040;
}
@media (max-width: 767px) {
  .footer__social-sep {
    display: none;
  }
}
.footer__copy {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #6b7280;
}
.footer__copy-sep {
  width: 1px;
  height: 20px;
  background-color: #404040;
}
@media (max-width: 767px) {
  .footer__copy {
    gap: 16px;
    font-size: 15px;
  }
}

