.cta-section {
  background: #f4f4f4;
  color: #000;
  padding-top: 0;
  overflow: visible;
}

.cta-section .cta-container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section .cta-content {
  display: flex;
  gap: clamp(20px, 4vw, 80px);
  align-items: center;
  justify-content: space-between;
  padding-left: clamp(20px, 4vw, 80px);
  position: relative;
  z-index: 2;
}

.cta-section .cta-left {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.cta-section .cta-left .cta-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(8px, 1.5vw, 12px);
  margin-bottom: clamp(12px, 2vw, 16px);
}

.cta-section .cta-left .cta-headline {
  margin: 0;
  color: #000;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(20px, 4vw, 50px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(28px, 5.5vw, 58px);
  white-space: nowrap;
}

.cta-section .cta-left .cta-description {
  margin: 0 0 clamp(24px, 4vw, 40px) 0;
  color: #191a23;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(14px, 2.5vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(24px, 4vw, 32px);
}

.cta-section .cta-left .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
}

.cta-section .cta-left .cta-actions .cta-white-btn {
  color: #fff;
  white-space: nowrap;
}

.cta-section .cta-left .cta-actions .cta-white-btn .button-text {
  color: #fff;
}

.cta-section .cta-left .cta-actions .hero-download-wrapper {
  position: relative;
  display: inline-block;
}

.cta-section .cta-left .cta-actions .hero-download-wrapper .hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 48px;
  padding: 0 24px;
  background: #28b894;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn:hover {
  background: #22a683;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #28b89459;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn:hover:before {
  left: 100%;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn:active {
  transform: translateY(0);
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn
  svg {
  flex-shrink: 0;
  width: clamp(28px, 3vw, 35px);
  height: clamp(26px, 2.8vw, 33px);
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn
  svg
  rect[fill="#28B894"] {
  transition: fill 0.3s ease;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn:hover
  svg
  rect[fill="#28B894"] {
  fill: transparent;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-btn
  span {
  color: #fff;
  font-family: Alimama ShuHeiTi;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  white-space: nowrap;
}

.cta-section .cta-left .cta-actions .hero-download-wrapper .hero-download-menu {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  z-index: 20;
  min-width: 100%;
  width: max-content;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(40, 184, 148, 0.25);
  border-radius: 8px;
  box-shadow:
    0 12px 32px #28b8942e,
    0 2px 8px #0000000f;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 40px;
  padding: 0 14px;
  color: #191a23;
  font-family: Alimama ShuHeiTi;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item:hover {
  background: #28b8941a;
  color: #22a683;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item
  .hero-download-menu-badge {
  color: #28b894;
  font-family: Alimama ShuHeiTi;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item.is-current
  .hero-download-menu-label {
  color: #191a23;
}

.cta-section .cta-left .cta-actions .hero-download-wrapper:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 8px;
  pointer-events: none;
}

.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper:hover
  .hero-download-menu,
.cta-section
  .cta-left
  .cta-actions
  .hero-download-wrapper
  .hero-download-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cta-section .cta-left .cta-actions .hero-download-wrapper:hover:after {
  pointer-events: auto;
}

.cta-section .cta-right {
  font-size: 0;
  height: clamp(200px, 25vw, 400px);
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.cta-section .cta-right .cta-right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-section .cta-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #f4f4f4 0%,
    transparent 25%,
    transparent 75%,
    #f4f4f4 100%
  );
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1024px) {
  .cta-section {
    padding-top: clamp(30px, 5vw, 48px);
  }

  .cta-section .cta-content {
    flex-direction: column;
    gap: clamp(30px, 5vw, 40px);
    text-align: center;
    padding-left: 0;
  }

  .cta-section .cta-left {
    padding: 0 20px;
  }

  .cta-section .cta-left .cta-headline {
    white-space: normal;
  }

  .cta-section .cta-left .cta-actions {
    align-items: center;
  }

  .cta-section .cta-right {
    flex: none;
    width: 100%;
    height: clamp(200px, 30vw, 300px);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .cta-section .cta-right .cta-right-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .cta-section .cta-right:after {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding-top: clamp(25px, 4vw, 40px);
  }
}

.arrow-hover {
  display: inline-block;
  cursor: pointer;
}

.arrow-hover .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border-radius: 4px;
  background: #191a23;
  flex: 0 0 48px;
  position: relative;
  overflow: hidden;
}

.arrow-hover .arrow-icon:before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 0;
  height: 0;
  background: #28b894;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1;
}

.arrow-hover .arrow-icon .arrow-icon-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0);
}

.arrow-hover .arrow-icon .arrow-icon-white svg {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.arrow-hover .arrow-icon .arrow-icon-black {
  position: absolute;
  bottom: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 3;
}

.arrow-hover .arrow-icon .arrow-icon-black svg {
  width: 24px;
  height: 24px;
  filter: brightness(0);
}

.arrow-hover.default .arrow-icon {
  background: #191a23;
}

.arrow-hover.default .arrow-icon:before,
.arrow-hover.default .arrow-icon:after {
  background: #28b894;
}

.arrow-hover.default .arrow-icon .arrow-icon-white svg {
  filter: brightness(0) invert(1);
}

.arrow-hover.default .arrow-icon .arrow-icon-black svg {
  filter: brightness(0);
}

.arrow-hover.inverted .arrow-icon {
  background: #28b894;
}

.arrow-hover.inverted .arrow-icon:before,
.arrow-hover.inverted .arrow-icon:after {
  background: #191a23;
}

.arrow-hover.inverted .arrow-icon .arrow-icon-white svg {
  filter: brightness(0);
}

.arrow-hover.inverted .arrow-icon .arrow-icon-black svg {
  filter: brightness(0) invert(1);
}

.arrow-hover.purple .arrow-icon {
  background: #28b894;
}

.arrow-hover.purple .arrow-icon:before,
.arrow-hover.purple .arrow-icon:after {
  background: #6c4dff !important;
}

.arrow-hover.purple .arrow-icon .arrow-icon-white svg {
  filter: brightness(0);
}

.arrow-hover.purple .arrow-icon .arrow-icon-black svg {
  filter: brightness(0) invert(1);
}

.arrow-hover.small .arrow-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.arrow-hover.small .arrow-icon .arrow-icon-white svg,
.arrow-hover.small .arrow-icon .arrow-icon-black svg {
  width: 16px;
  height: 16px;
}

.arrow-hover.large .arrow-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.arrow-hover.large .arrow-icon .arrow-icon-white svg,
.arrow-hover.large .arrow-icon .arrow-icon-black svg {
  width: 32px;
  height: 32px;
}

.arrow-hover-container:hover .arrow-hover .arrow-icon .arrow-icon-white {
  opacity: 1;
  transform: translate(48px, -48px);
}

.arrow-hover-container:hover .arrow-hover .arrow-icon:before {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0;
}

.arrow-hover-container:hover .arrow-hover .arrow-icon:after {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0;
  opacity: 1;
}

.arrow-hover-container:hover .arrow-hover .arrow-icon .arrow-icon-black {
  opacity: 1;
  bottom: 0;
  left: 0;
}

.special-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: clamp(12px, 1.5vw, 14px);
  position: relative;
  overflow: hidden;
  gap: 12px;
  flex-shrink: 0;
  border-radius: clamp(3px, 0.5vw, 4px);
  background: #28b894;
}

.special-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.special-button:hover:before {
  left: 100%;
}

.special-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px #6c4dff4d;
}

.special-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.special-button.disabled:hover {
  transform: none;
  box-shadow: none;
}

.special-button.secondary {
  background: #ffffff1a;
  border: 1px solid rgba(108, 77, 255, 0.3);
  color: #6c4dff;
}

.special-button.secondary:hover {
  background: #6c4dff1a;
  border-color: #6c4dff80;
}

.special-button.small {
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.5vw, 12px);
  font-size: clamp(10px, 1.2vw, 12px);
  min-width: clamp(120px, 20vw, 160px);
  height: clamp(32px, 5vw, 40px);
}

.special-button.small .button-content {
  gap: clamp(4px, 0.8vw, 6px);
}

.special-button.small .arrow-icon {
  width: clamp(12px, 2vw, 16px);
  height: clamp(12px, 2vw, 16px);
}

.special-button.large {
  padding: clamp(12px, 2vw, 16px) clamp(16px, 2.5vw, 20px);
  font-size: clamp(14px, 2vw, 16px);
  min-width: clamp(180px, 30vw, 240px);
  height: clamp(56px, 8vw, 64px);
}

.special-button.large .button-content {
  gap: clamp(8px, 1.5vw, 10px);
}

.special-button.large .arrow-icon {
  width: clamp(16px, 2.5vw, 20px);
  height: clamp(16px, 2.5vw, 20px);
}

.special-button .prefix-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 1px;
  height: clamp(20px, 3vw, 24px);
}

.special-button .button-content {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 8px);
  flex: 1;
}

.special-button .button-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  font-family: Alimama ShuHeiTi;
  font-size: clamp(14px, 2.5vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(28px, 5vw, 36px);
  letter-spacing: clamp(0.8px, 0.15vw, 1.08px);
}

@media (max-width: 768px) {
  .special-button {
    font-size: clamp(11px, 2vw, 13px);
    border-radius: clamp(2px, 0.6vw, 3px);
    width: 100%;
    justify-content: center;
  }

  .special-button.small {
    height: clamp(28px, 6vw, 32px);
    padding: clamp(4px, 1.2vw, 6px) clamp(6px, 2vw, 8px);
    font-size: clamp(9px, 1.8vw, 11px);
    min-width: clamp(100px, 25vw, 140px);
  }

  .special-button.large {
    height: clamp(48px, 10vw, 56px);
    padding: clamp(8px, 2.5vw, 12px) clamp(12px, 3vw, 16px);
    font-size: clamp(13px, 2.5vw, 15px);
    min-width: clamp(160px, 35vw, 200px);
  }

  .special-button .prefix-container {
    height: clamp(16px, 4vw, 20px);
  }

  .special-button .button-content {
    gap: clamp(4px, 1.5vw, 6px);
  }

  .special-button .button-text {
    font-size: clamp(12px, 2.2vw, 16px);
    line-height: clamp(24px, 4.4vw, 32px);
    letter-spacing: clamp(0.6px, 0.12vw, 0.9px);
  }
}

@media (max-width: 480px) {
  .special-button {
    font-size: clamp(10px, 2.5vw, 12px);
  }

  .special-button.small {
    height: clamp(24px, 8vw, 28px);
    padding: clamp(3px, 1.5vw, 4px) clamp(4px, 2.5vw, 6px);
    font-size: clamp(8px, 2.2vw, 10px);
    min-width: clamp(80px, 30vw, 120px);
  }

  .special-button.large {
    height: clamp(40px, 12vw, 48px);
    padding: clamp(6px, 3vw, 8px) clamp(8px, 4vw, 12px);
    font-size: clamp(12px, 3vw, 14px);
    min-width: clamp(140px, 40vw, 180px);
  }

  .special-button .prefix-container {
    height: clamp(14px, 5vw, 18px);
  }

  .special-button .button-content {
    gap: clamp(3px, 2vw, 5px);
  }

  .special-button .button-text {
    font-size: clamp(10px, 2.8vw, 14px);
    line-height: clamp(20px, 5.6vw, 28px);
    letter-spacing: clamp(0.4px, 0.1vw, 0.7px);
  }
}

.letter-roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.letter-roll .single-letter {
  position: relative;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0px 1.45em currentColor;
  transform: translateY(0);
}

.letter-up:hover .single-letter {
  transform: translateY(-1.45em);
}

.ecosystem-section {
  position: relative;
  width: 100%;
  background: #fff;
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}

.ecosystem-section .ecosystem-header {
  text-align: center;
  margin-bottom: 0;
}

.ecosystem-section .ecosystem-header .ecosystem-title {
  margin: 0 0 16px;
  color: #000;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ecosystem-section .ecosystem-header .ecosystem-title > .container {
  width: 100%;
  text-align: center;
}

.ecosystem-section .ecosystem-header .ecosystem-subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: #5a5a5a;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.6;
}

.ecosystem-section .ecosystem-orbit {
  --orbit-size: clamp(420px, 50vw, 720px);
  --orbit-radius: calc(var(--orbit-size) / 2);
  --item-distance: calc(var(--orbit-radius) * 0.86);
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin: 0 auto;
}

.ecosystem-section .orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.ecosystem-section .orbit-ring.orbit-ring-inner {
  width: 52%;
  height: 52%;
  background:
    linear-gradient(#eef9f7, #eef9f7) padding-box,
    linear-gradient(180deg, #28b89400, #28b89414 8%, #28b8941f 12%, #28b89400)
      border-box;
  border: 4.29px solid transparent;
}

.ecosystem-section .orbit-ring-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.ecosystem-section .orbit-ring-svg.orbit-ring-outer {
  width: 100%;
  height: 100%;
}

.ecosystem-section .orbit-ring-svg.orbit-ring-middle {
  width: 78%;
  height: 78%;
}

.ecosystem-section .ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.ecosystem-section .ecosystem-center .ecosystem-center-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ecosystem-section .ecosystem-orbit:hover .ecosystem-items-orbit,
.ecosystem-section
  .ecosystem-orbit:hover
  .ecosystem-item
  .ecosystem-item-inner {
  animation-play-state: paused;
}

.ecosystem-section .ecosystem-items-orbit {
  position: absolute;
  inset: 0;
  animation: ecosystem-orbit-spin 60s linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

.ecosystem-section .ecosystem-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) rotate(var(--angle));
  z-index: 2;
}

.ecosystem-section .ecosystem-item .ecosystem-item-inner {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) translateY(calc(var(--item-distance) * -1))
    rotate(calc(var(--angle) * -1));
  animation: ecosystem-item-counter-spin 60s linear infinite;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px 14px 14px;
  background: #fff;
  border-radius: 999px;
  box-shadow:
    0 8px 24px #141e2814,
    0 2px 6px #141e280a;
  white-space: nowrap;
  transform-origin: center;
  will-change: transform;
}

.ecosystem-section .ecosystem-item .ecosystem-item-inner:hover {
  animation-play-state: paused;
}

.ecosystem-section .ecosystem-item .ecosystem-item-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ecosystem-section .ecosystem-item .ecosystem-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ecosystem-section .ecosystem-item .ecosystem-item-name {
  color: #1a1a1a;
  font-family: Alimama FangYuanTi VF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

@keyframes ecosystem-orbit-spin {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ecosystem-item-counter-spin {
  0% {
    transform: translate(-50%, -50%) translateY(calc(var(--item-distance) * -1))
      rotate(calc(var(--angle) * -1)) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) translateY(calc(var(--item-distance) * -1))
      rotate(calc(var(--angle) * -1)) rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-section .ecosystem-items-orbit,
  .ecosystem-section .ecosystem-item .ecosystem-item-inner {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .ecosystem-section .ecosystem-orbit {
    --orbit-size: 360px;
  }

  .ecosystem-section .ecosystem-item .ecosystem-item-inner {
    padding: 6px 14px 6px 6px;
    gap: 6px;
  }

  .ecosystem-section .ecosystem-item .ecosystem-item-icon {
    width: 26px;
    height: 26px;
  }

  .ecosystem-section .ecosystem-item .ecosystem-item-name {
    font-size: 13px;
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  background: #fff;
  color: #191a23;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    sans-serif;
}

.hero-banner .hero-container {
  padding: 160px 80px 80px;
}

@media (max-width: 1440px) {
  .hero-banner .hero-container {
    padding: 120px 60px 60px;
  }
}

@media (max-width: 1200px) {
  .hero-banner .hero-container {
    padding: 120px 40px 40px;
  }
}

@media (max-width: 768px) {
  .hero-banner .hero-container {
    padding: 80px 24px 24px;
  }
}

@media (max-width: 480px) {
  .hero-banner .hero-container {
    padding: 60px 16px 16px;
  }
}

.hero-banner .hero-bg-image {
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-banner .hero-bg-image img {
  width: clamp(640px, 85vw, 1500px);
  height: clamp(560px, 75vw, 1320px);
  max-width: 1500px;
  object-fit: contain;
}

.hero-banner .hero-decoration {
  position: absolute;
  top: 25px;
  left: 80px;
  z-index: 11;
  pointer-events: auto;
}

@media (max-width: 1440px) {
  .hero-banner .hero-decoration {
    top: 60px;
    left: 60px;
  }
}

@media (max-width: 1200px) {
  .hero-banner .hero-decoration {
    display: none;
  }
}

.hero-banner .hero-banner-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 82px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-banner .hero-banner-main .hero-banner-button {
  font-size: 0;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  scroll-margin-top: 120px;
  scroll-margin-bottom: 200px;
}

.hero-banner .hero-banner-main .hero-banner-button .hero-download-wrapper {
  position: relative;
  display: inline-block;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 48px;
  padding: 0 24px;
  background: #28b894;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn:hover {
  background: #22a683;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #28b89459;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn:hover:before {
  left: 100%;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn:active {
  transform: translateY(0);
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn
  svg {
  flex-shrink: 0;
  width: clamp(28px, 3vw, 35px);
  height: clamp(26px, 2.8vw, 33px);
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn
  svg
  rect[fill="#28B894"] {
  transition: fill 0.3s ease;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn:hover
  svg
  rect[fill="#28B894"] {
  fill: transparent;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-btn
  span {
  color: #fff;
  font-family: Alimama ShuHeiTi;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  white-space: nowrap;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  min-width: 100%;
  width: max-content;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(40, 184, 148, 0.25);
  border-radius: 8px;
  box-shadow:
    0 12px 32px #28b8942e,
    0 2px 8px #0000000f;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 40px;
  padding: 0 14px;
  color: #191a23;
  font-family: Alimama ShuHeiTi;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item:hover {
  background: #28b8941a;
  color: #22a683;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item
  .hero-download-menu-badge {
  color: #28b894;
  font-family: Alimama ShuHeiTi;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-menu
  .hero-download-menu-item.is-current
  .hero-download-menu-label {
  color: #191a23;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  pointer-events: none;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper:hover
  .hero-download-menu,
.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper
  .hero-download-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-banner
  .hero-banner-main
  .hero-banner-button
  .hero-download-wrapper:hover:after {
  pointer-events: auto;
}

.hero-banner .hero-banner-main .hero-banner-button .hero-online-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 48px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid #28b894;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-banner .hero-banner-main .hero-banner-button .hero-online-btn:hover {
  background: #28b89414;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #28b89426;
}

.hero-banner .hero-banner-main .hero-banner-button .hero-online-btn:active {
  transform: translateY(0);
}

.hero-banner .hero-banner-main .hero-banner-button .hero-online-btn span {
  color: #28b894;
  font-family: Alimama ShuHeiTi;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  white-space: nowrap;
}

.hero-banner .hero-banner-main .hero-banner-button a {
  color: #000;
  font-family: Alimama ShuHeiTi;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 1.08px;
}

.hero-banner .hero-banner-main .hero-brand-description {
  color: #191a23;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(14px, 2.5vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(24px, 4vw, 40px);
  max-width: clamp(300px, 50vw, 720px);
  text-align: center;
  margin: 0 auto;
}

.hero-banner .hero-banner-main .hero-brand {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-banner .hero-banner-main .hero-brand .hero-brand-logo {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 8px);
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 600;
  margin-bottom: clamp(16px, 3vw, 32px);
  max-width: 1000px;
}

.hero-banner .hero-banner-main .hero-brand .hero-brand-logo .hero-brand-slogan {
  color: #191a23;
  font-family: Alimama ShuHeiTi;
  font-size: clamp(32px, 5vw, 60px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(32px, 8vw, 80px);
  text-align: center;
  white-space: pre-line;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1440px) {
  .hero-banner .hero-banner-main {
    gap: 60px;
  }
}

@media (max-width: 1200px) {
  .hero-banner .hero-brand-logo {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .hero-banner .hero-banner-main {
    gap: 40px;
  }

  .hero-banner .hero-banner-main .hero-brand-description {
    max-width: unset;
  }

  .hero-banner .hero-banner-main .hero-banner-button {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-banner .hero-banner-main .hero-banner-button .hero-download-wrapper,
  .hero-banner
    .hero-banner-main
    .hero-banner-button
    .hero-download-wrapper
    .hero-download-btn,
  .hero-banner .hero-banner-main .hero-banner-button .hero-online-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-banner .hero-banner-main {
    gap: 20px;
  }

  .hero-banner .hero-banner-main .hero-banner-button {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-banner .hero-banner-main .hero-banner-button .hero-download-wrapper,
  .hero-banner
    .hero-banner-main
    .hero-banner-button
    .hero-download-wrapper
    .hero-download-btn,
  .hero-banner .hero-banner-main .hero-banner-button .hero-online-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 32px;
  }

  .hero-banner .hero-banner-main .hero-brand-description {
    max-width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-banner .hero-banner-main {
    gap: 16px;
  }
}

.t-popup__content {
  background: #ffffffe6;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow:
    3px 3px 0.5px -3.5px #1a1a1a45 inset,
    2px 2px 1px -2px #b3b3b3 inset,
    -2px -2px 1px -2px #b3b3b3 inset,
    0 0 0 0.5px #1a1a1a45 inset;
  border-color: #b3b3b3;
  color: #191a23;
}

@supports (backdrop-filter: blur(1px)) {
  html.performance-high .t-popup__content {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-popup__content {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.t-popup__content .t-dropdown__item--theme-default,
.t-popup__content .t-dropdown__item--theme-default:active {
  color: #191a23;
}

.t-popup__content .t-dropdown__item--theme-default:hover,
.t-popup__content .t-dropdown__item--theme-default:active:hover {
  color: #32e6b9;
  background: transparent;
}

.t-popup__content .t-ripple {
  display: none;
}

.t-popup__content .t-dropdown__item--active,
.t-popup__content .t-dropdown__item--theme-default:active {
  background: transparent;
  color: #32e6b9;
}

.t-popup__content .t-dropdown__item--active:hover,
.t-popup__content .t-dropdown__item--theme-default:active:hover {
  background: transparent;
}

.header-user-dropdown.t-popup__content {
  border: none;
  box-shadow: none;
  border-radius: 2px;
}

.header-user-dropdown.t-popup__content .t-dropdown__menu {
  padding: 8px 1px 1px;
}

.header-user-dropdown.t-popup__content .t-divider {
  border-color: #444;
}

.header-user-dropdown.t-popup__content .t-dropdown__item {
  border-radius: 0;
  padding: 8px 12px;
}

.header-user-dropdown.t-popup__content .t-dropdown__item:hover {
  background: #0000000d;
}

.t-tag.t-tag--success.t-tag--dark {
  background-color: #2ee4a31a;
  color: #2ee4a3;
}

.download-menu-item .menu-arrow {
  opacity: 0;
  transform: translate(-5px);
  transition: transform 0.3s ease-in-out 0s;
}

html.performance-high .download-menu-item .menu-arrow {
  transition: transform 0.3s ease-in-out 0s;
}

html.performance-medium .download-menu-item .menu-arrow {
  transition: transform 0.2s ease-in-out 0s;
}

html.performance-low .download-menu-item .menu-arrow {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .download-menu-item .menu-arrow {
    transition: none;
  }
}

.download-menu-item:hover .menu-arrow {
  opacity: 1;
  transform: translate(0);
}

.home-pricing-section {
  width: 100%;
  padding: 80px 0 40px;
  background: transparent;
}

.home-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-pricing-header {
  text-align: center;
  margin-bottom: 28px;
}

.home-pricing-header .home-pricing-title {
  margin: 0 0 16px;
  color: #000;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.2;
}

.home-pricing-header .home-pricing-subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: #5a5a5a;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.6;
}

.home-pricing-header .home-pricing-shared-note {
  margin: 12px auto 0;
  max-width: 720px;
  color: #0000008c;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  line-height: 1.5;
}

.home-pricing-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.home-pricing-grid > .home-pricing-card {
  min-width: 0;
}

.home-pricing-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-pricing-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-pricing-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: Alimama FangYuanTi VF;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.home-pricing-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 4px 16px #0000000a;
}

.home-pricing-card.is-popular {
  border-color: #32e6b9;
}

.home-pricing-card.is-popular .home-pricing-card__tag {
  background: #32e6b91a;
  color: #1a9e7f;
}

.home-pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: #32e6b9;
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
}

.home-pricing-card__badge:before {
  content: "âœ¦";
  font-size: 10px;
}

.home-pricing-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 2px 10px;
  margin-bottom: 16px;
  background: #0000000d;
  color: #0009;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.home-pricing-card__name {
  margin-bottom: 4px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.home-pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-family: Alimama FangYuanTi VF;
  font-weight: 700;
}

.home-pricing-card__price .price-status {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.home-pricing-card__price .price-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.home-pricing-card__price .price-unit,
.home-pricing-card__price .price-min-purchase {
  color: #0009;
  font-size: 13px;
  font-weight: 400;
}

.home-pricing-card__price .price-min-purchase {
  text-decoration: line-through;
}

.home-pricing-card__desc {
  margin-bottom: 16px;
  color: #000000a6;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  min-height: 40px;
}

.home-pricing-card__btn {
  width: 100%;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.home-pricing-card__btn:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
}

.home-pricing-card.personal .home-pricing-card__btn {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #e5e5e5;
}

.home-pricing-card.personal .home-pricing-card__btn:hover {
  background: #f7f8fa;
  border-color: #d0d0d0;
  transform: translateY(-2px);
}

.home-pricing-card__features {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000000bf;
  font-size: 13px;
  line-height: 20px;
}

.home-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-pricing-card__features li svg {
  flex-shrink: 0;
}

.home-pricing-card__features li.excluded {
  color: #000000bf;
}

.home-pricing-card__features li.has-info {
  position: relative;
}

.home-pricing-card__features li.has-info span {
  flex: 0 0 auto;
}

.home-pricing-card__features li span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-pricing-card__feature-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #00000059;
  transition: color 0.15s;
  font-style: normal;
}

.home-pricing-card__feature-info:hover {
  color: #000000bf;
}

.home-pricing-card__feature-info:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  width: 240px;
  max-width: 78vw;
  padding: 8px 10px;
  border: 1px solid rgba(25, 26, 35, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 6px 16px #191a231f,
    0 3px 6px #191a230f;
  color: #0a0b0f;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 10;
}

.home-pricing-card__feature-info:hover:after {
  opacity: 1;
}

.home-pricing-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-pricing-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.home-pricing-view-all:hover {
  background: #f7f8fa;
}

.home-pricing-view-all:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.home-pricing-view-all__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  padding: 1px;
}

.home-pricing-view-all__avatar img {
  display: block;
}

.home-pricing-view-all__text {
  color: #1a1a1a;
  font-family:
    Alimama ShuHeiTi,
    sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.08px;
  padding: 0 16px 0 4px;
  white-space: nowrap;
}

.home-pricing-view-all .arrow-hover .arrow-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 4px;
  background: #1a1a1a;
}

.home-pricing-view-all .arrow-hover .arrow-icon:before {
  background: #1a1a1a;
}

.home-pricing-view-all .arrow-hover .arrow-icon .arrow-icon-white svg,
.home-pricing-view-all .arrow-hover .arrow-icon .arrow-icon-black svg {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.home-pricing-view-all.arrow-hover-container:hover
  .arrow-hover
  .arrow-icon
  .arrow-icon-white {
  transform: translate(44px, -44px);
}

.home-intl-wrapper {
  background: #f4f5f5;
  border-radius: 24px;
  padding: 48px 32px;
}

.home-billing-toggle-wrapper {
  display: flex;
  justify-content: center;
}

.home-billing-tabs {
  position: relative;
  display: inline-flex;
  gap: 0;
  background: #e8e8e8;
  border-radius: 8px;
  padding: 4px;
}

.home-billing-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 36px;
  min-width: 180px;
  border: none;
  background: transparent;
  color: #999;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
  white-space: nowrap;
}

.home-billing-tab.active,
.home-billing-tab:hover {
  color: #1a1a1a;
}

.home-billing-badge {
  display: inline-flex;
  font-family: Alimama ShuHeiTi;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #c6e6d1;
  color: #25ab52;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  animation: homeBillingBadgePulse 2s ease-in-out infinite;
}

@keyframes homeBillingBadgePulse {
  0%,
  to {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.home-intl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.home-intl-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 24px;
  min-width: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.home-intl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px #00000014;
}

.home-intl-card.is-popular {
  border-color: #32e6b9;
  box-shadow: 0 0 0 1px #32e6b9;
}

.home-intl-card__header {
  margin-bottom: 20px;
}

.home-intl-card__name {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f0f0;
  border-radius: 4px;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

.home-intl-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  font-family: Alimama FangYuanTi VF;
}

.home-intl-card__price-value {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.home-intl-card__price-original {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.home-intl-card__price-unit {
  font-size: 14px;
  color: #666;
}

.home-intl-card__btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #1a1a1a;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-intl-card__btn.primary {
  background: #32e6b9;
  color: #1a1a1a;
}

.home-intl-card__btn.primary:hover {
  background: #28d4a8;
  transform: translateY(-2px);
}

.home-intl-card__btn:not(.primary):hover {
  background: #333;
  transform: translateY(-2px);
}

.home-intl-card__features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.home-intl-card__features-desc {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #32e6b9;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-intl-card__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-intl-card__features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
}

.home-intl-card__features-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #32e6b9;
}

.home-pricing-section.is-international .home-pricing-container {
  max-width: 1180px;
}

.pricing-compatible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #191a23;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 24px;
}

.codebuddy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.codebuddy-link:hover {
  opacity: 0.82;
}

.codebuddy-logo {
  display: block;
  width: auto;
  height: 22px;
}

.codebuddy-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #191a23;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1024px) {
  .home-pricing-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-pricing-section {
    padding: 60px 0 32px;
  }

  .home-pricing-header {
    margin-bottom: 22px;
  }

  .home-pricing-header .home-pricing-title {
    font-size: 28px;
    line-height: 36px;
  }

  .home-pricing-grid.cols-4,
  .home-pricing-grid.cols-3,
  .home-pricing-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .home-intl-wrapper {
    padding: 32px 16px;
  }

  .home-billing-tab {
    padding: 8px 20px;
    min-width: auto;
    font-size: 14px;
  }

  .home-intl-grid {
    grid-template-columns: 1fr;
  }
}

.intl-announcement-promo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding: 12px clamp(16px, 4vw, 24px);
  box-sizing: border-box;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    PingFang SC,
    Segoe UI,
    Roboto,
    sans-serif;
}

.intl-announcement-promo__inner {
  width: min(1200px, 100%);
  min-height: 48px;
  margin: 0 auto;
  padding: 8px 14px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #191a237a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.intl-announcement-promo__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.intl-announcement-promo__title {
  flex: 0 0 auto;
  color: #191a23;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.intl-announcement-promo__desc {
  min-width: 0;
  overflow: hidden;
  color: #191a237a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intl-announcement-promo__desc strong {
  color: #191a23;
  font-weight: 700;
}

.intl-announcement-promo__cta {
  flex: 0 0 auto;
  color: #28b894;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.intl-announcement-promo__cta:hover {
  color: #219679;
}

@media (max-width: 768px) {
  .intl-announcement-promo__inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .intl-announcement-promo__desc {
    white-space: normal;
  }
}

.modes-intro {
  background: #fff;
}

.modes-intro .modes-intro-content {
  background: #f4f5f5;
  padding-top: clamp(60px, 8vw, 120px);
  border-radius: clamp(20px, 5vw, 80px) clamp(20px, 5vw, 80px) 0 0;
}

.modes-intro .modes-intro-header {
  text-align: center;
  margin-bottom: clamp(160px, 5vw, 240px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
}

.modes-intro .modes-intro-header .main-title {
  color: #191a23;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(24px, 5vw, 60px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(28px, 5.5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modes-intro .modes-intro-header .subtitle {
  color: #191a23;
  text-align: center;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(14px, 2.5vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(28px, 5vw, 40px);
}

.modes-intro .scenario-container-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modes-intro .carousel-gallery {
  width: 100%;
  height: clamp(300px, 30vw, 400px);
  position: relative;
  height: 100%;
  background: #fff;
  z-index: 20;
  overflow: hidden;
}

.modes-intro .carousel-gallery .carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.modes-intro .carousel-gallery .gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modes-intro .carousel-gallery .gallery-slide .gallery-content {
  width: 100%;
  height: 100%;
}

.modes-intro
  .carousel-gallery
  .gallery-slide
  .gallery-content
  .simple-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.modes-intro
  .carousel-gallery
  .gallery-slide
  .gallery-content
  .simple-carousel
  .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #666;
  font-size: 16px;
  opacity: 0;
  transition: opacity var(--transition-duration, 0.3s) ease-in-out;
}

.modes-intro
  .carousel-gallery
  .gallery-slide
  .gallery-content
  .simple-carousel
  .carousel-slide.active {
  opacity: 1;
}

.modes-intro .play-controls {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
  padding: 100px 0 60px;
  justify-content: center;
  overflow: hidden;
}

.modes-intro .play-controls .play-button {
  cursor: pointer;
  transition: all var(--transition-duration, 0.3s) ease;
  position: relative;
  display: flex;
  width: clamp(36px, 6vw, 48px);
  height: clamp(36px, 6vw, 48px);
  justify-content: center;
  align-items: center;
  border-radius: clamp(18px, 3vw, 24px);
  background: #e5e5e5;
  border: 2px solid transparent;
}

.modes-intro .play-controls .play-button:hover {
  background: #d0d0d0;
  transform: scale(1.05);
  box-shadow: 0 2px 8px #0000001a;
}

.modes-intro .play-controls .play-button:active {
  transform: scale(0.98);
}

.modes-intro .play-controls .play-button .play-icon {
  color: #191a23;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1px;
  transition: all var(--transition-duration, 0.3s) ease;
  transform: scale(1);
}

.modes-intro .play-controls .play-button.playing .play-icon {
  color: #000;
}

.modes-intro .play-controls .carousel-controls {
  display: flex;
  height: clamp(36px, 6vw, 48px);
  padding: 0 clamp(18px, 3vw, 24px);
  align-items: flex-start;
  gap: clamp(7px, 1.2vw, 10px);
  border-radius: clamp(20px, 3.5vw, 27px);
  background: #e5e5e5;
  align-items: center;
  justify-content: center;
}

.modes-intro .play-controls .carousel-controls .carousel-dots {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 8px);
  background: #e8e8e8;
  border-radius: clamp(2px, 0.4vw, 3px);
  padding: 0 clamp(2px, 0.4vw, 3px);
}

.modes-intro .play-controls .carousel-controls .carousel-dots .carousel-dot {
  width: clamp(7px, 1.2vw, 10px);
  height: clamp(7px, 1.2vw, 10px);
  flex-shrink: 0;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  transition: all var(--transition-duration, 0.3s) ease;
  position: relative;
  overflow: hidden;
}

.modes-intro
  .play-controls
  .carousel-controls
  .carousel-dots
  .carousel-dot:hover {
  transform: scale(1.2);
  background: #333;
}

.modes-intro
  .play-controls
  .carousel-controls
  .carousel-dots
  .carousel-dot.active {
  width: clamp(28px, 4.5vw, 36px);
  height: clamp(7px, 1.2vw, 10px);
  flex-shrink: 0;
  border-radius: clamp(4px, 0.6vw, 5px);
  background: #727272;
  transform: none;
  position: relative;
  overflow: hidden;
}

.modes-intro
  .play-controls
  .carousel-controls
  .carousel-dots
  .carousel-dot.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #000;
  border-radius: 5px;
  width: 0%;
  animation: progressFill var(--carousel-duration, 3s) linear forwards;
  animation-play-state: var(--carousel-play-state, running);
}

.modes-intro .scenario-container {
  background: #fff;
  padding: clamp(20px, 3vw, 40px) 40px clamp(20px, 3vw, 40px)
    clamp(50px, 8vw, 101px);
  position: relative;
}

.modes-intro .scenario-container .scenario-header-images {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: flex;
  row-gap: 4px;
  align-items: flex-end;
  gap: 4px;
  width: clamp(40%, 50%, 60%);
  padding: 0 clamp(30px, 6vw, 101px);
  z-index: 1;
}

.modes-intro .scenario-container .scenario-header-images .header-image-item {
  width: clamp(120px, 15vw, 177px);
  height: clamp(115px, 14.5vw, 170px);
  flex-shrink: 0;
  aspect-ratio: 177/170;
  overflow: hidden;
  border-radius: clamp(8px, 1.5vw, 12px);
  position: relative;
  margin-right: clamp(-30px, -4vw, -50px);
  top: 13px;
}

.modes-intro .scenario-container .scenario-header-images .header-image-item-2 {
  top: 21px;
}

.modes-intro
  .scenario-container
  .scenario-header-images
  .header-image-item:last-child {
  margin-right: 0;
}

.modes-intro
  .scenario-container
  .scenario-header-images
  .header-image-item.small {
  width: clamp(100px, 13vw, 150px);
  height: clamp(94px, 12.5vw, 133px);
}

.modes-intro
  .scenario-container
  .scenario-header-images
  .header-image-item.small
  .header-image {
  object-fit: contain;
}

.modes-intro
  .scenario-container
  .scenario-header-images
  .header-image-item
  .header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.modes-intro .scenario-tabs {
  display: inline-flex;
  justify-content: center;
  margin-bottom: clamp(30px, 5vw, 60px);
  border-radius: clamp(6px, 1.2vw, 11px);
  border: 1px solid rgba(40, 184, 148, 0.1);
  background: #c2c4d333;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: clamp(8px, 1.5vw, 12px);
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
  white-space: nowrap;
}

@supports (backdrop-filter: blur(1px)) {
  html.performance-high .modes-intro .scenario-tabs {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modes-intro .scenario-tabs {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.modes-intro .scenario-tabs .scenario-tab {
  padding: clamp(6px, 1vw, 8px) clamp(21px, 1.75vw, 34.3px);
  cursor: pointer;
  transition: all var(--transition-duration, 0.3s) ease;
  position: relative;
  z-index: 2;
  color: #000;
  text-align: center;
  font-family: Alimama ShuHeiTi;
  font-size: clamp(16px, 2.5vw, 21px);
  font-style: normal;
  line-height: clamp(18px, 2.8vw, 24px);
  border-radius: clamp(3px, 0.5vw, 4px);
  border: 1px solid transparent;
}

.modes-intro .scenario-tabs .scenario-tab.active {
  border: 1px solid rgba(40, 184, 148, 0.1);
  background: #28b894;
  color: #fff;
  font-family: Alimama ShuHeiTi;
  font-size: clamp(16px, 2.5vw, 21px);
  font-style: normal;
  line-height: clamp(18px, 2.8vw, 24px);
}

.modes-intro .scenario-tabs .scenario-tab:hover:not(.active) {
  background: #28b8940a;
}

.modes-intro .scenario-tabs.lang-en .scenario-tab {
  padding: clamp(6px, 1vw, 8px) clamp(10px, 0.9vw, 18px);
}

.modes-intro .scenario-details .scenario-content {
  max-width: clamp(300px, 50vw, 800px);
  margin: 0 auto;
}

.modes-intro .scenario-details .scenario-content .scenario-title {
  color: #191a23;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(24px, 4vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(32px, 5.2vw, 52px);
  margin-bottom: clamp(4px, 0.8vw, 8px);
}

.modes-intro .scenario-details .scenario-content .scenario-description {
  color: #191a23;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(24px, 4vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(32px, 5.2vw, 52px);
}

.modes-intro .scenario-details .scenario-content .recommended-users {
  color: #191a23;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(14px, 2.5vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(28px, 5vw, 40px);
  margin: clamp(10px, 2vw, 20px) 0;
}

.modes-intro .scenario-details .scenario-content .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(20px, 4vw, 40px) 0;
}

.modes-intro .scenario-details .scenario-content .feature-list .feature-item {
  position: relative;
  color: #191a23;
  font-family: Alimama FangYuanTi VF;
  font-size: clamp(12px, 2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(18px, 3vw, 24px);
  margin: clamp(4px, 0.8vw, 8px) 0;
}

@media (max-width: 1024px) {
  .modes-intro .scenario-container-wrapper {
    grid-template-columns: 1fr;
  }

  .modes-intro .scenario-container {
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px);
  }

  .modes-intro .scenario-container .scenario-header-images {
    width: 100%;
    justify-content: center;
  }

  .modes-intro .scenario-tabs {
    justify-content: center;
    overflow-x: visible;
    margin-bottom: clamp(25px, 4vw, 50px);
  }

  .modes-intro .carousel-gallery {
    height: clamp(350px, 35vw, 450px);
  }
}

@media (max-width: 768px) {
  .modes-intro .scenario-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
    padding: clamp(12px, 2vw, 16px);
    gap: clamp(4px, 1vw, 8px);
    margin-bottom: clamp(20px, 3vw, 40px);
  }

  .modes-intro .scenario-tabs .scenario-tab {
    flex-shrink: 0;
    padding: clamp(6px, 1.2vw, 10px) clamp(15px, 2.5vw, 25px);
    white-space: nowrap;
  }

  .modes-intro .carousel-gallery {
    height: clamp(300px, 30vw, 400px);
  }

  .modes-intro .play-controls {
    flex-direction: row;
    gap: clamp(12px, 2vw, 16px);
    padding: clamp(25px, 4vw, 40px) 0;
  }
}

@media (max-width: 480px) {
  .modes-intro .scenario-tabs {
    overflow-x: auto;
    justify-content: center;
    padding: clamp(8px, 1.5vw, 12px);
    gap: clamp(3px, 0.8vw, 6px);
    margin-bottom: clamp(15px, 2.5vw, 30px);
  }

  .modes-intro .scenario-tabs .scenario-tab {
    flex-shrink: 0;
    padding: clamp(4px, 1vw, 8px) clamp(12px, 2.5vw, 20px);
    white-space: nowrap;
  }

  .modes-intro .carousel-gallery {
    height: clamp(250px, 25vw, 350px);
  }

  .modes-intro .play-controls {
    flex-direction: row;
    gap: clamp(10px, 2vw, 16px);
    padding: clamp(20px, 3.5vw, 35px) 0;
  }
}

@keyframes progressFill {
  0% {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.partners-section {
  padding: clamp(40px, 8vw, 80px) 0;
  color: #191a23;
  position: relative;
  background: #f8f9fa;
}

.partners-section .partners-content {
  z-index: 10;
  max-width: clamp(300px, 50vw, 710px);
  position: relative;
  padding: clamp(10px, 2vw, 21.5px) 0;
}

.partners-section .partners-text {
  max-width: clamp(300px, 50vw, 710px);
}

.partners-section .partners-text .title-row {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  margin-bottom: clamp(12px, 2.5vw, 24px);
}

.partners-section .partners-text .brand-logo .brand-text {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 700;
  color: #191a23;
  letter-spacing: -0.5px;
}

.partners-section .partners-text .brand-logo .brand-accent {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 900;
  color: #10b981;
  margin-left: clamp(2px, 0.4vw, 4px);
}

.partners-section .partners-text .section-title {
  color: #191a23;
  font-size: clamp(24px, 5vw, 56px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(28px, 5.5vw, 64px);
  margin: 0;
}

.partners-section .partners-text .section-description {
  color: #d2d3e099;
  font-family: PingFang SC;
  font-size: clamp(12px, 2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(18px, 3vw, 24px);
}

.partners-section .partners-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  flex: 1;
  width: 100%;
  max-width: 100vw;
  padding-left: clamp(10px, 2vw, 20px);
}

.partners-section .partners-grid:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f8f9fa, #f8f9fa00 30% 70%, #f8f9fa);
  pointer-events: none;
  z-index: 5;
}

.partners-section .partners-grid .partners-row {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partners-section .partners-grid .partners-row::-webkit-scrollbar {
  display: none;
}

.partners-section .partners-grid .partners-row-desktop .partner-item {
  padding: clamp(4.8px, 0.96vw, 8px) clamp(9.6px, 2vw, 19.2px);
  margin: 0 clamp(4.8px, 0.96vw, 9.6px);
}

.partners-section
  .partners-grid
  .partners-row-desktop
  .partner-item
  .partner-icon {
  height: clamp(25.6px, 4.8vw, 46px);
}

.partners-section .partners-grid .partner-item {
  background: transparent;
  border-radius: clamp(4px, 0.8vw, 8px);
  padding: clamp(6px, 1.2vw, 10px) clamp(12px, 2.5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 clamp(6px, 1.2vw, 12px);
  transition: all 0.3s ease 0s;
  position: relative;
  flex-shrink: 0;
  width: fit-content;
  color: #191a23;
}

html.performance-high .partners-section .partners-grid .partner-item {
  transition: all 0.3s ease 0s;
}

html.performance-medium .partners-section .partners-grid .partner-item {
  transition: all 0.2s ease 0s;
}

html.performance-low .partners-section .partners-grid .partner-item {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .partners-section .partners-grid .partner-item {
    transition: none;
  }
}

.partners-section .partners-grid .partner-item.underlined .partner-name {
  text-decoration: underline;
  text-decoration-color: #94a3b8;
  text-underline-offset: 4px;
}

.partners-section .partners-grid .partner-item .partner-icon {
  height: clamp(32px, 6vw, 57.6px);
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(7%) sepia(10%) saturate(1069%)
    hue-rotate(201deg) brightness(97%) contrast(95%);
}

.partners-section .partners-grid .partner-item .partner-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1px, 0.2vw, 2px);
}

.partners-section .partners-grid .partner-item .partner-info .partner-name {
  font-size: clamp(10px, 1.8vw, 14px);
  font-weight: 600;
  color: #191a23;
  line-height: 1.2;
}

.partners-section .partners-grid .partner-item .partner-info .partner-subtitle {
  font-size: clamp(8px, 1.2vw, 10px);
  color: #666;
  line-height: 1.2;
  font-weight: 400;
}

.partners-section .partners-static-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.partners-section .partners-static-grid .partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
}

.partners-section .partners-static-grid .partners-row .partner-item {
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease 0s;
  flex-shrink: 0;
  color: #333;
}

html.performance-high
  .partners-section
  .partners-static-grid
  .partners-row
  .partner-item {
  transition: all 0.3s ease 0s;
}

html.performance-medium
  .partners-section
  .partners-static-grid
  .partners-row
  .partner-item {
  transition: all 0.2s ease 0s;
}

html.performance-low
  .partners-section
  .partners-static-grid
  .partners-row
  .partner-item {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .partners-section .partners-static-grid .partners-row .partner-item {
    transition: none;
  }
}

.partners-section
  .partners-static-grid
  .partners-row
  .partner-item
  .partner-icon {
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .partners-section .partners-grid {
    gap: clamp(12px, 2.5vw, 20px);
    padding-left: clamp(8px, 1.5vw, 16px);
  }

  .partners-section .partners-grid:before {
    background: linear-gradient(90deg, #f8f9fa, #f8f9fa00 20% 80%, #f8f9fa);
  }

  .partners-section .partners-grid .partners-row .partner-item {
    margin: 0 clamp(4px, 1vw, 8px);
    padding: clamp(4px, 1vw, 8px) clamp(8px, 2vw, 16px);
  }

  .partners-section .partners-grid .partners-row .partner-item .partner-icon {
    height: clamp(28px, 5vw, 40px);
  }
}

@media (max-width: 480px) {
  .partners-section .partners-grid {
    gap: clamp(8px, 2vw, 16px);
    padding-left: clamp(4px, 1vw, 12px);
  }

  .partners-section .partners-grid:before {
    background: linear-gradient(90deg, #f8f9fa, #f8f9fa00 15% 85%, #f8f9fa);
  }

  .partners-section .partners-grid .partners-row .partner-item {
    margin: 0 clamp(3px, 0.8vw, 6px);
    padding: clamp(3px, 0.8vw, 6px) clamp(6px, 1.5vw, 12px);
  }

  .partners-section .partners-grid .partners-row .partner-item .partner-icon {
    height: clamp(24px, 4vw, 32px);
  }
}

.demo-page {
  color-scheme: light;
  --frame-width: 1024px;
  --frame-height: 768px;
  --sidebar-width: 220px;
  --cb-vscode-editor-background: #ffffff;
  --cb-vscode-sideBar-background: #f3f3f3;
  --cb-vscode-input-background: #ffffff;
  --cb-vscode-foreground: #333333;
  --cb-vscode-descriptionForeground: #717171;
  --cb-vscode-widget-border: #e1e1e1;
  --cb-vscode-panel-border: #e1e1e1;
  --cb-vscode-list-hoverBackground: #f0f0f0;
  --cb-vscode-scrollbarSlider-background: #c1c1c1;
  --cb-vscode-scrollbarSlider-hoverBackground: #a8a8a8;
  --cb-panel-bg-primary: #ffffff;
  --cb-sidebar-background: #f3f3f3;
  --cb-panel-border-color: color-mix(in srgb, #cccccc 40%, transparent);
  --cb-text-primary: #333333;
  --cb-text-secondary: #666666;
  --cb-text-tertiary: #808080;
  --cb-text-quaternary: rgba(0, 0, 0, 0.45);
  --cb-hover-bg: rgba(0, 0, 0, 0.03);
  --cb-bg-primary: rgba(0, 0, 0, 0.05);
  --cb-bg-secondary: #f5f5f5;
  --cb-bg-tertiary: #e8e8e8;
  --cb-user-bubble-bg: rgba(244, 245, 245, 1);
  --cb-stroke-secondary: #d8dee4;
  --cb-input-border-color: rgba(0, 0, 0, 0.15);
  --cb-input-border-primary: #d0d7de;
  --cb-content-background: color-mix(in srgb, #333333 4%, transparent);
  --cb-main-area-background: #ffffff;
  --cb-scrollbar-thumb: rgba(193, 193, 193, 0.4);
  --cb-scrollbar-thumb-hover: rgba(168, 168, 168, 0.7);
  --cb-brand-color: #28b894;
  --cb-error-foreground: #cf222e;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    PingFang SC,
    Microsoft YaHei,
    sans-serif;
  color: var(--cb-text-primary);
  /* background: #fff; */
  display: flex;
  justify-content: center;
  padding: 20px 20px 60px 20px;
  width: 100%;
}

.demo-page *,
.demo-page *:before,
.demo-page *:after {
  box-sizing: border-box;
}
/* 
.demo-page button,
.demo-page textarea {
  font: inherit;
}

.demo-page button {
  -webkit-font-smoothing: antialiased;
} */

.demo-shell-wrapper {
  position: relative;
  width: min(var(--frame-width), 100%);
}

.demo-shell-decoration {
  position: absolute;
  right: clamp(-20px, -1.5vw, -12px);
  bottom: calc(100% - clamp(60px, 7vw, 80px));
  width: clamp(160px, 20vw, 240px);
  height: auto;
  pointer-events: none;
  z-index: 3;
  -webkit-user-select: none;
  user-select: none;
}

.demo-shell {
  width: 100%;
  height: var(--frame-height);
  max-height: min(var(--frame-height), calc(100dvh - 120px));
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  /* background: var(--cb-panel-bg-primary); */
  background: #FAF9F7;
  border: 1px solid var(--cb-panel-border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-lg-offsetx-1, 0) var(--shadow-lg-offsety-1, 24px)
    var(--shadow-lg-blur-1, 48px) var(--shadow-lg-spread-1, -12px)
    var(--tea-shadow-lg-color-1, rgba(0, 0, 0, 0.12));
  position: relative;
      padding-top: 16px;
  z-index: 1;
  
}

.fake-sidebar {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: calc(100% - 28px);
  min-width: 0;
  overflow: hidden;
  background: var(--cb-sidebar-background);
  /* border: 1px solid rgba(0, 0, 0, 0.06); */
  -webkit-user-select: none;
  user-select: none;
  background: #fff;
  border-radius: 16px;
  margin: 12px 0 12px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .02), 0 4px 12px rgba(0, 0, 0, .015);
}

.window-dots {
    position: absolute;
  display: flex;
  gap: 6px;
  height: 14px;
  align-items: center;
  margin: 7px 12px 0;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff5f57;
}

.window-dots span:nth-child(2) {
  background: #ffbd2e;
}

.window-dots span:nth-child(3) {
  background: #28c840;
}

.demo-page .brand-lockup {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin:16px 12px 12px 20px;
  color: #000;
  text-decoration: none;
}

.demo-page .brand-mark {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  border-radius: 7px;
}

.demo-page .brand-lockup strong,
.demo-page .brand-lockup span {
  display: inline;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

.demo-page .nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
  margin-bottom: 8px;
}

.demo-page .nav-item,
.demo-page .task-pill,
.demo-page .mode-button,
.demo-page .model-button,
.demo-page .outputs-title button {
  border: none;
  background: transparent;
  cursor: pointer;
}

.demo-page .nav-item {
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border-radius: 4px;
  color: var(--cb-text-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
  overflow: hidden;
}

.demo-page .nav-item:hover {
  background: var(--cb-hover-bg);
}

.demo-page .nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}

.demo-page .nav-item:hover .nav-icon {
  color: currentColor;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.compact-section {
  margin-top: 0;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 32px;
  padding: 8px 10px 4px;
  color: var(--cb-text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.task-pill {
  position: relative;
  width: calc(100% - 24px);
  min-height: 30px;
  margin: 0 12px 2px;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--cb-text-secondary);
  font-size: 12px;
  line-height: 1.15;
  text-align: left;
  transition: background-color 0.15s ease;
}

.task-pill span {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-pill:hover {
  background: #0f172a0b;
  color: var(--cb-text-primary);
}

.task-pill.active,
.task-pill.active:hover {
  background: var(--cb-bg-primary);
  color: var(--cb-text-primary);
}

.workspace-section {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 12px 12px;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}

.workspace-section:hover {
  scrollbar-color: var(--cb-vscode-scrollbarSlider-background) transparent;
}

.workspace-section .section-label {
  padding-left: 0;
}

.workspace-group {
  margin-bottom: 2px;
}

.workspace-title {
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border-radius: 4px;
  color: var(--cb-text-primary);
  font-size: 14px;
  line-height: 34px;
}

.workspace-title:hover {
  background: var(--cb-hover-bg);
}

.folder-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  opacity: 0.78;
}

.folder-icon:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 14px;
  height: 10px;
  border: 1.5px solid var(--cb-text-secondary);
  border-radius: 3px;
}

.folder-icon:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 7px;
  height: 4px;
  border: 1.5px solid var(--cb-text-secondary);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.workspace-child {
  min-height: 28px;
  display: flex;
  align-items: center;
  margin-left: 34px;
  padding: 4px;
  color: var(--color-text-secondary, #000000b2);
  font-family:
    PingFang SC,
    -apple-system,
    "system-ui",
    Segoe UI,
    Microsoft YaHei,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-main {
  min-width: 0;
  min-height: 0;
  height: calc(100% - 28px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* background: var(--cb-panel-bg-primary); */
  margin: 12px;
    border-radius: 16px;
}

.demo-header {
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  border-bottom: 1px solid var(--cb-panel-border-color);
  background: var(--cb-panel-bg-primary);
  position: relative;
}

.crumb,
.header-badge {
  display: none;
}

.demo-page .demo-header h1 {
  margin: 0;
  color: var(--cb-text-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.conversation-card {
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0 16px;
  color: var(--cb-text-primary);
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}

.conversation-card:hover {
  scrollbar-color: var(--cb-vscode-scrollbarSlider-background) transparent;
}

.conversation-card::-webkit-scrollbar,
.workspace-section::-webkit-scrollbar {
  width: 6px;
}

.conversation-card::-webkit-scrollbar-track,
.workspace-section::-webkit-scrollbar-track {
  background: transparent;
}

.conversation-card::-webkit-scrollbar-thumb,
.workspace-section::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 3px;
}

.conversation-card:hover::-webkit-scrollbar-thumb,
.workspace-section:hover::-webkit-scrollbar-thumb {
  background-color: var(--cb-vscode-scrollbarSlider-background);
}

.user-bubble {
  box-sizing: border-box;
  width: fit-content;
  max-width: min(560px, calc(100% - 88px));
  margin: 32px 16px 24px auto;
  padding: 8px 16px;
  border: 0;
  border-radius: 6px;
  background: var(--cb-user-bubble-bg);
  color: var(--cb-text-primary);
  font-size: 13px;
  line-height: 19px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.assistant-turn {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 12px;
  color: var(--cb-vscode-foreground);
  font-size: 14px;
  line-height: 19px;
}

.assistant-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}

.assistant-avatar {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}

.assistant-avatar-face {
  width: 24px;
  height: 24px;
  display: block;
}

.assistant-head strong {
  color: var(--cb-text-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
}

.assistant-intro,
.assistant-conclusion,
.assistant-interim-message {
  margin: 0 0 12px;
  color: var(--cb-vscode-foreground);
  font-size: 13px;
  line-height: 19px;
}

.assistant-interim-message {
  margin-top: 4px;
}

.user-message-reply {
  margin-top: 24px;
}

.user-message-reply-link {
  color: #1f6feb;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.user-message-reply-link:hover {
  color: #2389ff;
  text-decoration: underline;
}

.tool-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 12px 0;
}

.tool-card {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  column-gap: 8px;
  min-height: 22px;
  padding: 2px 0;
  background: transparent;
  border: 0;
  color: #000000e6;
  font-size: 14px;
  line-height: 20px;
  animation: compact-rise-in 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--delay);
}

.tool-toggle {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: #00000080;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  vertical-align: middle;
}

.tool-toggle:hover {
  background: #0000000d;
  color: #000c;
}

.tool-toggle svg {
  transition: transform 0.2s ease;
}

.tool-card.expanded .tool-toggle svg {
  transform: rotate(90deg);
}

.tool-detail {
  margin-top: 6px;
  padding: 8px 10px;
  background: #00000008;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tool-detail-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-detail-label {
  color: #0009;
  font-size: 12px;
  font-weight: 600;
}

.tool-detail-content {
  margin: 0;
  padding: 6px 8px;
  background: #fff9;
  border-radius: 4px;
  color: #000000d9;
  font-family:
    SFMono-Regular,
    Consolas,
    Liberation Mono,
    Menlo,
    monospace;
  font-size: 12px;
  line-height: 18px;
  white-space: pre-wrap;
  word-break: break-all;
  overflow-x: auto;
}

.tool-detail-error {
  color: var(--cb-error-foreground, #cf222e);
}

.tool-status-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  margin-left: 3px;
  border-radius: 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  background: transparent;
}

.tool-status-icon {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  color: #00000080;
  flex-shrink: 0;
}

.tool-card.done .tool-status-dot {
  border-color: #00000080;
}

.tool-card.failed .tool-status-dot {
  border-color: var(--cb-error-foreground);
}

.tool-card.running .tool-status-dot,
.tool-card.active .tool-status-dot {
  border-color: #00000080;
  animation: subtle-pulse 1.2s ease-in-out infinite;
}

.tool-card.failed .tool-status-icon {
  color: var(--cb-error-foreground);
}

.tool-body {
  min-width: 0;
}

.tool-line {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00000080;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.tool-line span {
  color: #00000080;
  font-weight: 400;
}

.tool-line .tool-line-add {
  color: #28b894;
  font-weight: 500;
}

.tool-line .tool-line-del {
  color: #cf222e;
  font-weight: 500;
}

.tool-line em {
  color: var(--cb-text-secondary);
  font-size: 12px;
  font-style: normal;
  line-height: 18px;
  opacity: 0.72;
}

.tool-args,
.tool-result {
  margin: 0;
  color: var(--cb-text-secondary);
  font-size: 12px;
  line-height: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tool-result {
  color: var(--cb-vscode-foreground);
}

.sequential-block {
  animation: compact-rise-in 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.insight-section {
  margin: 12px 0;
}

.insight-section h2 {
  margin: 0 0 8px;
  color: var(--cb-text-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
}

.insight-section ol,
.insight-section .insight-list {
  margin: 0;
  padding-left: 18px;
  color: var(--cb-vscode-foreground);
  font-size: 13px;
  line-height: 22px;
}

.insight-section .insight-list {
  list-style: none;
  padding-left: 0;
}

.insight-section .insight-list li {
  position: relative;
  padding-left: 14px;
  color: #000000e6;
}

.insight-section .insight-list li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000000d9;
}

.assistant-closing-note {
  margin: 12px 0 0;
  color: var(--cb-vscode-foreground);
  font-size: 13px;
  line-height: 22px;
}

.insight-group {
  margin-top: 8px;
}

.insight-group:first-child {
  margin-top: 0;
}

.insight-subhead {
  margin: 12px 0 8px;
  color: var(--cb-text-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
}

.insight-group:first-child .insight-subhead {
  margin-top: 0;
}

.insight-highlight-key {
  color: #0d0d0d;
  font-weight: 600;
}

.outputs-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.artifact-slot-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.artifact-slot-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.artifact-slot-panel__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d0d0d;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.artifact-slot-panel__title-text {
  color: #0d0d0d;
  font-weight: 600;
}

.artifact-slot-panel__title-count {
  color: #0d0d0d99;
  font-weight: 400;
}

.artifact-slot-panel__title-stats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.artifact-slot-panel__title--files {
  color: #0d0d0d;
}

.artifact-slot-panel__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  overflow: hidden;
}

.artifact-slot-panel__item,
.artifact-slot-panel__more {
  height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cb-panel-border-color, #e5e5e5);
  border-radius: 8px;
  background: transparent;
  color: #0d0d0d;
  cursor: pointer;
  font: inherit;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.artifact-slot-panel__item {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  gap: 7px;
  padding: 0 11px 0 9px;
}

.artifact-slot-panel__item--file {
  background: color-mix(
    in srgb,
    var(--cb-text-primary, #333333) 3%,
    transparent
  );
}

.artifact-slot-panel__item--change {
  flex: 0 0 auto;
  max-width: 100%;
  height: 20px;
  border-radius: 4px;
  font-size: 10px;
  padding: 0 2px;
  gap: 2px;
}

.artifact-slot-panel__item--change .file-type {
  width: 12px;
  height: 12px;
}

.artifact-slot-panel__more {
  font-size: 12px !important;
}

.artifact-slot-panel__item:hover,
.artifact-slot-panel__more:hover {
  border-color: color-mix(
    in srgb,
    var(--cb-text-secondary, #666666) 28%,
    transparent
  );
  background: var(--cb-hover-bg, rgba(0, 0, 0, 0.05));
}

.artifact-slot-panel__item-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.artifact-slot-panel__item-title {
  min-width: 0;
  overflow: hidden;
  color: #0d0d0d;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artifact-slot-panel__item-stats {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 4px;
  font-size: 12px;
  line-height: 18px;
}

.stats-add {
  color: #28b894;
  font-weight: 500;
}

.stats-del {
  color: #cf222e;
  font-weight: 500;
}

.artifact-slot-panel__more {
  flex: 0 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #2d69ace6;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.artifact-slot-panel__more:hover {
  color: #2d69ac;
  background: transparent;
  border: none;
}

.artifact-slot-panel__more--inline {
  margin-left: 4px;
}

.artifact-slot-panel__more-arrow {
  font-size: 12px;
  line-height: 1;
}

.file-type {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

@font-face {
  font-family: seti;
  src: url(./seti-54p1M4PM.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.icon-fontstyle {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.icon-fontstyle:before {
  font-family: seti;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  font-size: 16px;
  position: relative;
  vertical-align: 0;
}

.icon-default:before {
  content: "î€£";
}

.icon-html:before {
  content: "îˆ";
}

.icon-css:before {
  content: "î€";
}

.icon-js:before,
.icon-javascript:before {
  content: "î‘";
}

.icon-markdown:before,
.icon-md:before {
  content: "î ";
}

.icon-typescript:before {
  content: "î‚™";
}

.icon-typescriptreact:before {
  content: "î½";
}

.icon-json:before {
  content: "î";
}

.icon-fontstyle.icon-html {
  color: #e44d26;
}

.icon-fontstyle.icon-css {
  color: #519aba;
}

.icon-fontstyle.icon-js {
  color: #cbcb41;
}

.icon-fontstyle.icon-markdown,
.icon-fontstyle.icon-md,
.icon-fontstyle.icon-typescript,
.icon-fontstyle.icon-typescriptreact {
  color: #519aba;
}

.icon-fontstyle.icon-json {
  color: #cbcb41;
}

.meta-folds-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 12px 0;
}

.meta-fold {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  background: transparent;
}

.meta-fold-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  color: var(--cb-text-secondary, #666666);
  font-size: 12px;
  line-height: 18px;
  transition: color 0.15s ease;
}

.meta-fold-head:hover {
  color: var(--cb-text-primary, #333333);
}

.meta-fold-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.meta-fold-arrow svg {
  width: 12px;
  height: 12px;
}

.meta-fold-expanded .meta-fold-arrow {
  transform: rotate(180deg);
}

.meta-fold-segment {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.meta-fold-label {
  color: inherit;
  font-size: 12px;
  line-height: 18px;
}

.meta-fold-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--cb-bg-tertiary, #e8e8e8);
  color: var(--cb-text-secondary, #666666);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.meta-fold-separator {
  color: var(--cb-text-quaternary, rgba(0, 0, 0, 0.45));
  font-size: 12px;
  line-height: 18px;
}

.meta-fold-body {
  padding: 4px 0 4px 20px;
  animation: compact-rise-in 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.meta-fold-tools {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-fold-tool-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  color: var(--cb-text-secondary, #666666);
  font-size: 12px;
  line-height: 18px;
}

.meta-fold-tool-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cb-text-quaternary, rgba(0, 0, 0, 0.45));
  flex-shrink: 0;
}

.meta-fold-tool-name {
  color: inherit;
}

.assistant-message-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 4px 0;
  opacity: 1;
}

.toolbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--cb-text-quaternary, rgba(0, 0, 0, 0.45));
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.toolbar-btn:hover {
  background: var(--cb-hover-bg, rgba(0, 0, 0, 0.03));
  color: var(--cb-text-secondary, #666666);
}

.toolbar-btn svg {
  width: 16px;
  height: 16px;
}

.toolbar-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.toolbar-more {
  display: flex;
}

.fake-composer {
  flex-shrink: 0;
  min-height: fit-content;
  padding: 16px;
  background: var(--cb-panel-bg-primary);
  z-index: 2;
}

.composer-box {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 122px;
  padding: 4px;
  border-radius: 18px;
  background: var(--cb-content-background);
  box-sizing: border-box;
}

.attach-button {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8px;
  color: var(--cb-text-secondary);
  font-size: 18px;
  line-height: 1;
}

.composer-box textarea {
  width: 100%;
  min-height: 54px;
  max-height: 120px;
  resize: none;
  border: 0;
  outline: 0;
  border-radius: 16px;
  padding: 12px;
  color: var(--cb-text-primary);
  background: var(--cb-main-area-background);
  font-size: 13px;
  line-height: 15px;
  font-family: inherit;
}

.composer-box textarea::placeholder {
  color: color-mix(in srgb, var(--cb-text-primary) 50%, transparent);
}

.composer-toolbar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px 4px;
}

.mode-button,
.model-button {
  height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  color: var(--cb-input-button-foreground, #333333);
  background: transparent;
  font-size: 12px;
  line-height: 24px;
}

.mode-button:hover,
.model-button:hover {
  background: var(--cb-icon-button-hover-background, rgba(0, 0, 0, 0.05));
}

.mode-button:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 5px;
  border: 1.5px solid var(--cb-text-secondary);
  border-radius: 3px;
}

.model-button:before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background: #007acc;
}

.send-button {
  width: 28px;
  height: 28px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--cb-input-button-background, #d4d4d4);
  color: #fff;
  cursor: not-allowed;
}

@keyframes compact-rise-in {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtle-pulse {
  0%,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

.demo-page .brand-logo {
  display: block;
  height: 22px;
  width: auto;
}

.conversation-list-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
  margin-bottom: 8px;
}

.demo-page .conversation-list-tab-button {
  width: 100%;
  height: 34px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #3A3A3A;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  cursor: pointer;
  font-family:
    PingFang SC,
    -apple-system,
    "system-ui",
    Segoe UI,
    Microsoft YaHei,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  overflow: hidden;
  border-radius: 8px;
}
.demo-page divider{
    border-top: 1px solid rgba(0,0,0,.06);
    margin:12px 0 8px;
}
.conversation-list-tab-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.conversation-list-tab-button > span:first-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.conversation-list-tab-button-box:hover,
.conversation-list-tab-row:hover {
    background: #f1f0ef;
}

.conversation-list-tab-button-box.active,
.conversation-list-tab-row.active {
        background: #f5f4f2;
  color: #1A1A1A;
  font-weight: 500;
}

.conversation-list-tab-row {
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.conversation-list-tab-row .conversation-list-tab-button {
  flex: 1;
  min-width: 0;
}

.conversation-list-tab-actions {
  display: none;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  padding-right: 4px;
}

.conversation-list-tab-row:hover .conversation-list-tab-actions,
.conversation-list-tab-row.active .conversation-list-tab-actions {
  display: flex;
}

.conversation-list-tab-action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--cb-text-secondary, #858699);
  cursor: pointer;
  padding: 0;
}

.conversation-list-tab-action-button svg {
  width: 16px;
  height: 16px;
}

.conversation-list-tab-action-button:hover {
  background: var(--cb-hover-bg, rgba(0, 0, 0, 0.03));
  color: var(--cb-text-primary, #d2d3e0);
}

.conversation-list-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 12px;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}

.conversation-list-content:hover {
  scrollbar-color: var(--cb-vscode-scrollbarSlider-background) transparent;
}

.conversation-section:not(:first-child) {
  margin-top: 4px;
}

.conversation-section-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 10px 4px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.conversation-section-label:hover .conversation-section-chevron,
.conversation-section-label:hover .conversation-section-add-btn {
  opacity: 1;
  visibility: visible;
}

.conversation-section-label-text {
  font-family:
    PingFang SC,
    -apple-system,
    "system-ui",
    Segoe UI,
    Microsoft YaHei,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #0000004d;
}

.conversation-section-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--cb-text-secondary, #858699);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.2s ease,
    opacity 0.15s ease;
}

.conversation-section-chevron svg {
  width: 12px;
  height: 12px;
}

.conversation-section-chevron:not(.conversation-section-chevron-expanded) {
  transform: rotate(-90deg);
}

.conversation-section-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: auto;
  cursor: pointer;
  color: var(--cb-text-secondary, #858699);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.15s ease,
    color 0.15s ease;
}

.conversation-section-add-btn svg {
  width: 16px;
  height: 16px;
}

.conversation-section-add-btn:hover {
  color: var(--cb-text-primary, #e0e0e6);
}

.conversation-section-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.agent-card {
  width: 100%;
  min-height: 30px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin-bottom: 2px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--cb-text-primary, #1f2329);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease;
}

.agent-card:hover,
.agent-card-selected {
  background: var(--cb-bg-primary, rgba(0, 0, 0, 0.05));
}

.agent-card-status {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-text-secondary, #858699);
}

.agent-card-status svg {
  width: 14px;
  height: 14px;
}

.agent-card-title {
  min-width: 0;
  overflow: hidden;
  color: var(--cb-text-primary, #1f2329);
  font-family:
    PingFang SC,
    -apple-system,
    "system-ui",
    Segoe UI,
    Microsoft YaHei,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.agent-card-time {
  color: var(--cb-text-secondary, #858699);
  font-size: 10px;
  line-height: 1.1;
  opacity: 0.68;
  white-space: nowrap;
}

.agent-card-more {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-text-secondary, #858699);
  opacity: 0;
}

.agent-card:hover .agent-card-more {
  opacity: 1;
}

.agent-card-more svg {
  width: 16px;
  height: 16px;
}

.workspace-drag-item {
  position: relative;
  border-radius: 6px;
}

.collapsible-section-header {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
}

.collapsible-section-header:hover {
  background: var(--cb-hover-bg, rgba(0, 0, 0, 0.03));
}

.collapsible-section-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 8px;
}

.collapsible-section-title > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.collapsible-section-label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--color-text-secondary, #000000b2);
  font-family:
    PingFang SC,
    -apple-system,
    "system-ui",
    Segoe UI,
    Microsoft YaHei,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.collapsible-section-chevron {
  width: 16px;
  height: 16px;
  display: inline-flex;
  color: var(--cb-text-secondary, #858699);
}

.collapsible-section-chevron svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1080px) {
  .demo-page {
    --frame-width: 100%;
    padding: 40px 16px;
  }
}

.mobile-task-menu {
  position: relative;
  display: none;
}

.mobile-task-menu-trigger {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--cb-text-primary);
  cursor: pointer;
  transition: background 0.15s;
}

.mobile-task-menu-trigger:hover {
  background: var(--cb-hover-bg);
}

.mobile-task-menu-popover {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  width: 280px;
  max-width: calc(100vw - 32px);
  padding: 6px;
  border-radius: 10px;
  background: var(--cb-panel-bg-primary);
  border: 1px solid var(--cb-panel-border-color);
  box-shadow: 0 12px 32px #0000001f;
  animation: mobile-task-menu-fade 0.15s ease-out;
}

@keyframes mobile-task-menu-fade {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-task-menu-header {
  padding: 6px 10px 8px;
}

.mobile-task-menu-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--cb-text-tertiary);
}

.mobile-task-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 320px;
  overflow-y: auto;
}

.mobile-task-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--cb-text-primary);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.mobile-task-menu-item:hover {
  background: var(--cb-hover-bg);
}

.mobile-task-menu-item-active,
.mobile-task-menu-item-active:hover {
  background: var(--cb-bg-secondary);
}

.mobile-task-menu-item-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-text-tertiary);
}

.mobile-task-menu-item-active .mobile-task-menu-item-icon {
  color: var(--cb-brand-color);
}

.mobile-task-menu-item-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mobile-task-menu-item-time {
  flex-shrink: 0;
  color: var(--cb-text-tertiary);
  font-size: 11px;
}

.demo-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.demo-header-title-wrap {
  min-width: 0;
}

@media (max-width: 860px) {
  .demo-page {
    --sidebar-width: 0px;
    --frame-height: 820px;
    padding: 32px 12px;
  }

  .demo-shell {
    grid-template-columns: 1fr;
    max-height: var(--frame-height);
  }

  .conversation-card {
    overscroll-behavior: auto;
  }

  .demo-shell-decoration {
    width: 160px;
    right: -16px;
    bottom: calc(100% - 60px);
  }

  .fake-sidebar {
    display: none;
  }

  .assistant-turn {
    max-width: none;
  }

  .user-bubble {
    max-width: calc(100% - 32px);
  }

  .mobile-task-menu {
    display: inline-block;
  }

  .composer-input-bottom {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .composer-selector,
  .composer-actions {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

@media (max-width: 480px) {
  .demo-page {
    --frame-height: 760px;
    padding: 24px 8px;
  }

  .demo-shell {
    border-radius: 8px;
  }

  .demo-shell-decoration {
    display: none;
  }
}

.composer-content-real {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  background: var(--cb-content-background, #252526);
  border-radius: 18px;
  box-sizing: border-box;
}

.composer-disclaimer {
  padding: 6px 4px 2px;
  color: var(--cb-text-tertiary);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

._topArea_1t0vr_27 {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -8px;
  padding-left: 12px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

._topArea_1t0vr_27 [class*="icon"]:hover {
  background-color: var(--cb-main-area-background, #f5f5f5);
  border-radius: 50%;
}

._svg_1t0vr_49 svg {
  width: 14px;
}

.composer-space-between,
.composer-input-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.composer-top-icons,
.composer-selector,
.composer-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.composer-selector {
  min-width: 0;
  flex-wrap: wrap;
}

.composer-actions {
  flex-shrink: 0;
}

.composer-icon-button,
.voice-mic-trigger,
.send-icon-disabled,
.composer-icon-button._medium_f5l3c_22,
.send-icon-disabled._medium_f5l3c_22,
.composer-icon-button._icon_f5l3c_1,
.send-icon-disabled._icon_f5l3c_1 {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  cursor: pointer;
  color: var(--cb-input-button-foreground, #d2d3e0);
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.composer-icon-button:hover,
.voice-mic-trigger:hover {
  background-color: var(--cb-icon-button-hover-background, rgba(0, 0, 0, 0.06));
}

.composer-main-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--cb-main-area-background, #f5f5f5);
}

.composer-editable-wrap {
  position: relative;
  z-index: 30;
}

.composer-editable {
  position: relative;
  min-height: 40px;
  max-height: 40px;
  height: 40px;
  outline: none;
  color: var(--cb-text-primary, #d2d3e0);
  font-size: 13px;
  line-height: 15px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  overflow-y: auto;
}

.composer-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  display: block;
  opacity: 0.333;
  color: var(--cb-text-primary, #d2d3e0);
  font-size: 13px;
  line-height: 15px;
  -webkit-user-select: none;
  user-select: none;
}

.composer-input-bottom {
  gap: 8px;
  min-height: 32px;
}

.mode-button-real {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  height: 24px;
  padding: 4px 8px;
  border: none;
  border-radius: 3px;
  background: var(--cb-gray-color, rgba(204, 204, 204, 0.1));
  color: var(--cb-text-primary, #ebebef);
  font-size: 12px;
  line-height: 20px;
  cursor: pointer;
  outline: none;
  max-width: 140px;
  overflow: hidden;
  transition: all 0.2s;
}

.model-button-real {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
  padding: 4px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--chat-input-area-header-font-color, #333);
  font-size: 12px;
  cursor: pointer;
  outline: none;
  text-wrap: nowrap;
  min-width: 0;
}

.model-button-real:hover {
  background-color: var(--cb-gray-color, rgba(204, 204, 204, 0.1));
}

.connector-center__btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  border-radius: 4px;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.connector-center__btn:hover {
  background-color: var(--cb-icon-button-hover-background, rgba(0, 0, 0, 0.06));
}

.mode-button-left {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.model-button-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-size: 12px;
  overflow: hidden;
}

.model-button-inner > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mode-button-real > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.model-button-real > svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.connector-icon {
  width: 16px;
  height: 16px;
}

.send-icon-disabled {
  background-color: var(--cb-gray-color, rgba(204, 204, 204, 0.1));
  color: var(--cb-input-button-foreground, #d2d3e0);
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.collapsible-section-chevron {
  transition: transform 0.2s ease;
}

.collapsible-section-chevron:not(.collapsible-section-chevron-expanded) {
  transform: rotate(-90deg);
}

.conversation-list-content {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

.composer-dropdown-root {
  position: relative;
  height: 24px;
  display: inline-flex;
}

.model-dropdown-root {
  position: relative;
  display: flex;
  min-width: 0;
  color: var(--cb-input-foreground, #d2d3e0);
}

.composer-dropdown-menu,
.model-popover {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 1000;
  min-width: 148px;
  padding: 4px;
  border: 1px solid var(--cb-panel-border-color, #e5e5e5);
  border-radius: 8px;
  background: var(--cb-popover-background, #ffffff);
  box-shadow: 0 8px 24px #0000001f;
}

.model-popover {
  width: 236px;
  min-width: 236px;
  bottom: calc(100% + 10px);
}

._viewport_l7hk5_41,
._list_19dy6_18 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

._item_l7hk5_46,
._item_19dy6_31 {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--cb-text-primary, #333333);
  cursor: pointer;
  text-align: left;
}

._dropdownItemWrapper_1lgic_63 {
  width: 100%;
}

._dropdownItem_1lgic_63 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 13px;
}

._dropdownItem_1lgic_63:hover,
._dropdownItem_1lgic_63._selected_1lgic_88,
._item_19dy6_31:hover,
._item_19dy6_31._selected_1m79j_196 {
  background: var(--cb-hover-bg, rgba(0, 0, 0, 0.04));
}

._dropdownItemLeft_1lgic_95,
._dropdownItemRight_1lgic_108 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

._checkIcon_1lgic_140,
._checkIcon_1m79j_309,
._infoIcon_1lgic_175 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-text-secondary, #666666);
}

._groupLabel_1m79j_35 {
  padding: 6px 8px 4px;
  color: var(--cb-text-secondary, #666666);
  font-size: 12px;
  line-height: 16px;
}

._modelItem_1m79j_186 {
  min-height: 38px;
  border-radius: 6px;
}

._modelContent_1m79j_222 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  padding: 4px 8px;
}

._modelInfo_1m79j_229 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

._modelIcon_1m79j_65 {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

._modelText_1m79j_266 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

._modelName_1m79j_193 {
  overflow: hidden;
  color: var(--cb-text-primary, #333333);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

._modelCredits_1m79j_285 {
  color: var(--cb-text-secondary, #666666);
  opacity: 0.72;
  font-size: 11px;
  white-space: nowrap;
}

.model-thinking-icon {
  display: inline-flex;
  align-items: center;
  color: var(--cb-text-secondary, #666666);
  opacity: 0.6;
}

._modelActions_1m79j_318 {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.model-avatar-image {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.model-logo {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.model-logo-glm {
  background: #000;
}

.model-logo-deepseek {
  background: #3970fb;
}

.send-icon-active {
  background: var(--cb-button-primary, #6c4dff) !important;
  color: var(--cb-button-primary-foreground, #ffffff) !important;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto !important;
}

.composer-dropdown-menu {
  overflow: visible;
}

._dropdownItemWrapper_1lgic_63 {
  position: relative;
}

._modeIconWrapper_1lgic_37 {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cb-text-secondary, #666666);
}

._modeIconWrapper_1lgic_37 svg {
  width: 100%;
  height: 100%;
}

._currentModeLabel_1lgic_51 {
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.mode-info-trigger {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  color: color-mix(in srgb, var(--cb-text-secondary, #666666) 62%, transparent);
}

._dropdownItem_1lgic_63:hover .mode-info-trigger,
.mode-info-trigger:hover {
  color: #8a8a8a;
}

.mode-info-trigger:hover {
  background: #0000000a;
  border: 0;
  outline: none;
}

.mode-info-trigger:focus,
.mode-info-trigger:focus-visible,
._infoIcon_1lgic_175:focus,
._infoIcon_1lgic_175:focus-visible {
  border: 0;
  outline: none;
  box-shadow: none;
}

.mode-help-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: -8px;
  z-index: 1200;
  width: 218px;
  display: none;
  flex-direction: column;
  border: 1px solid var(--cb-panel-border-color, #d8d8d8);
  border-radius: 6px;
  background: var(--cb-popover-background, #ffffff);
  color: var(--cb-text-primary, #333333);
  box-shadow: 0 2px 8px #00000014;
  overflow: hidden;
  pointer-events: none;
  text-align: left;
}

.mode-info-trigger:hover .mode-help-tooltip {
  display: flex;
}

.mode-help-tooltip strong {
  padding: 10px 16px 4px;
  color: var(--cb-text-primary, #333333);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

.mode-help-description {
  padding: 0 16px 10px;
  color: var(--cb-text-secondary, #666666);
  font-size: 13px;
  line-height: 20px;
  white-space: normal;
}

.mode-help-tools {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 16px 10px;
  border-top: 1px solid var(--cb-panel-border-color, #d8d8d8);
  color: var(--cb-text-secondary, #666666);
  font-size: 13px;
  line-height: 20px;
}

.mode-help-tools span {
  white-space: nowrap;
}

.mode-help-tools em {
  color: var(--cb-text-primary, #333333);
  font-style: normal;
}

.model-popover {
  padding: 7px 8px;
  overflow: hidden;
}

._modelListContainer_1m79j_13 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

._modelContent_1m79j_222 {
  width: 100%;
  padding: 4px 10px;
}

._modelInfo_1m79j_229 {
  flex: 1 1 auto;
}

._modelIcon_1m79j_65 svg,
._modelIcon_1m79j_65 img {
  width: 16px;
  height: 16px;
  display: block;
}

.model-option-icon {
  object-fit: contain;
}

._modelText_1m79j_266 {
  flex: 1 1 auto;
  overflow: hidden;
}

._modelName_1m79j_193 {
  flex: 0 1 auto;
  font-size: 13px;
  line-height: 20px;
}

.model-thinking-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

._modelCredits_1m79j_285 {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 20px;
}

._modelActions_1m79j_318 {
  width: 18px;
  justify-content: flex-end;
  margin-left: auto;
  color: var(--cb-text-secondary, #666666);
}

.model-popover-intl {
  width: 160px;
  min-width: 160px;
  padding: 8px 10px;
  border-radius: 8px;
}

.model-popover-intl ._modelListContainer_1m79j_13 {
  gap: 4px;
}

.model-popover-intl ._modelItem_1m79j_186 {
  min-height: 32px;
}

.model-popover-intl ._item_19dy6_31._selected_1m79j_196 {
  background: transparent;
}

.model-popover-intl ._item_19dy6_31:hover {
  background: var(--cb-hover-bg, rgba(0, 0, 0, 0.04));
}

.model-popover-intl ._modelContent_1m79j_222 {
  min-height: 32px;
  padding: 0 6px;
}

.model-popover-intl ._modelInfo_1m79j_229 {
  gap: 8px;
}

.model-popover-intl ._modelIcon_1m79j_65,
.model-popover-intl ._modelIcon_1m79j_65 img {
  width: 14px;
  height: 14px;
}

.model-popover-intl ._modelName_1m79j_193 {
  color: var(--cb-text-primary, #333333);
  font-size: 13px;
  line-height: 20px;
}

.model-selected-check {
  flex: 0 0 auto;
  color: #00a870;
}

@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000);
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translateZ(0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-progressbar {
  background: #00000040;
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.testimonials-section {
  background: #f8f9fa;
  color: #191a23;
  padding: 10px 0;
}

.testimonials-section .hero-container {
  padding: 0;
  max-width: unset;
}

.testimonials-section .testimonials-header {
  text-align: center;
  margin-bottom: 100px;
}

.testimonials-section .testimonials-header .main-title,
.testimonials-section .testimonials-header .subtitle {
  color: #191a23;
  text-align: center;
  font-family: Alimama FangYuanTi VF;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}

.testimonials-section .testimonials-header .description {
  color: #555;
  text-align: center;
  font-family: Alimama FangYuanTi VF;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-top: 20px;
  margin-bottom: 80px;
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-by-label {
  color: #999;
  text-align: center;
  font-family: Alimama ShuHeiTi;
  font-size: 18.638px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.87px;
  margin-bottom: 16px;
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  position: relative;
  padding: 3px;
}

html.performance-high
  .testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar {
  transition: all 0.3s ease 0s;
}

html.performance-medium
  .testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar {
  transition: all 0.2s ease 0s;
}

html.performance-low
  .testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-section
    .testimonials-header
    .trusted-by-section
    .trusted-avatars
    .trusted-avatar {
    transition: none;
  }
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar:hover {
  border-color: #6c4dff;
  transform: scale(1.1);
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar.active {
  border-color: #28b894;
  box-shadow: 0 0 0 4px #28b89466;
  animation: activePulse 0.6s ease-out;
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials-section
  .testimonials-header
  .trusted-by-section
  .trusted-avatars
  .trusted-avatar-name {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%);
  margin-top: 8px;
  border-radius: 4px;
  background: #1f1f1f;
  color: #efeeec;
  text-align: center;
  font-family: Alimama ShuHeiTi;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  display: inline-flex;
  padding: 4.26px 14.75px 6.74px 14.25px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  z-index: 10;
}

.testimonials-cards .testimonials-swiper {
  padding: 20px 0 60px;
  width: 100%;
}

.testimonials-cards .testimonials-swiper .testimonial-slide {
  width: clamp(280px, 35vw, 446.31px);
  height: clamp(320px, 40vw, 428.83px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1) !important;
  transition: transform 0.3s ease 0s;
}

html.performance-high
  .testimonials-cards
  .testimonials-swiper
  .testimonial-slide {
  transition: transform 0.3s ease 0s;
}

html.performance-medium
  .testimonials-cards
  .testimonials-swiper
  .testimonial-slide {
  transition: transform 0.2s ease 0s;
}

html.performance-low
  .testimonials-cards
  .testimonials-swiper
  .testimonial-slide {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-cards .testimonials-swiper .testimonial-slide {
    transition: none;
  }
}

.testimonials-cards .testimonials-swiper .testimonial-slide.swiper-slide-active,
.testimonials-cards .testimonials-swiper .testimonial-slide.swiper-slide-next,
.testimonials-cards .testimonials-swiper .testimonial-slide.swiper-slide-prev {
  transform: scale(1) !important;
}

.testimonials-cards .testimonial-card {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

html.performance-high .testimonials-cards .testimonial-card {
  transition: all 0.3s ease 0s;
}

html.performance-medium .testimonials-cards .testimonial-card {
  transition: all 0.2s ease 0s;
}

html.performance-low .testimonials-cards .testimonial-card {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-cards .testimonial-card {
    transition: none;
  }
}

.testimonials-cards .testimonial-card.active {
  border-color: #28b894;
}

.testimonials-cards .testimonial-card .testimonial-content {
  flex: 1;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonials-cards .testimonial-card .testimonial-content .testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #191a23;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonials-cards .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonials-cards .testimonial-card .testimonial-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.testimonials-cards
  .testimonial-card
  .testimonial-author
  .author-info
  .author-name {
  font-size: 16px;
  font-weight: 600;
  color: #191a23;
  margin: 0 0 5px;
}

.testimonials-cards
  .testimonial-card
  .testimonial-author
  .author-info
  .author-role {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials-cards .swiper-button-next,
.testimonials-cards .swiper-button-prev {
  color: #6c4dff !important;
  background: #fffc;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
}

.testimonials-cards .swiper-button-next:after,
.testimonials-cards .swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: 700;
}

.testimonials-cards .swiper-button-next:hover,
.testimonials-cards .swiper-button-prev:hover {
  background: #6c4dff33;
  transform: scale(1.1);
}

.testimonials-cards .swiper-button-next {
  right: 20px !important;
}

.testimonials-cards .swiper-button-prev {
  left: 20px !important;
}

.testimonials-cards .swiper-pagination {
  bottom: 0 !important;
}

.testimonials-cards .swiper-pagination .swiper-pagination-bullet {
  background: #0003 !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
}

.testimonials-cards
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6c4dff !important;
  transform: scale(1.2);
}

@keyframes activePulse {
  0% {
    box-shadow: 0 0 #28b894b3;
  }

  50% {
    box-shadow: 0 0 0 10px #28b8944d;
  }

  to {
    box-shadow: 0 0 #28b89400;
  }
}

@keyframes nameFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .testimonials-section .testimonials-header .main-title {
    font-size: 48px;
  }

  .testimonials-section .testimonials-header .subtitle {
    font-size: 28px;
  }

  .testimonials-section
    .testimonials-cards
    .testimonials-scroll
    .testimonial-card {
    min-width: 350px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-section .testimonials-header {
    margin-bottom: 60px;
  }

  .testimonials-section .testimonials-header .main-title {
    font-size: 36px;
  }

  .testimonials-section .testimonials-header .subtitle {
    font-size: 24px;
  }

  .testimonials-section .testimonials-header .description {
    font-size: 16px;
  }

  .testimonials-section .testimonials-cards .testimonials-scroll {
    gap: 20px;
  }

  .testimonials-section
    .testimonials-cards
    .testimonials-scroll
    .testimonial-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-section .testimonials-header .main-title {
    font-size: 28px;
  }

  .testimonials-section .testimonials-header .subtitle {
    font-size: 20px;
  }

  .testimonials-section
    .testimonials-cards
    .testimonials-scroll
    .testimonial-card {
    padding: 15px;
  }
}

/* Tab 选项卡面板切换 */
.demo-page .demo-panels {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.demo-page .demo-panel {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.demo-page .demo-panel.active {
  display: flex;
}

/* ===== 系统集成折叠菜单 ===== */
.ia-submenu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ia-submenu-toggle {
  position: relative;
}

.ia-submenu-chevron {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s ease;
  color: #9a9a9a;
}

.ia-submenu-wrapper.is-expanded .ia-submenu-chevron {
  transform: rotate(180deg);
}

.ia-submenu-items {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding-left: 14px;
  /* border-left: 1px solid rgba(0,0,0,.06); */
  margin-left: 9px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.ia-submenu-wrapper.is-expanded .ia-submenu-items {
  display: flex;
}

.ia-submenu-item {
  width: 100%;
  height: 34px !important;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #3A3A3A;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  cursor: pointer;
  font-family: PingFang SC, -apple-system, "system-ui", Segoe UI, Microsoft YaHei, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  overflow: hidden;
  transition: background 0.15s ease, color 0.15s ease;
}

.ia-submenu-item svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
}

.ia-submenu-item:hover {
  background: #f1f0ef;
}

.ia-submenu-item.active {
  background: #f1f0ef;
  color: #1A1A1A;
  font-weight: 500;
}

.ia-submenu-item.active .nav-icon {
  color: #1A1A1A;
}

/* 当子项激活时，父级也高亮 */
.ia-submenu-wrapper.has-active-child > .ia-submenu-toggle {
  background: transparent;
  color: #1A1A1A;
  font-weight: 500;
}

.ia-submenu-wrapper.has-active-child > .ia-submenu-toggle .nav-icon {
  color: #1A1A1A;
}

/* ===== 飞书集成面板 ===== */
.ia-integrate-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ia-integrate-card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  background: #fff;
  padding: 20px;
}

.ia-integrate-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ia-integrate-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ia-integrate-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.ia-integrate-icon-feishu {
  background: linear-gradient(135deg, #3370ff 0%, #3351ff 100%);
}

.ia-integrate-title-group {
  flex: 1;
  min-width: 0;
}

.ia-integrate-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 22px;
}

.ia-integrate-status {
  font-size: 12px;
  color: #9a9a9a;
  margin-top: 2px;
}

.ia-integrate-status-active {
  color: #22c55e;
  font-weight: 500;
}

.ia-integrate-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.05);
}

.ia-integrate-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ia-integrate-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0f9eb;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.ia-integrate-feature-text {
  font-size: 13px;
  color: #3a3a3a;
  line-height: 20px;
}

.ia-integrate-section {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  background: #fff;
  padding: 18px 20px;
}

.ia-integrate-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 20px;
}

.ia-integrate-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.ia-integrate-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.ia-integrate-info-label {
  color: #9a9a9a;
  flex-shrink: 0;
  min-width: 64px;
}

.ia-integrate-info-value {
  color: #3a3a3a;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
}

.ia-integrate-flow-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ia-integrate-flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #faf9f7;
  border: 1px solid rgba(0,0,0,.04);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ia-integrate-flow-item:hover {
  background: #f5f4f2;
  border-color: rgba(0,0,0,.08);
}

.ia-integrate-flow-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.04);
}

.ia-integrate-flow-info {
  flex: 1;
  min-width: 0;
}

.ia-integrate-flow-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 20px;
}

.ia-integrate-flow-desc {
  font-size: 12px;
  color: #9a9a9a;
  margin-top: 2px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ia-integrate-flow-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 500;
  flex-shrink: 0;
}

.ia-integrate-flow-tag-on {
  background: #f0f9eb;
  color: #22c55e;
}
