/* ========== Hero Section ========== */
.hero {
  padding-top: 128px;
  background: transparent;
}
.hero__container {
  width: 1140px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  min-width: 0;
}
.hero__body {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  min-width: 0;
}
/* -- Hero Title Group -- */
.hero__title-group {
  flex: 1;
  min-width: 0;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 20px;
  background: transparent;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.hero__tag-indicator {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero__tag-text {
  display: block;
  min-width: 0;
  max-width: 100%;
  padding-right: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero__title {
  font-size: 72px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.hero__subtitle {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
/* -- Hero Info Group -- */
.hero__info-group {
  flex: 1;
  min-width: 0;
  padding-top: 16px;
}
.hero__description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}
.hero__features {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  min-width: 0;
  flex-wrap: wrap;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}
.hero__feature img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.hero__feature span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #1f2937;
  color: #ffffff;
  border: none;
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hero__action-text {
  display: block;
  min-width: 0;
  max-width: 100%;
  padding-right: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero__action:hover {
  background: #374151;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.25);
}
.hero__action-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.hero__action:hover .hero__action-icon {
  transform: translateX(3px);
}
/* ========== Hero Visual ========== */
.hero-visual {
  width: 1140px;
  max-width: calc(100% - 32px);
  margin: 48px auto 0;
}
.hero-visual__card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  min-width: 0;
}
.hero-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* -- Stats Card -- */
.stats-card {
  position: absolute;
  top: 32px;
  right: 32px;
  bottom: 32px;
  width: 280px;
  height: 356px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 0 28px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: calc(100% - 64px);
  overflow: hidden;
}
.stats-card__header {
  padding-top: 32px;
  min-width: 0;
}
.stats-card__footer {
  padding-bottom: 32px;
  margin-top: auto;
  min-width: 0;
}
.stats-card__metric {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.stats-card__value {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stats-card__unit {
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stats-card__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  padding-right: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stats-card__label {
  display: -webkit-box;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}
.stats-card__detail {
  display: -webkit-box;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.7;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}
/* -- Floating Tag -- */
.floating-tag {
  position: absolute;
  bottom: 32px;
  left: 40px;
  right: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  border-radius: 24px;
  z-index: 10;
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: calc(100% - 40px - clamp(270px, 31%, 360px));
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}
.floating-tag__text {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.floating-tag__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #a78bfa, #f9a8d4);
  border-radius: 50%;
}
/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blurReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}
@keyframes blurRevealSlow {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(12px);
  }
  60% {
    opacity: 0.7;
    filter: blur(4px);
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}
.blur-reveal .char {
  display: inline-block;
  opacity: 0;
  animation: blurReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
/* 绗笁灞忔參閫熼€愬瓧鍔ㄧ敾 */
.blur-reveal-slow .char {
  display: inline-block;
  opacity: 0;
  animation: blurRevealSlow 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.blur-reveal-delay-1 {
  animation-delay: 0.1s;
}
.blur-reveal-delay-2 {
  animation-delay: 0.2s;
}
.blur-reveal-delay-3 {
  animation-delay: 0.3s;
}
.blur-reveal-delay-4 {
  animation-delay: 0.4s;
}
.blur-reveal-delay-5 {
  animation-delay: 0.5s;
}
.hero__tag {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero__title {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero__subtitle {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero__description {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero__features {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}
.hero__action {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}
.hero-visual__card {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.stats-card {
  animation: fadeInUp 0.6s ease-out 0.8s both;
}
.floating-tag {
  animation: fadeInUp 0.6s ease-out 0.9s both;
}
/* ========== Scroll Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
/* 瑙嗗樊婊氬姩 - hero鍏冪礌 */
.parallax-slow {
  will-change: transform;
}
/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    padding-top: 80px;
  }
  .hero__container {
    width: 100%;
    padding: 0 16px;
  }
  .hero__body {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .hero__title {
    font-size: 36px;
    letter-spacing: 1px;
  }
  .hero__subtitle {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .hero__info-group {
    padding-top: 0;
  }
  .hero__features {
    flex-direction: column;
    gap: 12px;
  }
  /* 瑙嗚鍖?*/
  .hero-visual {
    width: 100%;
    padding: 0 16px;
  }
  .hero-visual__card {
    height: 260px;
    border-radius: 16px;
  }
  /* 鏁版嵁鍗＄墖 */
  .stats-card {
    top: 16px;
    right: 16px;
    bottom: 16px;
    width: 180px;
    height: auto;
    padding: 0 16px;
    border-radius: 14px;
  }
  .stats-card__header {
    padding-top: 16px;
  }
  .stats-card__footer {
    padding-bottom: 16px;
  }
  .stats-card__value {
    font-size: 28px;
  }
  .stats-card__title {
    font-size: 12px;
  }
  .stats-card__label {
    font-size: 11px;
  }
  .stats-card__detail {
    font-size: 10px;
  }
  /* 娴姩鏍囩 */
  .floating-tag {
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 6px 14px;
    font-size: 11px;
    border-radius: 16px;
  }
}
/* ========== Pricing Section ========== */
.pricing {
  position: relative;
  padding: 100px 0 120px;
  background: transparent;
}
/* 鑳屾櫙鍦嗙幆 */
.pricing__bg-ring {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.pricing__bg-ring.show {
  opacity: 1;
}
.pricing__bg-ring img {
  width: 100%;
  height: auto;
  display: block;
}
.pricing__container {
  position: sticky;
  top: 72px;
  z-index: 1;
  width: 1140px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  min-width: 0;
}
/* -- Pricing Header -- */
.pricing__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative;
}
/* 绗簩灞忔爣棰樻粴鍔ㄥ彉褰細鏀惧ぇ灞呬腑 鈫?缂╁皬灞呭乏 */
.pricing__header-left {
  flex: 1;
  min-width: 0;
}
.pricing__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-align: left;
  transform-origin: left center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.pricing__subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  text-align: left;
  transform-origin: left center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}
/* 鍒濆鐘舵€侊細鏀惧ぇ灞呬腑 */
.pricing__header-left.is-scaling {
  width: 100%;
}
.pricing__header-left.is-scaling .pricing__title {
  font-size: 56px;
  text-align: center;
}
.pricing__header-left.is-scaling .pricing__subtitle {
  font-size: 22px;
  text-align: center;
}
.pricing__badges {
  display: flex;
  flex: 0 1 620px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  min-width: 0;
  max-width: 620px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.pricing__badges.show {
  opacity: 1;
  visibility: visible;
  position: relative;
  right: auto;
  bottom: auto;
}
.pricing__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  max-width: min(280px, 100%);
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  line-height: 20px;
  min-width: 0;
  overflow: hidden;
}
.pricing__badge span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pricing__badge img {
  width: 20px;
  height: 20px;
}
/* -- Pricing Cards Grid -- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-flow: row;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.5s ease;
  min-width: 0;
}
.pricing__grid.show {
  opacity: 1;
}
.pricing--dynamic-list .pricing__container {
  position: relative;
  top: auto;
}
.pricing--dynamic-list .pricing__grid {
  align-items: stretch;
}
/* -- Pricing Card -- */
.pricing-card {
  position: relative;
  background: transparent;
  border-radius: 20px;
  box-shadow: none;
  overflow: visible;
  z-index: 1;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 800px;
  min-width: 0;
  height: 100%;
}
/* 鍗＄墖鐧借壊鑳屾櫙锛堝甫搴曢儴寮у害闀傜┖锛?*/
.pricing-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #ffffff;
  -webkit-mask-image: radial-gradient(circle at 50% 100%, transparent 34px, black 34px);
  mask-image: radial-gradient(circle at 50% 100%, transparent 34px, black 34px);
  z-index: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}
.pricing-card:hover .pricing-card__bg {
  background: linear-gradient(135deg, #e4dfff, #eaf2ff, #f4f8ff);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
}
.pricing-card:hover {
  box-shadow: none;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 50% 100%, transparent 34px, black 34px);
  mask-image: radial-gradient(circle at 50% 100%, transparent 34px, black 34px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.pricing-card:hover::before {
  opacity: 1;
}
.pricing-card:hover .pricing-card__icon--default {
  display: none;
}
.pricing-card__icon--hover {
  display: none;
}
.pricing-card:hover .pricing-card__icon--hover {
  display: block;
}
.pricing-card__inner {
  padding: 40px 32px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 100%;
}
.pricing-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 4px;
}
.pricing-card__name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  min-height: 54px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.pricing-card__name-en {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  min-height: 34px;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.pricing-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.pricing-card__currency {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 52px;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pricing-card__amount {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 160px;
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pricing-card__decimal {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 64px;
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  vertical-align: baseline;
  margin-left: -2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pricing-card__period {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 72px;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 铏氱嚎鍒嗛殧 */
.pricing-card__divider {
  border: none;
  border-top: 1px dashed #e5e7eb;
  margin-top: 32px;
  margin-bottom: 24px;
}
/* 鐗规€у垪琛?*/
.pricing-card__features {
  list-style: none;
  text-align: left;
  min-width: 0;
}
.pricing-card__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: #4b5563;
  gap: 12px;
  min-width: 0;
}
.pricing-card__feature span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pricing-card__feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* 搴曢儴鍦嗙己鍙?- 甯冨皵杩愮畻 */
.pricing-card__notch {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s ease;
}
.pricing-card:hover .pricing-card__notch {
  background: #1f2937;
}
.pricing-card__notch img {
  width: 20px;
  height: 20px;
  transition: filter 0.4s ease;
}
.pricing-card:hover .pricing-card__notch img {
  filter: brightness(0) invert(1);
}
/* -- Global Infrastructure Section -- */
.infrastructure {
  position: relative;
  padding: 140px 0 100px;
  background: transparent;
}
.infrastructure__container {
  width: 1140px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  min-width: 0;
}
.infrastructure__card {
  width: 1140px;
  max-width: 100%;
  height: 576px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid #ffffff;
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  gap: 48px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  opacity: 0;
  min-width: 0;
}
.infrastructure__card.is-visible {
  opacity: 1;
}
/* 宸︿晶鍐呭 */
.infrastructure__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.infrastructure__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.infrastructure__title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1px;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.infrastructure__play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.infrastructure__play-btn img {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  filter: brightness(0) invert(1);
}
.infrastructure__subtitle {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 缁熻鍒楄〃 */
.infrastructure__stats {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  min-width: 0;
  overflow: hidden;
}
.infrastructure__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px dashed #e5e7eb;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  min-width: 0;
}
.infrastructure__stat-value,
.infrastructure__stat-unit,
.infrastructure__stat-label {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.infrastructure__stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.infrastructure__stat:last-child {
  border-bottom: none;
}
.infrastructure__stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  white-space: normal;
}
.infrastructure__stat-unit {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}
.infrastructure__stat-label {
  font-size: 14px;
  color: #9ca3af;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 鍙充晶鍦扮悆鍖哄煙 */
.infrastructure__right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
}
.infrastructure__globe-img {
  height: 576px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}
/* 鏈嶅姟鍣ㄨ妭鐐瑰垎甯冨崱鐗?*/
.infra-node-card {
  position: absolute;
  right: 88px;
  bottom: 112px;
  width: 310px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 5;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: calc(100% - 48px);
  min-width: 0;
  overflow: hidden;
}
.infra-node-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.infra-node-card__subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 1px;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.infra-node-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.infra-node-card__row:last-child {
  margin-bottom: 0;
}
.infra-node-card__label {
  font-size: 13px;
  color: #6b7280;
  width: 48px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.infra-node-card__bar-track {
  flex: 1;
  min-width: 0;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}
.infra-node-card__bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #e5b5f7, #acc1ff, #aee4ff);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
}
.infra-node-card__bar-fill.is-visible {
  /* width set inline */
}
.infra-node-card__value {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Mobile Infrastructure */
@media (max-width: 768px) {
  .infrastructure__card {
    flex-direction: column;
    height: auto;
    padding: 32px 24px;
  }
  .infrastructure__right {
    display: none;
  }
  .infra-node-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
  }
}
/* Mobile Pricing */
@media (max-width: 768px) {
  .pricing {
    padding: 40px 0 100px;
  }
  .pricing__bg-ring {
    top: 40px;
  }
  .pricing__container {
    width: 100%;
    padding: 0 16px;
  }
  .pricing__title {
    font-size: 24px;
  }
  .pricing__badges {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }
  .pricing__badge {
    width: 100%;
    max-width: 100%;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .pricing-card__inner {
    padding: 32px 20px 50px;
  }
  .pricing-card__price {
    font-size: 28px;
  }
}
/* ========== 绗洓灞?- 鐢ㄦ埛璇勪环 ========== */
.reviews {
  position: relative;
  padding: 100px 0 80px;
  background: transparent;
}
.reviews__container {
  width: 1140px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-width: 0;
}
.reviews__header {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  min-width: 0;
}
.reviews__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reviews__title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.reviews__subtitle {
  font-size: 15px;
  color: #6b7280;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 20px;
  min-width: 0;
  align-items: stretch;
}
.review-card {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 184px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
  overflow: hidden;
}
.review-card:nth-child(1) {
  transition-delay: 0s;
}
.review-card:nth-child(2) {
  transition-delay: 0.08s;
}
.review-card:nth-child(3) {
  transition-delay: 0.16s;
}
.review-card:nth-child(4) {
  transition-delay: 0.24s;
}
.review-card:nth-child(5) {
  transition-delay: 0.32s;
}
.review-card:nth-child(6) {
  transition-delay: 0.4s;
}
.review-card:nth-child(7) {
  transition-delay: 0.48s;
}
.review-card:nth-child(8) {
  transition-delay: 0.56s;
}
.review-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.review-card.is-visible:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}
/* 婊氬姩杩涘害鏉?*/
.review-card:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.1);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.review-card__text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: break-word;
  width: 100%;
  max-width: 100%;
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  flex: 0 0 auto;
}
.review-card__stars img {
  width: 14px;
  height: 14px;
}
.review-card__divider {
  width: 100%;
  height: 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
  margin-top: auto;
}
.review-card__company {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-card__ring {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.4;
}
.reviews__bg-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 60px));
  width: 100%;
  max-width: 1200px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}
.reviews__bg-ring.is-visible {
  opacity: 0.3;
}
.reviews__bg-ring img {
  width: 100%;
  height: auto;
}
/* ========== CTA 鍖哄煙 ========== */
.cta-section {
  padding: 80px 0;
  background: transparent;
}
.cta-card {
  width: 1140px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  background: #4a4d50;
  border-radius: 12px;
  padding: 64px 48px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  min-width: 0;
}
.cta-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cta-card__title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cta-card__desc {
  font-size: 14px;
  color: #b0b3b8;
  line-height: 1.6;
  margin-bottom: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.cta-card__form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 4px 4px 4px 20px;
  min-width: 0;
}
.cta-card__form:focus-within {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}
.cta-card__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333333;
  background: transparent;
}
.cta-card__input::placeholder {
  color: #999999;
}
.cta-card__submit {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #333333;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.cta-card__submit:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.cta-card__submit.is-loading img {
  animation: mf601CtaLoading 0.8s linear infinite;
}
.cta-card__submit:hover {
  background: #111111;
}
.cta-card__submit img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.cta-card__message {
  min-height: 20px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
  color: #d8d8d8;
}
.cta-card__message.is-success {
  color: #ffffff;
}
.cta-card__message.is-error {
  color: #ffd2d2;
}
@keyframes mf601CtaLoading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1280px) {
  .hero__body {
    gap: 40px;
  }
  .hero__title {
    font-size: 60px;
  }
  .hero__subtitle {
    font-size: 40px;
  }
  .reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 112px;
  }
  .hero__body {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .hero__title,
  .hero__subtitle,
  .hero__description {
    max-width: 720px;
  }
  .hero__action {
    width: min(100%, 420px);
  }
  .hero-visual__card {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 16px;
    align-items: stretch;
    overflow: hidden;
  }
  .hero-visual__image {
    min-height: 320px;
    border-radius: 20px;
  }
  .stats-card,
  .floating-tag {
    position: static;
  }
  .stats-card {
    width: auto;
    height: auto;
    min-height: 320px;
    padding: 24px;
    max-width: 100%;
  }
  .floating-tag {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }
  .infrastructure__card {
    height: auto;
    min-height: 360px;
    padding: 48px 40px;
  }
  .reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 96px;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__subtitle {
    font-size: 30px;
  }
  .hero__features {
    gap: 12px;
  }
  .hero__feature {
    flex: 1 1 100%;
  }
  .hero__action {
    width: 100%;
    padding: 14px 18px;
  }
  .hero-visual {
    margin-top: 32px;
  }
  .hero-visual__card {
    grid-template-columns: 1fr;
  }
  .hero-visual__image {
    min-height: 240px;
  }
  .stats-card {
    min-height: 0;
  }
  .infrastructure {
    padding: 56px 0;
  }
  .infrastructure__card {
    padding: 32px 24px;
  }
  .infrastructure__stats {
    grid-template-columns: 1fr;
  }
  .reviews {
    padding: 56px 0;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 34px;
  }
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__tag {
    width: 100%;
  }
}
