.page-lxcl {
  --primary: #4a4efa;
  --primary-dark: #3a3ce0;
  --bg: #f8faff;
  --text: #1a1a1a;
  --text-gray: #666;
  --radius-lg: 32px;
  --radius-md: 16px;
}
.page-lxcl * {
  box-sizing: border-box;
  margin: 0;
}
.page-lxcl {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #edf0ff;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.page-lxcl a {
  text-decoration: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 16px;
  color: var(--text-gray);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.3s;
}
.nav-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* Hero - 3 Column Layout */
.hero {
  margin: 0px 40px 0;
  padding: 60px 60px 0;
  position: relative;
  z-index: 10;
  overflow: visible;
  min-height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  color: var(--text);
  text-align: left;
}
.hero::after {
  display: none;
}
.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* Hero Left */
.hero-left {
  flex: 1;
  padding-top: 60px;
  position: relative;
  z-index: 100;
}
.hero-title-text {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  font-style: italic;
}
.hero-title-cn {
  font-size: 52px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 65px;
}
.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  background: #eef2ff;
  color: var(--primary);
  padding: 8px 8px 8px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.hero-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(74, 78, 250, 0.15);
}
.hero-arrow {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s;
}
.hero-download-btn:hover .hero-arrow {
  transform: translateX(4px) rotate(-45deg);
}

.product-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.product-qr-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 56, 0.48);
  backdrop-filter: blur(8px);
}

.product-qr-modal__dialog {
  position: relative;
  width: min(380px, calc(100vw - 32px));
  padding: 28px 28px 32px;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 78, 246, 0.12),
      transparent 32%
    ),
    #ffffff;
  box-shadow: 0 28px 80px rgba(18, 31, 67, 0.24);
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.28s ease;
}

.product-qr-modal.is-open .product-qr-modal__dialog {
  transform: translateY(0) scale(1);
}

.product-qr-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f3f6fb;
  color: #222;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-qr-modal__close:hover {
  background: #e7eefb;
  transform: rotate(90deg);
}

.product-qr-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 78, 246, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.product-qr-modal__title {
  margin: 16px 0 10px;
  color: #222;
  font-size: 30px;
  line-height: 1.2;
}

.product-qr-modal__desc {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.75;
}

.product-qr-modal__desc--after-qr {
  margin-top: 16px;
}

.product-qr-modal__qr-box {
  width: min(240px, 100%);
  margin: 24px auto 0;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 78, 246, 0.08);
}

.product-qr-modal__qr-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Hero Center - Phone */
.hero-center {
  position: absolute;
  left: 42%;
  top: 45%;
  transform: translateX(-50%);
  z-index: 10;
  margin-bottom: -450px;
}
.hero-phone-img {
  width: 1006px;
  height: auto;
  /* max-width: 100%; */
  border-radius: 40px;
  animation: hero-phone-float 6s ease-in-out infinite;
}

@keyframes hero-phone-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hero Right */
.hero-right {
  flex: 1;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 354px;
}
.hero-right-desc {
  font-size: 16px;
  color: rgba(34, 34, 34, 1);
  line-height: 1.8;
}
.hero-right-stats {
  position: relative;
  height: 90px;
  overflow: hidden;
}
.hero-stats-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-stats-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: statsCarousel 6s ease-in-out infinite;
}
.hero-stats-item:nth-child(2) {
  animation-delay: 3s;
}

@keyframes statsCarousel {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  42% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #fff;
}

/* Hero Bottom Bar */
.hero-bar {
  background: var(--primary);
  color: #fff;
  padding: 280px 0 60px; /* Big height to account for phone */
  margin: 0 auto;
  max-width: 1240px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.hero-bar-bg {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  font-size: 140px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0;
  user-select: none;
  line-height: 1;
  text-align: center;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}
.hero-bar-text {
  font-size: 26px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.hero-bar-logo {
  display: none; /* No logo visible in new screenshot */
}
.hero-download {
  display: none;
}

/* Partners Marquee */
.partners-marquee {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.partners-track {
  display: flex;
  flex-shrink: 0;
  animation: scroll-left 30s linear infinite;
}
.partner-logo {
  flex: 0 0 auto;
  width: 176px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  transition: opacity 0.3s;
}
.partner-logo__image {
  display: block;
  width: auto;
  max-width: 228px;
  height: 62px;
  object-fit: contain;
}
.partner-logo:hover {
  color: #fff;
}
@keyframes scroll-left {
  100% {
    transform: translateX(-50%);
  }
}

/* Hero subtitle bar */
.hero-subtitle-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 28px 40px;
  margin: 0 40px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-top: -2px;
}

/* Intro Section */
.intro-sec {
  text-align: center;
  padding: 160px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  background: transparent;
}
.intro-sec .site-section-heading {
  margin-bottom: 50px;
}

/* 搴曢儴涓婃粦鍗＄墖 */
.intro-bottom-card {
  margin-top: 220px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.intro-sec.active .intro-bottom-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.market-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 32px;
  width: 486px;
  height: 361px;
  max-width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.market-card--media {
  padding: 0;
  overflow: hidden;
}
.market-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.market-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #f3f4f6;
}
.market-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.market-coin-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.market-row-chart {
  width: 80px;
  height: 30px;
}
.market-row-right {
  text-align: right;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: var(--weave-color-primary, rgba(76, 61, 255, 1));
  color: #fff;
  padding: 4px 4px 4px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #eee;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.download-btn .arrow-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  color: var(--weave-color-primary, rgba(76, 61, 255, 1));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.3s;
}
.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(74, 78, 250, 0.15);
}
.download-btn:hover .arrow-icon {
  transform: translateX(4px) rotate(-45deg);
}

/* Floating cards */
.float-card {
  position: absolute;
  width: 312px;
  height: 312px;
  background: #fff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  z-index: 3;
  animation: float-left 4s ease-in-out infinite;
}
.float-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.float-card.left {
  left: 0;
  top: 20%;
}
.float-card.right {
  right: 0;
  top: 20%;
  animation: float-right 4s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes float-left {
  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(-20px) rotate(-15deg);
  }
}
@keyframes float-right {
  0%,
  100% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}

/* Ecosystem Core */
.lx-ecosystem-sec {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #f6f7f9;
}

.lx-ecosystem-wrap {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 42px 40px 20px;
}

.lx-ecosystem-header {
  margin-bottom: 34px;
}

.lx-ecosystem-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.lx-ecosystem-nav {
  position: relative;
  min-height: 518px;
  padding: 26px 0;
  overflow: hidden;
}

.lx-ecosystem-nav::after {
  content: none;
}

.lx-ecosystem-nav-item {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 90px;
  padding: 0 0 0 20px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease;
}

.lx-ecosystem-nav-item:is(:hover, :focus-visible) {
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.12)
  );
  outline: none;
  font-size: 20px;
}

.lx-ecosystem-nav-item.is-active {
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0.18)
  );
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 30px rgba(72, 112, 214, 0.14);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  outline: none;
  font-size: 20px;
}

.lx-ecosystem-nav-item {
  align-items: center;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.lx-ecosystem-content {
  position: relative;
  min-height: 518px;
}

.lx-ecosystem-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.lx-ecosystem-screen.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.lx-ecosystem-screen--default {
  display: block;
}

.lx-ecosystem-screen--metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

.lx-ecosystem-screen--default .lx-ecosystem-panel:first-child {
  min-height: 164px;
}

.lx-ecosystem-panel {
  padding: 20px 0;
  border-radius: 4px;
  background: #fff;
}

.lx-ecosystem-panel--industry {
  margin-top: 20px;
  padding-top: 20px;
}

.lx-ecosystem-panel-title,
.lx-ecosystem-panel-title-row {
  display: flex;
  align-items: center;
}

.lx-ecosystem-panel-title-row {
  justify-content: space-between;
}

.lx-ecosystem-panel-title {
  gap: 12px;
  padding: 0 20px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.lx-ecosystem-panel-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0b63ff 0%, #75b2ff 100%);
  box-shadow: 8px 8px 0 rgba(11, 99, 255, 0.16);
  flex-shrink: 0;
}

.lx-ecosystem-panel-icon--link {
  border-radius: 4px;
}

.lx-ecosystem-org-grid,
.lx-ecosystem-industry-grid {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.lx-ecosystem-org-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(230, 230, 230, 1);
  margin-top: 20px;
}

.lx-ecosystem-org-col,
.lx-ecosystem-industry-col {
  border-right: 1px solid rgba(230, 230, 230, 1);
}

.lx-ecosystem-org-col:last-child,
.lx-ecosystem-industry-col:last-child {
  border-right: 0;
}

.lx-ecosystem-org-col div {
  min-height: 52px;
  padding: 22px 20px 0;
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  line-height: 1.6;
}

.lx-ecosystem-more {
  padding-right: 20px;
  color: #0057ff;
  font-size: 14px;
  font-weight: 500;
}

.lx-ecosystem-industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(230, 230, 230, 1);
  margin-top: 18px;
}

.lx-ecosystem-industry-col {
  display: grid;
  padding: 10px 0 0;
}

.lx-ecosystem-industry-col div {
  padding: 10px 20px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.lx-ecosystem-metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc((100% - 60px) / 4);
  height: 152px;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #fff;
}

.lx-ecosystem-metric-num {
  display: flex;
  align-items: baseline;
  color: rgba(0, 0, 0, 0.9);
}

.lx-ecosystem-metric-num span:first-child {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.lx-ecosystem-metric-num span:last-child {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.lx-ecosystem-metric-text {
  padding-top: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

/* 鏈嶅姟鍗＄墖妯″潡锛堜笌棣栭〉涓€鑷达級 */
.trio-cards-sec {
  padding: 80px 40px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.service-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: linear-gradient(270deg, #eaf3ff 0%, #ffffff 100%);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  border: 1px solid #ffffff;
  padding: 24px;
  display: flex;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 50, 150, 0.08);
}
.service-card h3 {
  margin: 0 0 10px;
}
.service-card p {
  margin: 0 0 40px;
  flex: 1;
}
.service-card-left {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.service-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.service-card-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--primary, #0b63ff);
  border-radius: 4px;
  color: var(--primary, #0b63ff);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.service-card-view:hover {
  background: var(--primary, #0b63ff);
  color: #fff;
}
.service-card-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

.core-products-sec {
  padding: 32px 40px 120px;
  background: #fafcfe;
}

.core-products-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.core-products-header {
  text-align: center;
  margin-bottom: 40px;
}

.core-products-title.site-section-heading {
  margin-bottom: 12px;
}

.core-products-subtitle.site-section-subtitle {
  margin: 0 auto;
}

.core-products-list {
  display: grid;
  gap: 24px;
}

.core-product-card {
  --enter-x: -88px;
  --card-surface: linear-gradient(90deg, #fff8f4 0%, #fff4f8 100%);
  --card-glow-a: rgba(255, 219, 207, 0.68);
  --card-glow-b: rgba(255, 208, 234, 0.68);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 364px) minmax(320px, 430px);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 416px;
  padding: 40px 72px 40px 94px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: var(--card-surface);
  box-shadow: 0 18px 60px rgba(35, 84, 170, 0.06);
  opacity: 0;
  transform: translate3d(var(--enter-x), 0, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.core-product-card::before,
.core-product-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.core-product-card::before {
  top: -145px;
  left: -134px;
  width: 456px;
  height: 456px;
  background: radial-gradient(
    circle,
    var(--card-glow-a) 0%,
    rgba(255, 255, 255, 0) 72%
  );
}

.core-product-card::after {
  right: -108px;
  bottom: -132px;
  width: 348px;
  height: 348px;
  background: radial-gradient(
    circle,
    var(--card-glow-b) 0%,
    rgba(255, 255, 255, 0) 72%
  );
}

.core-product-card:nth-child(even) {
  --enter-x: 88px;
}

.core-products-sec.active .core-product-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.core-products-sec.active .core-product-card:nth-child(1) {
  transition-delay: 0.04s;
}

.core-products-sec.active .core-product-card:nth-child(2) {
  transition-delay: 0.14s;
}

.core-products-sec.active .core-product-card:nth-child(3) {
  transition-delay: 0.24s;
}

.core-products-sec.active .core-product-card:nth-child(4) {
  transition-delay: 0.34s;
}

.core-products-sec.active .core-product-card:nth-child(5) {
  transition-delay: 0.44s;
}

.core-products-sec.active .core-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(35, 84, 170, 0.1);
}

.core-product-card--peach {
  --card-surface: linear-gradient(90deg, #fff8f4 0%, #fff4f8 100%);
  --card-glow-a: rgba(255, 224, 210, 0.78);
  --card-glow-b: rgba(255, 220, 237, 0.72);
}

.core-product-card--violet {
  --card-surface: linear-gradient(90deg, #faf5ff 0%, #f4efff 100%);
  --card-glow-a: rgba(233, 216, 255, 0.8);
  --card-glow-b: rgba(220, 226, 255, 0.72);
}

.core-product-card--cyan {
  --card-surface: linear-gradient(90deg, #effdff 0%, #eef6ff 100%);
  --card-glow-a: rgba(214, 245, 252, 0.86);
  --card-glow-b: rgba(213, 226, 255, 0.7);
}

.core-product-card--mint {
  --card-surface: linear-gradient(90deg, #effff6 0%, #fffaf0 100%);
  --card-glow-a: rgba(214, 248, 232, 0.86);
  --card-glow-b: rgba(255, 238, 205, 0.76);
}

.core-product-card--lavender {
  --card-surface: linear-gradient(90deg, #f3f7ff 0%, #f7f1ff 100%);
  --card-glow-a: rgba(219, 231, 255, 0.82);
  --card-glow-b: rgba(230, 220, 255, 0.76);
}

.core-product-copy,
.core-product-media {
  position: relative;
  z-index: 1;
}

.core-product-copy {
  max-width: 364px;
}

.core-product-heading {
  display: grid;
}

.core-product-title.site-card-title {
  margin: 0;
}

.core-product-subhead.site-card-subtitle {
  margin: 0;
}

.core-product-desc.site-card-copy {
  margin: 12px 0 16px;
}

.core-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.core-product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: #6c94fa;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.core-product-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #0149ff;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.core-product-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.core-product-image {
  display: block;
  width: min(100%, 430px);
  height: auto;
}

@media (max-width: 1199px) {
  .core-products-sec {
    padding: 24px 24px 96px;
  }

  .core-product-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 32px;
    padding: 36px 40px;
  }
}

@media (max-width: 991px) {
  .core-products-sec {
    padding: 16px 20px 84px;
  }

  .core-products-header {
    margin-bottom: 28px;
  }

  .core-product-card {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: auto;
    gap: 24px;
    padding: 32px 28px;
  }

  .core-product-copy {
    max-width: none;
  }

  .core-product-media {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .core-products-sec {
    padding: 12px 16px 72px;
  }

  .core-product-card {
    gap: 20px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .core-product-card::before {
    width: 280px;
    height: 280px;
    left: -90px;
    top: -90px;
  }

  .core-product-card::after {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -100px;
  }

  .core-product-desc.site-card-copy {
    margin-bottom: 14px;
  }

  .core-product-tags {
    gap: 8px;
    margin-bottom: 18px;
  }

  .core-product-tag {
    min-height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 18px;
  }

  .core-product-link {
    font-size: 13px;
  }
}

/* Features */
.features-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
  padding-top: 100px;
}
.features-head h2 {
  font-size: 46px;
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 0px 100px;
  max-width: 1240px;
  margin: 0 auto;
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 10, 0.03);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover {
  transform: translateY(-8px);
}
.feature-card.feature-card-bg {
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
/* 鏂囧瓧鍖哄煙 */
.fc-text {
  padding: 36px 32px 0;
  position: relative;
  z-index: 2;
}
.fc-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
  line-height: 1.3;
}
.fc-desc {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}
.fc-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(74, 78, 250, 0.08);
  color: var(--primary);
}
.fc-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.fc-desc {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Web3 Showcase: Phone + Token Cloud */
.web3-sec {
  text-align: center;
  padding: 100px calc((100% - 1200px) / 2 + 40px) 80px;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
}
.web3-sec h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
}
.web3-sec p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.web3-showcase {
  position: relative;
  margin-top: 60px;
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Token Cloud - Horizontal Scrolling Rows */
.token-cloud {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}
.token-row {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.token-row-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.token-row-left .token-row-track {
  animation: token-scroll-left 25s linear infinite;
}
.token-row-right .token-row-track {
  animation: token-scroll-right 25s linear infinite;
}
.token-cloud .token-pill {
  flex-shrink: 0;
  background: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  white-space: nowrap;
}
.token-cloud .token-pill:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.tp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes token-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes token-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Phone Mockup */
.phone-mockup {
  width: 300px;
  background: #fff;
  border-radius: 40px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.phone-mockup img {
  width: 100%;
  height: auto;
}
.phone-notch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 10px;
}
.phone-notch-bar {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 20px;
}

/* Wallet UI inside phone */
.wallet-header {
  padding: 4px 16px 8px;
}
.wallet-balance {
  text-align: center;
  padding: 8px 16px 16px;
}
.wallet-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 16px 16px;
}
.wa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}
.wa-icon {
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #333;
}
.wa-active .wa-icon {
  background: var(--primary);
  color: #fff;
}
.wallet-section {
  padding: 8px 16px 12px;
}
.fav-card {
  flex: 1;
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  min-width: 0;
}
.wallet-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px 16px;
  border-top: 1px solid #f1f1f1;
  margin-top: 8px;
}
.wn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #999;
}
.wn-item.wn-active {
  color: var(--primary);
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  flex-direction: row;
  gap: 6px;
  font-size: 11px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.security-sec {
  padding: 120px 40px 100px;
  max-width: 1240px;
  margin: 0 auto;
}
.security-sec .sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.security-sec .sec-head h2 {
  font-size: 46px;
  font-weight: 800;
}
.security-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sec-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}
.sec-card:hover {
  transform: translateY(-4px);
}
.sec-card.sec-card-main {
  background: linear-gradient(145deg, #e0dcff, #dbd6ff, #e8e4ff);
  padding: 60px;
  align-items: center;
  gap: 40px;
}
.sec-main-btn {
  display: inline-block;
  margin-top: 32px;
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.sec-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(74, 78, 250, 0.25);
}
.sec-swap-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  min-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.sec-swap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.sec-swap-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 8px 0;
}
.sec-swap-btn {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.sec-swap-btn:hover {
  background: var(--primary-dark);
}
.sec-card .sec-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  cursor: pointer;
}
.sec-card-icon {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Testimonials */
.testimonials-sec {
  padding: 100px 24px 100px calc((100% - 1240px) / 2 + 40px);
  max-width: 100%;
  margin: 0 auto;
  background: transparent;
}
.testimonials-sec h2 {
  font-size: 46px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 16px;
}
.testimonials-sec .sub {
  text-align: left;
  color: var(--text-gray);
  margin-bottom: 50px;
  font-size: 16px;
}

/* Carousel Container */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonials-carousel:hover .carousel-arrow {
  opacity: 1;
}
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc((100% - 80px) / 5);
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
  min-width: 0;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}
.testimonial-card .quote {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial-card .text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card .name {
  font-weight: 700;
  font-size: 16px;
}
.testimonial-card .stars {
  color: #fbbf24;
  font-size: 14px;
}

/* Slide-up animation for newly appearing card */
@keyframes card-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-card.slide-up {
  animation: card-slide-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Carousel Arrow Buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #333;
  z-index: 10;
  opacity: 0;
  transition:
    opacity 0.3s,
    background 0.2s,
    transform 0.2s;
}
.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.carousel-arrow-left {
  left: 8px;
}
.carousel-arrow-right {
  right: 8px;
}

/* FAQ */
.faq-sec {
  background: transparent;
}

/* Stats */
.stats-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto 80px;
}
.stat-item {
  text-align: center;
}
.stat-item .num {
  font-size: 56px;
  font-weight: 900;
  color: var(--text);
}
.stat-item .label {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 8px;
}

/* FAQ Detail */
.faq-sec {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-sec h2 {
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
}
.faq-item {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 12px;
  cursor: pointer;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.faq-item.open {
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
}
.faq-item.open .faq-q {
  color: var(--primary);
}
.faq-q .icon {
  font-size: 24px;
  color: var(--text-gray);
  transition: transform 0.3s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 16px;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

/* CTA */
.cta-sec {
  margin: 120px 40px 80px;
  padding: 100px 40px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-sec h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-sec p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: transparent;
  padding: 80px 40px 30px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}

/* Mock Swap UI */
.mock-swap {
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  margin: 50px auto 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.mock-row {
  background: #f4f6f9;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-coin {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-coin-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-coin-name {
  font-size: 14px;
  font-weight: 700;
}
.mock-coin-sub {
  font-size: 11px;
  color: #999;
}
.mock-amt-val {
  font-size: 18px;
  font-weight: 800;
  text-align: right;
}
.mock-amt-fiat {
  font-size: 11px;
  color: #999;
  text-align: right;
}
.mock-btn {
  background: var(--primary);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.mock-btn:hover {
  background: var(--primary-dark);
}

/* Mock tokens grid */
.mock-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  max-width: 400px;
}
.mock-icon-wrap {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.mock-icon-wrap:hover {
  transform: scale(1.1);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 骞虫澘绔?鈮?024px ===== */
@media (max-width: 1024px) {
  .hero {
    margin: 80px 20px 0;
    padding: 40px 30px 0;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-left,
  .hero-right {
    padding-top: 20px;
    align-items: center;
    max-width: 100%;
  }
  .hero-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 0;
  }
  .hero-phone-img {
    width: 300px;
  }
  .float-card {
    display: none;
  }
  .lx-ecosystem-sec {
    padding: 0;
  }
  .lx-ecosystem-wrap {
    padding: 36px 20px 20px;
  }
  .lx-ecosystem-layout {
    grid-template-columns: 1fr;
  }
  .lx-ecosystem-nav {
    min-height: auto;
    padding: 0;
  }
  .lx-ecosystem-nav::after {
    display: none;
  }
  .lx-ecosystem-nav-item {
    min-height: 72px;
    padding-left: 0;
    font-size: 20px;
  }
  .lx-ecosystem-content {
    min-height: 0;
  }
  .lx-ecosystem-screen {
    position: relative;
    display: none;
    opacity: 1;
    inset: auto;
    pointer-events: auto;
  }
  .lx-ecosystem-screen.is-active {
    display: flex;
  }
  .lx-ecosystem-screen--default.is-active {
    display: block;
  }
  .lx-ecosystem-org-grid,
  .lx-ecosystem-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lx-ecosystem-metric-card {
    width: calc((100% - 20px) / 2);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 80px;
  }
  .service-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  .trio-cards-sec {
    padding: 60px 20px 40px;
  }
  .service-card-left {
    width: 100%;
  }
  .service-card-img {
    width: 120px;
    height: 120px;
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .token-cloud .token-pill {
    display: none;
  }
  .sec-card {
    flex-direction: column;
    padding: 36px;
  }
  .sec-card.sec-card-main {
    padding: 40px;
  }
  .sec-swap-card {
    min-width: 100%;
  }
  .stats-sec {
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 20px;
  }
  .web3-sec {
    padding: 80px 20px 60px;
  }
  .web3-sec h2 {
    font-size: 36px;
  }
  .hero-bar {
    padding: 300px 0 40px;
    margin: 20px auto 0;
  }
  .partner-logo {
    width: 168px;
    padding: 10px 0;
  }
  .partner-logo__image {
    max-width: 208px;
    height: 54px;
  }
  .hero-bar-bg {
    font-size: 100px;
  }
  .hero-subtitle-bar {
    margin: 0 20px;
    font-size: 16px;
    padding: 20px;
  }
}

/* ===== 骞虫澘绔栧睆 鈮?68px ===== */
@media (max-width: 768px) {
  .nav-links,
  .nav-btn {
    display: none;
  }
  .navbar {
    padding: 0 20px;
    height: 60px;
  }
  .hero {
    margin: 68px 16px 0;
    padding: 30px 20px 0;
  }
  .hero-title-text {
    font-size: 32px;
  }
  .hero-title-cn {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .hero-phone-img {
    width: 260px;
  }
  .hero-bar {
    margin: 10px 16px 0;
    padding: 200px 20px 30px;
    border-radius: 24px;
  }
  .partner-logo {
    width: 152px;
    padding: 8px 0;
  }
  .partner-logo__image {
    max-width: 184px;
    height: 46px;
  }
  .hero-bar-bg {
    font-size: 60px;
  }
  .hero-bar-text {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .hero-subtitle-bar {
    margin: 0 16px;
    font-size: 14px;
    padding: 16px 20px;
  }
  .hero-download-btn {
    font-size: 16px;
    padding: 6px 6px 6px 24px;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .product-qr-modal {
    padding: 20px;
  }
  .product-qr-modal__dialog {
    padding: 24px 20px 28px;
    border-radius: 24px;
  }
  .product-qr-modal__title {
    font-size: 26px;
  }
  .product-qr-modal__desc {
    font-size: 16px;
  }
  .intro-sec {
    padding: 80px 20px;
  }
  .lx-ecosystem-sec {
    padding: 0;
  }
  .lx-ecosystem-wrap {
    padding: 28px 20px 18px;
  }
  .lx-ecosystem-header {
    margin-bottom: 24px;
  }
  .lx-ecosystem-nav-item {
    min-height: 60px;
    font-size: 18px;
  }
  .lx-ecosystem-screen--metrics {
    gap: 16px;
  }
  .lx-ecosystem-org-grid,
  .lx-ecosystem-industry-grid {
    grid-template-columns: 1fr;
  }
  .lx-ecosystem-panel {
    padding: 18px 0;
  }
  .lx-ecosystem-panel--industry {
    height: auto;
  }
  .lx-ecosystem-org-col,
  .lx-ecosystem-industry-col {
    border-right: 0;
  }
  .lx-ecosystem-org-col div,
  .lx-ecosystem-industry-col div {
    padding: 12px 14px;
    font-size: 14px;
  }
  .lx-ecosystem-panel-title {
    padding: 0 14px;
    font-size: 17px;
  }
  .lx-ecosystem-metric-card {
    width: calc((100% - 16px) / 2);
    height: 140px;
    margin-bottom: 0;
  }
  .lx-ecosystem-metric-num span:first-child {
    font-size: 28px;
  }
  .lx-ecosystem-metric-text {
    padding: 10px 12px 0;
    font-size: 16px;
  }
  .intro-bottom-card {
    margin-top: 120px;
  }
  .market-card {
    width: 100%;
    height: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }
  .features-head {
    padding-top: 60px;
    margin-bottom: 36px;
  }
  .feature-card {
    padding: 30px;
    min-height: 360px;
  }
  .service-bottom-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card-left {
    width: 100%;
  }
  .service-card-img {
    width: 100px;
    height: 100px;
  }
  .web3-showcase {
    min-height: 400px;
  }
  .phone-mockup {
    width: 240px;
  }
  .security-sec {
    padding: 60px 20px;
  }
  .testimonials-sec {
    padding: 60px 20px;
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
    padding: 24px;
  }
  .stats-sec {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 20px;
  }
  .stat-item .num {
    font-size: 42px;
  }
  .faq-sec {
    padding: 60px 20px;
  }
  .cta-sec {
    margin: 40px 16px 40px;
    padding: 60px 20px;
  }
  .footer {
    padding: 40px 20px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== 鎵嬫満绔?鈮?80px ===== */
@media (max-width: 480px) {
  .navbar {
    padding: 0 12px;
    height: 54px;
  }
  .logo {
    font-size: 18px;
  }
  .hero {
    margin: 60px 12px 0;
    padding: 20px 16px 0;
  }
  .hero-title-text {
    font-size: 26px;
  }
  .hero-title-cn {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .hero-phone-img {
    width: 220px;
  }
  .hero-bar {
    margin: 10px 12px 0;
    padding: 160px 16px 24px;
    border-radius: 20px;
  }
  .partner-logo {
    width: 136px;
    padding: 8px 0;
  }
  .partner-logo__image {
    max-width: 156px;
    height: 38px;
  }
  .hero-bar-bg {
    font-size: 40px;
  }
  .hero-bar-text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .hero-subtitle-bar {
    margin: 0 12px;
    font-size: 13px;
    padding: 14px 16px;
  }
  .hero-right-desc {
    font-size: 13px;
  }
  .hero-download-btn {
    font-size: 14px;
    padding: 4px 4px 4px 20px;
    gap: 16px;
  }
  .product-qr-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .product-qr-modal__title {
    font-size: 22px;
  }
  .product-qr-modal__qr-box {
    width: min(220px, 100%);
    padding: 12px;
  }
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .download-btn {
    font-size: 16px;
    padding: 3px 3px 3px 24px;
  }
  .download-btn .arrow-icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .intro-sec {
    padding: 60px 16px;
  }
  .lx-ecosystem-sec {
    padding: 0;
  }
  .lx-ecosystem-wrap {
    padding: 24px 16px 16px;
  }
  .lx-ecosystem-header {
    margin-bottom: 20px;
  }
  .lx-ecosystem-nav-item {
    min-height: 52px;
    font-size: 14px;
  }
  .lx-ecosystem-screen--metrics {
    gap: 12px;
  }
  .lx-ecosystem-panel-title,
  .lx-ecosystem-panel-title-row {
    align-items: flex-start;
  }
  .lx-ecosystem-panel-title {
    gap: 10px;
    font-size: 16px;
  }
  .lx-ecosystem-more {
    padding-right: 14px;
    font-size: 13px;
  }
  .lx-ecosystem-metric-card {
    width: 100%;
    height: 124px;
  }
  .lx-ecosystem-metric-num span:first-child {
    font-size: 26px;
  }
  .lx-ecosystem-metric-num span:last-child {
    font-size: 16px;
  }
  .lx-ecosystem-metric-text {
    font-size: 14px;
  }
  .intro-sec .site-section-heading {
    margin-bottom: 30px;
  }
  .intro-bottom-card {
    margin-top: 80px;
  }
  .trio-cards-sec {
    padding: 40px 12px 30px;
  }
  .service-card p {
    margin-bottom: 20px;
  }
  .service-card-img {
    width: 80px;
    height: 80px;
  }
  .features-head {
    padding-top: 40px;
    margin-bottom: 24px;
  }
  .features-grid {
    padding: 0 16px 40px;
    gap: 16px;
  }
  .feature-card {
    min-height: 630px;
    padding: 24px;
  }
  .fc-tag {
    font-size: 11px;
    padding: 4px 12px;
  }
  .fc-title {
    font-size: 22px;
  }
  .fc-desc {
    font-size: 13px;
  }
  .web3-sec {
    padding: 48px 16px 40px;
  }
  .web3-sec p {
    font-size: 14px;
  }
  .web3-showcase {
    min-height: 300px;
    margin-top: 30px;
  }
  .phone-mockup {
    width: 200px;
    border-radius: 30px;
    padding: 8px;
  }
  .security-sec {
    padding: 48px 16px;
  }
  .sec-card {
    padding: 24px;
  }
  .sec-card.sec-card-main {
    padding: 28px;
    gap: 24px;
  }
  .sec-main-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  .testimonials-sec {
    padding: 48px 16px;
  }
  .testimonials-sec .sub {
    font-size: 14px;
  }
  .testimonial-card {
    flex: 0 0 85%;
    padding: 24px;
  }
  .faq-sec {
    padding: 48px 16px;
  }
  .faq-item {
    padding: 18px 20px;
  }
  .faq-q {
    font-size: 16px;
  }
  .faq-a {
    font-size: 13px;
  }
  .cta-sec {
    margin: 24px 12px 24px;
    padding: 48px 16px;
    border-radius: 20px;
  }
  .cta-sec p {
    font-size: 14px;
  }
  .cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  .footer {
    padding: 32px 16px 16px;
  }
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .footer-col a {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
