@charset "UTF-8";
.landing-container {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: #000000;
  color: #f6f8ff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.landing-container.dark-theme {
  --text-soft: rgba(255, 255, 255, 0.55);
  --text-faint: rgba(255, 255, 255, 0.3);
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(67, 120, 255, 0.4);
  --blue: #2663ff;
  --orange: #ff6a1d;
  --scene-accent: #5d8bff;
  --scene-accent-rgb: 93, 139, 255;
  --scene-accent-soft: rgba(93, 139, 255, 0.15);
}
.landing-container::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
}

.landing-nav,
.hero-section,
.logo-bar,
.intro-section,
.pioneers-section,
.method-section,
.cases-section,
.partners-section,
.landing-footer {
  position: relative;
  z-index: 1;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 2, 2, 0.88);
  backdrop-filter: blur(16px);
  z-index: 100;
}
.landing-nav .nav-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.landing-nav .logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.landing-nav .brand-logo-image {
  width: 164px !important;
  height: 48px !important;
  object-fit: contain;
  flex: 0 0 auto;
}
.landing-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.landing-nav .nav-item-group {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 0;
}
.landing-nav .nav-link-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
}
.landing-nav .nav-link-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.74);
  transition: transform 0.25s ease, color 0.25s ease;
}
.landing-nav .nav-link-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(76, 134, 255, 0), rgb(76, 134, 255), rgba(76, 134, 255, 0));
  opacity: 0;
  transform: scaleX(0.15);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.landing-nav .nav-link-item:hover {
  color: #ffffff;
  transform: translateY(-1px);
}
.landing-nav .nav-link-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.landing-nav .nav-link-item:hover svg {
  color: #ffffff;
  transform: translateY(1px);
}
.landing-nav .nav-item-group:hover .nav-link-item {
  color: #ffffff;
  transform: translateY(-1px);
}
.landing-nav .nav-item-group:hover .nav-link-item::after {
  opacity: 1;
  transform: scaleX(1);
}
.landing-nav .nav-item-group:hover .nav-link-item svg {
  color: #ffffff;
  transform: translateY(1px);
}
.landing-nav .nav-item-group:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.landing-nav .nav-dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  min-width: 320px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)), rgba(7, 9, 17, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.landing-nav .nav-dropdown-solution {
  width: min(960px, 100vw - 48px);
}
.landing-nav .nav-dropdown-technology {
  width: min(720px, 100vw - 48px);
}
.landing-nav .nav-mega-grid {
  display: grid;
  gap: 32px;
}
.landing-nav .nav-solution-grid {
  grid-template-columns: repeat(4, 1fr);
}
.landing-nav .nav-tech-grid {
  grid-template-columns: repeat(3, 1fr);
}
.landing-nav .nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  background: transparent;
  transition: background 0.2s ease;
}
.landing-nav .nav-mega-col:hover {
  background: rgba(255, 255, 255, 0.02);
}
.landing-nav .nav-mega-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-nav .nav-solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(81, 128, 255, 0.15), rgba(49, 84, 176, 0.05));
  border: 1px solid rgba(126, 168, 255, 0.12);
  color: #a5c3ff;
}
.landing-nav .nav-mega-col-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.landing-nav .nav-mega-col-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}
.landing-nav .nav-mega-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
}
.landing-nav .nav-mega-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}
.landing-nav .nav-mega-link:hover .nav-mega-link-icon {
  color: #a5c3ff;
}
.landing-nav .nav-mega-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}
.landing-nav .nav-mega-link-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landing-nav .nav-mega-link-more {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 4px 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.landing-nav .nav-mega-link-more svg {
  transition: transform 0.2s ease;
}
.landing-nav .nav-mega-link-more:hover {
  color: #fff;
}
.landing-nav .nav-mega-link-more:hover svg {
  transform: translateX(4px);
}
.landing-nav .nav-tech-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-align: left;
  align-items: flex-start;
}
.landing-nav .nav-tech-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.landing-nav .nav-tech-item:hover .nav-tech-illustration-box {
  background: linear-gradient(135deg, rgba(81, 128, 255, 0.15), rgba(49, 84, 176, 0.05));
  border-color: rgba(126, 168, 255, 0.25);
}
.landing-nav .nav-tech-item:hover .nav-tech-illustration-box .nav-tech-svg {
  transform: scale(1.05);
}
.landing-nav .nav-tech-illustration-box {
  width: 100%;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.landing-nav .nav-tech-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.landing-nav .nav-tech-item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.landing-nav .nav-tech-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.landing-nav .nav-tech-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.landing-nav .nav-tech-item-arrow {
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, color 0.2s ease;
}
.landing-nav .nav-tech-item:hover .nav-tech-item-arrow {
  color: #fff;
  transform: translateX(2px);
}
.landing-nav .nav-tech-item-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.landing-nav .nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}
.landing-nav .btn-login-entry.arco-btn {
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
.landing-nav .nav-user-chip {
  height: 42px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.landing-nav .nav-user-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 145, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}
.landing-nav .nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.96);
}
.landing-nav .nav-user-name {
  max-width: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.landing-nav .btn-platform-entry.arco-btn {
  height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 600;
}

.landing-container .arco-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.landing-container .arco-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.landing-container .arco-btn::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -32%;
  width: 34%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-180%);
  opacity: 0;
  pointer-events: none;
}
.landing-container .arco-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 18, 38, 0.28);
}
.landing-container .arco-btn:hover::before {
  opacity: 1;
}
.landing-container .arco-btn:hover::after {
  opacity: 1;
  animation: buttonSheen 0.95s ease forwards;
}

.btn-primary-glow.arco-btn {
  --primary-btn-height: 52px;
  --primary-btn-padding-x: 22px;
  --primary-btn-radius: 999px;
  --primary-btn-font-size: 16px;
  --primary-btn-weight: 700;
  --primary-btn-border: rgba(50, 96, 255, 0.4);
  --primary-btn-shadow:
    0 0 0 1px rgba(97, 145, 255, 0.12), 0 14px 34px rgba(39, 92, 255, 0.22);
  --primary-btn-shadow-hover:
    0 0 0 1px rgba(118, 163, 255, 0.22), 0 18px 42px rgba(39, 92, 255, 0.34),
    0 0 32px rgba(56, 108, 255, 0.22);
  height: var(--primary-btn-height);
  padding: 0 var(--primary-btn-padding-x);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--primary-btn-border);
  border-radius: var(--primary-btn-radius);
  background: linear-gradient(135deg, rgba(23, 64, 212, 0.9), rgba(44, 100, 255, 0.96));
  color: #fff;
  font-size: var(--primary-btn-font-size);
  font-weight: var(--primary-btn-weight);
  box-shadow: var(--primary-btn-shadow);
  animation: primaryButtonPulse 3.6s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
}
.btn-primary-glow.arco-btn svg {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.btn-primary-glow.arco-btn::before {
  opacity: 1;
}
.btn-primary-glow.arco-btn::after {
  opacity: 1;
  animation: primaryButtonSheen 3.2s ease-in-out infinite;
}
.btn-primary-glow.arco-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--primary-btn-shadow-hover);
}
.btn-primary-glow.arco-btn:hover svg {
  transform: translateX(4px);
}

.btn-secondary.arco-btn {
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}
.btn-secondary.arco-btn:hover {
  border-color: rgba(101, 149, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.hero-section,
.logo-bar,
.intro-section,
.pioneers-section,
.method-section,
.cases-section,
.partners-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.hero-section {
  min-height: 860px;
  padding-top: 156px;
  padding-bottom: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.flow-hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-nebula,
.hero-orbit,
.hero-grid-arc,
.hero-planet,
.planet-ring,
.hero-signal,
.hero-star,
.hero-comet {
  position: absolute;
}

.hero-nebula {
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.3;
}

.nebula-left {
  left: -15%;
  top: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(44, 95, 255, 0.4) 0%, transparent 70%);
  animation: nebulaFloatLeft 20s ease-in-out infinite alternate;
}

.nebula-right {
  right: -12%;
  top: 0%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(113, 164, 255, 0.3) 0%, transparent 70%);
  animation: nebulaFloatRight 18s ease-in-out infinite alternate;
}

.nebula-bottom {
  left: 50%;
  bottom: -25%;
  width: 1000px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(33, 84, 255, 0.25) 0%, transparent 75%);
  animation: nebulaPulseBottom 16s ease-in-out infinite alternate;
}

.hero-orbit {
  left: 50%;
  top: 42%;
  border-radius: 50%;
  border: 2px solid rgba(77, 123, 255, 0.28);
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 1080px;
  height: 360px;
  transform: translate(-50%, -50%) rotate(-10deg);
  animation: orbitRotateOne 18s linear infinite;
}

.orbit-2 {
  width: 880px;
  height: 250px;
  border-style: dashed;
  border-color: rgba(92, 137, 255, 0.18);
  transform: translate(-50%, -50%) rotate(8deg);
  animation: orbitRotateTwo 22s linear infinite reverse;
}

.orbit-3 {
  width: 660px;
  height: 168px;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%) rotate(-2deg);
  animation: orbitRotateThree 15s linear infinite;
}

@keyframes orbitRotateOne {
  0% {
    transform: translate(-50%, -50%) rotateZ(-10deg) rotateY(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(-10deg) rotateY(360deg);
  }
}
@keyframes orbitRotateTwo {
  0% {
    transform: translate(-50%, -50%) rotateZ(8deg) rotateX(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(8deg) rotateX(360deg);
  }
}
@keyframes orbitRotateThree {
  0% {
    transform: translate(-50%, -50%) rotateZ(-2deg) rotateY(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(-2deg) rotateY(360deg);
  }
}
.hero-grid-arc {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(79, 126, 255, 0.1);
  mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 78%, transparent 100%);
}

.arc-left {
  left: -120px;
  top: 140px;
  animation: arcSweep 18s linear infinite;
}

.arc-right {
  right: -140px;
  top: 110px;
  animation: arcSweepReverse 20s linear infinite;
}

.hero-star {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(118, 160, 255, 0.4));
  box-shadow: 0 0 12px rgba(118, 160, 255, 0.6);
  opacity: 0.6;
}

.star-1 {
  left: 14%;
  top: 18%;
}

.star-2 {
  left: 28%;
  top: 14%;
  animation-delay: -1.2s;
}

.star-3 {
  right: 24%;
  top: 16%;
  animation-delay: -2.4s;
}

.star-4 {
  right: 14%;
  top: 28%;
  animation-delay: -3.1s;
}

.star-5 {
  left: 50%;
  top: 12%;
  animation-delay: -4.1s;
}

.hero-comet {
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(175, 204, 255, 0.94), rgba(255, 255, 255, 0));
  border-radius: 999px;
  opacity: 0;
}

.comet-1 {
  top: 18%;
  left: 12%;
  transform: rotate(18deg);
  animation: cometTrail 9s linear infinite;
}

.comet-2 {
  top: 30%;
  right: 12%;
  transform: rotate(-16deg);
  animation: cometTrailTwo 11s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 32px;
  text-align: center;
  opacity: 1 !important;
}

.hero-copy-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  background: transparent;
}

.hero-brand-mark {
  margin-bottom: 24px;
  display: inline-block;
  padding: 0 10px 8px;
  font-size: clamp(92px, 14vw, 148px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 800;
  background: linear-gradient(180deg, #518cff 0%, #1555df 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(47, 141, 255, 0.2);
  overflow: visible;
  white-space: nowrap;
  animation: heroBrandFlicker 6s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  color: #ffffff !important;
  font-size: 96px;
  line-height: 0.94;
  font-weight: 900;
  font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: -0.05em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
  opacity: 1 !important;
  white-space: nowrap;
}

.hero-desc {
  max-width: 980px;
  margin: 32px auto 48px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 19px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 1 !important;
}

@keyframes auraDriftLeft {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(48px, -22px, 0) scale(1.06);
  }
}
@keyframes buttonSheen {
  0% {
    transform: rotate(18deg) translateX(-180%);
  }
  100% {
    transform: rotate(18deg) translateX(460%);
  }
}
@keyframes primaryButtonPulse {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(97, 145, 255, 0.12), 0 14px 34px rgba(39, 92, 255, 0.22), 0 0 0 rgba(56, 108, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(118, 163, 255, 0.18), 0 18px 40px rgba(39, 92, 255, 0.3), 0 0 28px rgba(56, 108, 255, 0.22);
  }
}
@keyframes primaryButtonSheen {
  0% {
    transform: rotate(18deg) translateX(-180%);
  }
  20%, 100% {
    transform: rotate(18deg) translateX(460%);
  }
}
@keyframes nebulaFloatLeft {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 3%, 0) scale(1.1);
  }
}
@keyframes nebulaFloatRight {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  100% {
    transform: translate3d(-40px, 24px, 0) scale(1.08);
  }
}
@keyframes heroBrandFlicker {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
    text-shadow: 0 0 40px rgba(47, 141, 255, 0.2);
  }
  30% {
    opacity: 0.98;
    filter: brightness(1.1);
    text-shadow: 0 0 50px rgba(47, 141, 255, 0.4);
  }
  32% {
    opacity: 0.95;
    filter: brightness(0.9);
    text-shadow: 0 0 20px rgba(47, 141, 255, 0.1);
  }
  34% {
    opacity: 1;
    filter: brightness(1.2);
    text-shadow: 0 0 60px rgba(47, 141, 255, 0.5);
  }
  36% {
    opacity: 0.98;
    filter: brightness(1);
    text-shadow: 0 0 40px rgba(47, 141, 255, 0.2);
  }
}
@keyframes nebulaPulseBottom {
  0% {
    transform: translateX(-50%) scale(0.94);
    opacity: 0.18;
  }
  100% {
    transform: translateX(-50%) scale(1.08);
    opacity: 0.38;
  }
}
@keyframes arcSweep {
  0% {
    transform: rotate(0deg);
    opacity: 0.4;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.16;
  }
}
@keyframes arcSweepReverse {
  0% {
    transform: rotate(0deg);
    opacity: 0.28;
  }
  100% {
    transform: rotate(-360deg);
    opacity: 0.14;
  }
}
@keyframes signalPulse {
  0%, 100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.22;
  }
  50% {
    transform: translateX(-50%) scaleX(1.06);
    opacity: 0.56;
  }
}
@keyframes starFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.16);
    opacity: 1;
  }
}
@keyframes cometTrail {
  0% {
    transform: rotate(18deg) translateX(-120px);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  30%, 100% {
    transform: rotate(18deg) translateX(560px);
    opacity: 0;
  }
}
@keyframes cometTrailTwo {
  0% {
    transform: rotate(-16deg) translateX(120px);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  28%, 100% {
    transform: rotate(-16deg) translateX(-560px);
    opacity: 0;
  }
}
.logo-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.logo-marquee {
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logoMarquee 26s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 164px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.logo-item:hover {
  transform: translateY(-2px);
}
.logo-item img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  opacity: 0.78;
  transition: all 0.3s ease;
}
.logo-item:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

.logo-item-wordmark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  opacity: 0.9;
}

.logo-item-wordmark.blue {
  color: #6eb2ff;
}

.logo-item-wordmark.violet {
  color: #9d89ff;
}

.logo-item-wordmark.green {
  color: #77d98e;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.intro-section,
.pioneers-section,
.method-section,
.cases-section,
.partners-section {
  padding-top: 112px;
}

.intro-head,
.stories-head {
  max-width: 920px;
  margin: 0 auto 32px;
}

.intro-title-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}
.intro-title-row span {
  color: #ffffff;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.intro-title-row .accent {
  color: var(--blue);
}

.intro-head p,
.stories-head p {
  max-width: 660px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 17px;
  margin-top: 12px;
}

.intro-section .section-header {
  margin-bottom: 64px;
  text-align: center;
}
.intro-section .section-header .section-title {
  margin: 0;
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.intro-section .section-header .section-desc {
  max-width: 860px;
  margin: 20px auto 0 !important;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 17px;
  line-height: 1.9;
}
.intro-section .section-header .section-desc br {
  display: block;
  content: "";
}

.feature-boards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 24px;
  width: 100%;
}

/* --- Tab 导航区 --- */
.feature-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.feature-tab-btn {
  --feature-accent: #4ba2ff;
  --feature-accent-soft: rgba(75, 162, 255, 0.14);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)), radial-gradient(circle at 50% 0%, var(--feature-accent-soft), transparent 68%);
}
.feature-tab-btn .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.84;
  color: color-mix(in srgb, var(--feature-accent) 62%, white);
  transition: all 0.3s ease;
}
.feature-tab-btn .tab-label {
  font-size: 16px;
  font-weight: 600;
}
.feature-tab-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--feature-accent) 18%, transparent), transparent 68%);
  border-color: color-mix(in srgb, var(--feature-accent) 18%, transparent);
}
.feature-tab-btn:hover .tab-icon {
  color: color-mix(in srgb, var(--feature-accent) 78%, white);
}
.feature-tab-btn.active {
  color: #fff;
  border-color: color-mix(in srgb, var(--feature-accent) 28%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--feature-accent) 30%, rgba(255, 255, 255, 0.06)), color-mix(in srgb, var(--feature-accent) 18%, rgba(5, 9, 18, 0.84))), radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--feature-accent) 28%, transparent), transparent 72%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--feature-accent) 24%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.feature-tab-btn.active .tab-icon {
  opacity: 1;
  color: #fff;
}

/* --- Tab 内容区 --- */
.feature-tabs-content {
  position: relative;
  width: 100%;
}

.feature-tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}
.feature-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- 横向滚动卡片区 --- */
.feature-cards-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
}

.feature-showcase-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-showcase-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}
.feature-showcase-card:hover .feature-scene-panel,
.feature-showcase-card:hover .feature-scene-lens,
.feature-showcase-card:hover .feature-scene-connector-wave {
  transform: translateY(-2px);
}

.card-text-area {
  padding: 28px 28px 0;
  min-height: 126px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
  margin: 0;
}

.card-visual-area {
  height: 186px;
  margin-top: 18px;
  padding: 10px 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-visual-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.card-visual-area .feature-svg-box {
  width: 100%;
  height: 100%;
}

.feature-illustration-media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 10, 18, 0.12)), radial-gradient(circle at 20% 18%, var(--feature-accent-soft), transparent 42%), #070b14;
}

.feature-illustration-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: saturate(1.02) contrast(1.02);
}

.feature-illustration-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, 0.08) 0%, rgba(4, 8, 18, 0.12) 54%, rgba(4, 8, 18, 0.48) 100%), radial-gradient(circle at 18% 16%, transparent 0%, transparent 32%, rgba(4, 8, 18, 0.2) 100%);
  pointer-events: none;
}

.feature-illustration-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 28, 0.64);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* 主题颜色适配 */
.theme-generate {
  --feature-accent: #4ba2ff;
  --feature-accent-soft: rgba(75, 162, 255, 0.16);
}

.theme-design {
  --feature-accent: #8b73ff;
  --feature-accent-soft: rgba(139, 115, 255, 0.16);
}

.theme-apply {
  --feature-accent: #12c9ff;
  --feature-accent-soft: rgba(18, 201, 255, 0.16);
}

.theme-agent {
  --feature-accent: #ad7cff;
  --feature-accent-soft: rgba(173, 124, 255, 0.17);
}

.card-visual-area {
  background: radial-gradient(circle at center, var(--feature-accent-soft), transparent 70%);
}

.feature-scene {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(7, 10, 20, 0.15)), radial-gradient(circle at 18% 22%, var(--feature-accent-soft), transparent 44%), linear-gradient(160deg, rgba(5, 10, 22, 0.96), rgba(8, 13, 28, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-scene-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.8px, transparent 0.8px);
  background-size: 14px 14px;
  opacity: 0.12;
}

.feature-scene-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}

.feature-scene-glow.glow-a {
  width: 110px;
  height: 110px;
  top: -24px;
  left: -16px;
  background: radial-gradient(circle, var(--feature-accent-soft), transparent 70%);
}

.feature-scene-glow.glow-b {
  width: 86px;
  height: 86px;
  right: -20px;
  bottom: -18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
}

.feature-scene-panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(17, 22, 39, 0.92), rgba(10, 14, 28, 0.72));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-scene-panel.soft {
  background: linear-gradient(180deg, rgba(25, 30, 49, 0.78), rgba(13, 18, 34, 0.54));
}

.feature-scene-panel.floating {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-scene-panel.sheet {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.feature-scene-panel.stack-back {
  opacity: 0.4;
}

.feature-scene-panel.stack-mid {
  opacity: 0.65;
}

.feature-scene-beam {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--feature-accent), transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
}

.feature-scene-kicker,
.feature-scene-mini-title,
.feature-scene-screen-title,
.feature-scene-api-head,
.feature-scene-query,
.feature-scene-prompt,
.feature-scene-color-chip,
.feature-scene-palette-note {
  position: relative;
  z-index: 1;
}

.feature-scene-kicker,
.feature-scene-mini-title,
.feature-scene-screen-title,
.feature-scene-api-head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-mini-title svg,
.feature-scene-stat-chip svg,
.feature-scene-api-head svg,
.feature-scene-kicker svg {
  flex: 0 0 auto;
}

.feature-scene-kicker.second {
  margin-top: 4px;
}

.feature-scene-prompt,
.feature-scene-query {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-query {
  min-height: 28px;
  width: fit-content;
  max-width: 100%;
}

.feature-scene-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-scene-lines.compact {
  gap: 5px;
}

.feature-scene-lines.dense {
  gap: 4px;
}

.feature-scene-lines span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.16));
}

.feature-scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-scene-tag,
.feature-scene-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-stat-chip {
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-stat-chip.danger {
  background: rgba(255, 120, 120, 0.12);
  color: #ffb2b2;
}

.feature-scene-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: end;
  gap: 14px;
  margin-top: auto;
}

.feature-scene-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  min-height: 54px;
}

.feature-scene-bars span {
  flex: 1;
  min-width: 8px;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--feature-accent));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
}

.feature-scene-ring {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(var(--feature-accent) 0 290deg, rgba(255, 255, 255, 0.08) 290deg 360deg);
}

.feature-scene-ring::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(10, 14, 28, 0.96);
}

.feature-scene-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.feature-scene-data-sheet {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.feature-scene-data-sheet .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.feature-scene-data-sheet .row span,
.feature-scene-data-sheet .row strong {
  white-space: nowrap;
}

.feature-scene-data-sheet .row.head {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-scene-data-sheet .row strong {
  font-size: 10px;
  color: #fff;
}

.feature-scene-convert-arrow {
  position: absolute;
  left: 39%;
  right: 43%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), var(--feature-accent), rgba(255, 255, 255, 0.08));
  border-radius: 999px;
}

.feature-scene-convert-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--feature-accent);
  border-right: 2px solid var(--feature-accent);
  transform: rotate(45deg);
}

.feature-scene-convert-arrow span {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(9, 13, 24, 0.92);
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  white-space: nowrap;
}

.feature-scene-chart-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  align-items: end;
  gap: 10px;
  margin-top: auto;
}

.feature-scene-chart-bars {
  position: relative;
  min-height: 68px;
  padding: 12px 10px 8px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), repeating-linear-gradient(180deg, transparent, transparent 11px, rgba(255, 255, 255, 0.04) 11px, rgba(255, 255, 255, 0.04) 12px);
}

.feature-scene-chart-bars::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-chart-bars .feature-scene-bars {
  min-height: 48px;
}

.feature-scene-chart-side-metric {
  display: grid;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-scene-chart-side-metric span {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.48);
}

.feature-scene-chart-side-metric strong {
  font-size: 13px;
  line-height: 1;
  color: #fff;
}

.feature-scene-chart-legend {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
}

.feature-scene-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.feature-scene-chart-legend .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.feature-scene-chart-legend .dot.blue {
  background: var(--feature-accent);
}

.feature-scene-chart-legend .dot.light {
  background: rgba(255, 255, 255, 0.76);
}

.feature-scene-outline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-scene-outline span,
.feature-scene-thumb-strip span,
.feature-scene-thumb-stack span,
.feature-scene-summary-cards span,
.feature-scene-library span,
.feature-scene-calendar span,
.feature-scene-swatches span,
.feature-scene-post-card .meta,
.feature-scene-compare-head span,
.feature-scene-warning-row span,
.feature-scene-integration-grid span {
  display: block;
}

.feature-scene-outline span {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.feature-scene-outline span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--feature-accent), rgba(255, 255, 255, 0.9));
}

.feature-scene-outline span.active::before {
  width: 82%;
}

.feature-scene-tree {
  position: relative;
  flex: 1;
}

.feature-scene-tree i,
.feature-scene-flow i,
.feature-scene-entity-net i {
  position: absolute;
  border-radius: 999px;
}

.feature-scene-tree i {
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.feature-scene-tree i:nth-child(1) {
  left: 10px;
  top: 18px;
}

.feature-scene-tree i:nth-child(2) {
  left: 6px;
  top: 34px;
  width: 54px;
}

.feature-scene-tree i:nth-child(3) {
  left: 16px;
  top: 50px;
  width: 40px;
}

.feature-scene-thumb-strip,
.feature-scene-thumb-stack {
  display: grid;
  gap: 6px;
}

.feature-scene-thumb-strip {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.feature-scene-thumb-strip span,
.feature-scene-thumb-stack span {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-thumb-strip span {
  height: 100%;
}

.feature-scene-thumb-strip.compact {
  height: 28px;
}

.feature-scene-thumb-stack {
  grid-template-rows: repeat(3, 1fr);
  height: 100%;
}

.feature-scene-thumb-stack span.active,
.feature-scene-thumb-strip span.active,
.feature-scene-calendar span.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--feature-accent));
}

.feature-scene-form {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.feature-scene-form span,
.feature-scene-extract-box span {
  display: flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  white-space: nowrap;
}

.feature-scene-highlight-bar {
  width: 54%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 220, 120, 0.3), rgba(255, 220, 120, 0.92));
}

.feature-scene-slide-canvas {
  display: grid;
  gap: 8px;
  flex: 1;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-slide-canvas span {
  display: block;
  border-radius: 8px;
}

.feature-scene-slide-canvas .hero {
  height: 44px;
  background: linear-gradient(135deg, var(--feature-accent), rgba(255, 255, 255, 0.85));
}

.feature-scene-slide-canvas .copy {
  height: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-scene-slide-canvas .copy.short {
  width: 58%;
}

.feature-scene-sign-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.feature-scene-sign-row .line {
  width: 52%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.feature-scene-sign-row .stamp {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.feature-scene-profile-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-scene-profile-head .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), var(--feature-accent));
}

.feature-scene-profile-head .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-scene-profile-head strong {
  font-size: 11px;
  color: #fff;
}

.feature-scene-profile-head .meta span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.56);
}

.feature-scene-score-card,
.feature-scene-confidence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.feature-scene-score-card strong,
.feature-scene-confidence strong {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

.feature-scene-ruler {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-ruler.top {
  left: 12px;
  right: 12px;
  top: 12px;
  height: 8px;
  border-radius: 999px;
}

.feature-scene-ruler.side {
  left: 12px;
  top: 26px;
  bottom: 12px;
  width: 8px;
  border-radius: 999px;
}

.feature-scene-layout-grid {
  position: absolute;
  inset: 28px 12px 12px 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.feature-scene-layout-grid span {
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.feature-scene-layout-spec {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.feature-scene-layout-spec span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-gradient-bar {
  height: 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #4ba2ff, #8b73ff, #ffd46a);
}

.feature-scene-swatches {
  display: flex;
  gap: 8px;
}

.feature-scene-swatches span,
.feature-scene-color-chip {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.feature-scene-swatches span:nth-child(1),
.feature-scene-color-chip {
  background: #4ba2ff;
}

.feature-scene-swatches span:nth-child(2) {
  background: #8b73ff;
}

.feature-scene-swatches span:nth-child(3),
.feature-scene-color-chip.alt {
  background: #ffd46a;
}

.feature-scene-swatches span:nth-child(4) {
  background: #66e8a8;
}

.feature-scene-palette-note {
  margin-top: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.58);
}

.feature-scene-compare-head,
.feature-scene-chart-compare,
.feature-scene-diff-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feature-scene-compare-head span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.54);
  white-space: nowrap;
}

.feature-scene-chart-compare > div,
.feature-scene-diff-view .col {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-chart-real-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feature-scene-chart-real-compare .state {
  display: grid;
  gap: 8px;
  padding: 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-chart-real-compare .chart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.feature-scene-chart-real-compare .chart-top span,
.feature-scene-chart-real-compare .chart-top i {
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.feature-scene-chart-real-compare .chart-top span {
  color: rgba(255, 255, 255, 0.82);
}

.feature-scene-chart-real-compare .chart-top i {
  color: rgba(255, 255, 255, 0.45);
}

.feature-scene-chart-real-compare .bars-wrap {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 54px;
  padding: 8px 8px 0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), repeating-linear-gradient(180deg, transparent, transparent 11px, rgba(255, 255, 255, 0.04) 11px, rgba(255, 255, 255, 0.04) 12px);
}

.feature-scene-chart-real-compare .bars-wrap.muted .feature-scene-bars span {
  opacity: 0.45;
  box-shadow: none;
}

.feature-scene-chart-real-compare .bars-wrap.polished {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-scene-chart-real-compare .axis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.feature-scene-chart-real-compare .axis span {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.feature-scene-mini-line,
.feature-scene-trend-line {
  position: absolute;
  inset: 0;
}

.feature-scene-mini-line span,
.feature-scene-trend-line span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(139, 115, 255, 0.25);
}

.feature-scene-mini-line .p1 {
  left: 10px;
  bottom: 18px;
}

.feature-scene-mini-line .p2 {
  left: 30px;
  bottom: 26px;
}

.feature-scene-mini-line .p3 {
  left: 50px;
  bottom: 42px;
}

.feature-scene-mini-line .p4 {
  right: 12px;
  bottom: 34px;
}

.feature-scene-mini-line i,
.feature-scene-trend-line i {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--feature-accent), rgba(255, 255, 255, 0.96));
  transform: rotate(-12deg);
  transform-origin: left center;
}

.feature-scene-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  height: 100%;
}

.feature-scene-gallery span {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-gallery .hero {
  grid-row: 1/span 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), var(--feature-accent));
}

.feature-scene-arrow-flow {
  position: relative;
  width: 100%;
  height: 12px;
}

.feature-scene-arrow-flow::before,
.feature-scene-arrow-flow::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), var(--feature-accent));
}

.feature-scene-arrow-flow::after {
  left: auto;
  right: 0;
  width: 8px;
  height: 8px;
  top: 2px;
  background: transparent;
  border-top: 2px solid var(--feature-accent);
  border-right: 2px solid var(--feature-accent);
  transform: rotate(45deg);
}

.feature-scene-error-mark {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 102, 102, 0.88);
}

.feature-scene-error-mark.mark-a {
  width: 38px;
  left: 20px;
  top: 44px;
}

.feature-scene-error-mark.mark-b {
  width: 28px;
  left: 60px;
  top: 74px;
}

.feature-scene-proofread-doc {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.feature-scene-proofread-doc .proof-line {
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-proofread-doc .typo {
  position: relative;
  color: #fff0f0;
  background: rgba(255, 102, 102, 0.14);
  border-radius: 4px;
  padding: 0 3px;
  box-shadow: inset 0 -1px 0 rgba(255, 102, 102, 0.82);
}

.feature-scene-proofread-suggestions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.feature-scene-proofread-suggestions .suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 9px;
}

.feature-scene-proofread-suggestions .before {
  color: #ffb0b0;
  white-space: nowrap;
}

.feature-scene-proofread-suggestions .after {
  color: #aef2cd;
  white-space: nowrap;
}

.feature-scene-proofread-suggestions i {
  position: relative;
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-scene-proofread-suggestions i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--feature-accent);
  border-right: 1.5px solid var(--feature-accent);
  transform: rotate(45deg);
}

.feature-scene-proofread-result {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 7px;
  background: rgba(86, 224, 172, 0.12);
  color: #bff0d8;
  font-size: 9px;
}

.feature-scene-risk-flags {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.feature-scene-risk-flags span {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 120, 120, 0.22), rgba(255, 120, 120, 0.88));
}

.feature-scene-shield-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), var(--feature-accent));
}

.feature-scene-searchbar {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.feature-scene-results {
  display: grid;
  gap: 8px;
}

.feature-scene-result {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-result .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--feature-accent);
}

.feature-scene-result .txt {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.feature-scene-chat {
  display: grid;
  gap: 8px;
  height: 100%;
}

.feature-scene-qa-stage {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.feature-scene-qa-stage .qa-bubble {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 12px;
}

.feature-scene-qa-stage .qa-bubble.ask {
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-qa-stage .qa-bubble.answer {
  background: linear-gradient(135deg, rgba(172, 115, 255, 0.88), rgba(255, 255, 255, 0.85));
}

.feature-scene-qa-stage .role {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  font-weight: 600;
}

.feature-scene-qa-stage .qa-bubble.answer .role {
  background: rgba(10, 14, 28, 0.18);
  color: #0d1325;
}

.feature-scene-qa-stage p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-qa-stage .qa-bubble.ask p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-scene-qa-stage .qa-bubble.answer p {
  color: #11182e;
  font-weight: 600;
}

.feature-scene-qa-source-card {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-qa-source-card .source-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  white-space: nowrap;
}

.feature-scene-qa-source-card .source-title {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-qa-source-card .source-meta {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}

.feature-scene-chat .bubble {
  border-radius: 10px;
}

.feature-scene-chat .bubble.ask {
  height: 22px;
  width: 58%;
  background: rgba(255, 255, 255, 0.12);
}

.feature-scene-chat .bubble.answer {
  height: 40px;
  width: 82%;
  justify-self: end;
  background: linear-gradient(135deg, var(--feature-accent), rgba(255, 255, 255, 0.9));
}

.feature-scene-chat .bubble.source {
  height: 24px;
  width: 70%;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-source-card {
  margin-top: auto;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-extract-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.feature-scene-entity-net {
  position: absolute;
  inset: 18px;
}

.feature-scene-entity-net .node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), var(--feature-accent));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.feature-scene-entity-net .node.center {
  width: 28px;
  height: 28px;
  left: calc(50% - 14px);
  top: calc(50% - 14px);
}

.feature-scene-entity-net .node.left {
  left: 18px;
  top: calc(50% - 9px);
}

.feature-scene-entity-net .node.right {
  right: 18px;
  top: calc(50% - 9px);
}

.feature-scene-entity-net .node.top {
  left: calc(50% - 9px);
  top: 10px;
}

.feature-scene-entity-net .node.bottom {
  left: calc(50% - 9px);
  bottom: 10px;
}

.feature-scene-entity-net i {
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  transform-origin: left center;
}

.feature-scene-entity-net .l1 {
  width: 82px;
  left: 36px;
  top: calc(50% - 1px);
}

.feature-scene-entity-net .l2 {
  width: 82px;
  left: calc(50% + 14px);
  top: calc(50% - 1px);
}

.feature-scene-entity-net .l3 {
  width: 68px;
  left: calc(50% - 2px);
  top: calc(50% - 2px);
  transform: rotate(-90deg);
}

.feature-scene-entity-net .l4 {
  width: 68px;
  left: calc(50% - 2px);
  top: calc(50% - 2px);
  transform: rotate(90deg);
}

.feature-scene-summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.feature-scene-summary-cards span {
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.feature-scene-diff-marker {
  width: 58px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 112, 112, 0.9), rgba(255, 255, 255, 0.85));
}

.feature-scene-doc-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feature-scene-doc-compare .doc {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-doc-compare .doc-head {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.64);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-doc-compare .doc-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.feature-scene-doc-compare .doc-line.short {
  width: 62%;
}

.feature-scene-doc-compare .doc-line.danger {
  background: linear-gradient(90deg, rgba(255, 112, 112, 0.2), rgba(255, 112, 112, 0.82));
}

.feature-scene-doc-compare .doc-line.success {
  background: linear-gradient(90deg, rgba(86, 224, 172, 0.2), rgba(86, 224, 172, 0.82));
}

.feature-scene-diff-summary {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.feature-scene-diff-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.feature-scene-diff-summary .removed {
  background: rgba(255, 112, 112, 0.12);
}

.feature-scene-diff-summary .added {
  background: rgba(86, 224, 172, 0.12);
}

.feature-scene-diff-summary .changed {
  background: rgba(88, 179, 255, 0.12);
}

.feature-scene-library {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  height: 100%;
}

.feature-scene-library span {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-lock-gate {
  position: relative;
  flex: 1;
}

.feature-scene-lock-gate .arc {
  position: absolute;
  left: calc(50% - 14px);
  top: 8px;
  width: 28px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.36);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.feature-scene-lock-gate .body {
  position: absolute;
  left: calc(50% - 20px);
  top: 24px;
  width: 40px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), var(--feature-accent));
}

.feature-scene-lens {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.42);
  transition: transform 0.35s ease;
}

.feature-scene-lens::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  right: -10px;
  bottom: 2px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(45deg);
  border-radius: 999px;
}

.feature-scene-doc-stack {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.feature-scene-doc-stack span {
  display: block;
  height: 11px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-doc-stack span:nth-child(1) {
  width: 86%;
}

.feature-scene-doc-stack span:nth-child(2) {
  width: 72%;
}

.feature-scene-doc-stack span:nth-child(3) {
  width: 90%;
}

.feature-scene-doc-stack span:nth-child(4) {
  width: 64%;
}

.feature-scene-doc-meta {
  margin-top: auto;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.56);
}

.feature-scene-cluster-flow {
  position: absolute;
  left: 30%;
  top: 50%;
  width: 18%;
  height: 60px;
  transform: translateY(-50%);
}

.feature-scene-cluster-flow .engine {
  position: absolute;
  left: calc(50% - 18px);
  top: calc(50% - 18px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), var(--feature-accent));
  box-shadow: 0 0 26px rgba(0, 220, 255, 0.22);
}

.feature-scene-cluster-flow .line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), var(--feature-accent));
  transform-origin: left center;
}

.feature-scene-cluster-flow .l1 {
  width: 82px;
  left: -2px;
  top: 22px;
}

.feature-scene-cluster-flow .l2 {
  width: 90px;
  left: 28px;
  top: 36px;
  transform: rotate(-18deg);
}

.feature-scene-cluster-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.feature-scene-cluster-head strong,
.feature-scene-cluster-head span {
  white-space: nowrap;
}

.feature-scene-cluster-head strong {
  font-size: 10px;
  color: #fff;
}

.feature-scene-cluster-head span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.52);
}

.feature-scene-cluster-buckets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: auto;
}

.feature-scene-cluster-buckets .bucket {
  display: grid;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-cluster-buckets .bucket strong {
  font-size: 10px;
  color: #fff;
}

.feature-scene-cluster-buckets .bucket span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  white-space: nowrap;
}

.feature-scene-agent-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
}

.feature-scene-agent-head .agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--feature-accent);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.feature-scene-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.feature-scene-pipeline .stage {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-pipeline .stage.active {
  background: linear-gradient(90deg, var(--feature-accent), rgba(255, 255, 255, 0.92));
}

.feature-scene-post-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-post-card .cover {
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--feature-accent), rgba(255, 255, 255, 0.92));
}

.feature-scene-post-card .meta {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-scene-post-card .meta.short {
  width: 58%;
}

.feature-scene-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.feature-scene-calendar span {
  height: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-scene-calendar.compact span {
  height: 16px;
}

.feature-scene-marketing-editor {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.feature-scene-marketing-editor .campaign-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-marketing-editor .campaign-copy {
  font-size: 9px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-marketing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-scene-marketing-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  white-space: nowrap;
}

.feature-scene-channel-plan {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.feature-scene-channel-plan .channel-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-channel-plan strong {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.46);
}

.feature-scene-channel-plan span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-warning-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.feature-scene-warning-row span {
  flex: 1;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 120, 120, 0.12);
  border: 1px solid rgba(255, 120, 120, 0.24);
}

.feature-scene-flow {
  position: absolute;
  inset: 22px 16px 18px;
}

.feature-scene-flow .box {
  position: absolute;
  width: 52px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-scene-flow .b1 {
  left: 6px;
  top: 20px;
}

.feature-scene-flow .b2 {
  left: calc(50% - 26px);
  top: 52px;
}

.feature-scene-flow .b3 {
  right: 6px;
  top: 18px;
}

.feature-scene-flow i {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), var(--feature-accent));
}

.feature-scene-flow .a1 {
  width: 84px;
  left: 52px;
  top: 40px;
  transform: rotate(18deg);
}

.feature-scene-flow .a2 {
  width: 84px;
  right: 52px;
  top: 42px;
  transform: rotate(-18deg);
}

.feature-scene-workflow-canvas {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-top: auto;
}

.feature-scene-workflow-canvas .workflow-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: center;
  width: 100%;
}

.feature-scene-workflow-canvas .workflow-node {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 54px;
  padding: 8px 8px 7px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.feature-scene-workflow-canvas .workflow-node span {
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
  white-space: nowrap;
}

.feature-scene-workflow-canvas .workflow-node strong {
  font-size: 9px;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-workflow-canvas .link {
  position: relative;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), var(--feature-accent));
}

.feature-scene-workflow-canvas .link::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--feature-accent);
  border-right: 1.5px solid var(--feature-accent);
  transform: rotate(45deg);
}

.feature-scene-workflow-badge {
  position: absolute;
  right: 24px;
  top: 26px;
  display: grid;
  gap: 4px;
  min-width: 72px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 24, 44, 0.94), rgba(10, 15, 28, 0.84));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.feature-scene-workflow-badge span {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.46);
  white-space: nowrap;
}

.feature-scene-workflow-badge strong {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.feature-scene-line-chart {
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 34px;
}

.feature-scene-line-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.feature-scene-line-chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 2px;
  background: transparent;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.feature-scene-integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: auto;
}

.feature-scene-integration-grid span {
  display: grid;
  place-items: center;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.feature-scene-endpoint-list {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.feature-scene-endpoint-list span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  white-space: nowrap;
}

.feature-scene-api-note {
  margin-top: auto;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.52);
}

.feature-scene-integration-links {
  position: absolute;
  left: 42%;
  top: 50%;
  width: 18%;
  height: 72px;
  transform: translateY(-50%);
}

.feature-scene-integration-links .node {
  position: absolute;
  left: calc(50% - 7px);
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), var(--feature-accent));
  box-shadow: 0 0 18px rgba(170, 94, 255, 0.22);
}

.feature-scene-integration-links i {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), var(--feature-accent));
}

.feature-scene-integration-links .l1 {
  top: 20px;
}

.feature-scene-integration-links .l2 {
  top: 36px;
  transform: rotate(10deg);
}

.feature-scene-integration-links .l3 {
  top: 52px;
  transform: rotate(-10deg);
}

.feature-scene-integration-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.feature-scene-integration-head strong {
  font-size: 10px;
  color: #fff;
}

.feature-scene-integration-head span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}

.feature-scene-integration-grid.systems span {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.feature-scene-system-stack {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.feature-scene-system-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  white-space: nowrap;
}

.feature-scene-integration-hub {
  position: absolute;
  left: 31%;
  top: 28px;
  width: 34%;
  height: 102px;
  display: grid;
  place-items: center;
}

.feature-scene-integration-hub .hub-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), var(--feature-accent));
  color: #08101f;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.feature-scene-integration-hub .hub-tags {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 6px;
}

.feature-scene-integration-hub .hub-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  white-space: nowrap;
}

.feature-scene-integration-hub .beam {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), var(--feature-accent));
}

.feature-scene-integration-hub .beam.left {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

.feature-scene-integration-hub .beam.right {
  right: 0;
  transform: translateY(-50%);
}

.feature-scene-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.feature-scene-analytics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.feature-scene-analytics-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  white-space: nowrap;
}

.feature-scene-kpi-row.compact span {
  padding: 7px 8px;
}

.feature-scene-kpi-row span {
  display: grid;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-scene-kpi-row i {
  font-style: normal;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.48);
}

.feature-scene-kpi-row strong {
  font-size: 12px;
  color: #fff;
  line-height: 1;
}

.feature-scene-mix-chart {
  position: relative;
  min-height: 58px;
  padding: 10px 10px 0;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), repeating-linear-gradient(180deg, transparent, transparent 11px, rgba(255, 255, 255, 0.04) 11px, rgba(255, 255, 255, 0.04) 12px);
}

.feature-scene-analytics-chart {
  position: relative;
  min-height: 60px;
  padding: 10px 10px 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), repeating-linear-gradient(180deg, transparent, transparent 11px, rgba(255, 255, 255, 0.04) 11px, rgba(255, 255, 255, 0.04) 12px);
  overflow: hidden;
}

.feature-scene-analytics-grid {
  position: absolute;
  inset: 8px 10px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-scene-axis-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 6px;
}

.feature-scene-axis-labels span {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.feature-scene-chart-tip {
  position: absolute;
  right: 10px;
  top: 8px;
  min-height: 18px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 8px;
  white-space: nowrap;
}

.feature-scene-insight-note {
  margin-top: auto;
  font-size: 9px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-scene-trend-line .p1 {
  left: 8px;
  bottom: 16px;
}

.feature-scene-trend-line .p2 {
  left: 28px;
  bottom: 22px;
}

.feature-scene-trend-line .p3 {
  left: 48px;
  bottom: 30px;
}

.feature-scene-trend-line .p4 {
  left: 68px;
  bottom: 42px;
}

.feature-scene-trend-line .p5 {
  right: 10px;
  bottom: 36px;
}

.feature-scene-trend-line i {
  left: 10px;
  right: 8px;
  bottom: 26px;
  transform: rotate(-8deg);
}

@media (max-width: 991px) {
  .feature-tabs-nav {
    flex-wrap: wrap;
  }
  .feature-cards-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .feature-showcase-card {
    min-width: 0;
    border-radius: 18px;
  }
  .card-text-area {
    padding: 18px 16px 0;
    min-height: 94px;
  }
  .card-title {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.25;
  }
  .card-desc {
    font-size: 11px;
    line-height: 1.55;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .card-visual-area {
    height: 132px;
    margin-top: 12px;
    padding: 8px 8px 10px;
  }
}
/* 隐藏废弃类以免污染 */
.fc-card, .fc-visual, .fc-body, .fc-title, .fc-desc, .fc-list, .fc-item, .fc-icon, .fc-name {
  display: none;
}

.feature-board-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  flex: 0 0 190px;
  margin: 0;
}

.feature-svg-box {
  width: 160px;
  height: 160px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: saturate(1.2) contrast(1.1);
}
.feature-svg-box::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--feature-accent-soft) 0%, transparent 70%);
  z-index: -1;
  filter: blur(12px);
  opacity: 0.8;
}

.feature-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 覆盖 hover 效果，使 SVG 动起来 */
.feature-board:hover .feature-svg-box {
  transform: scale(1.05) translateY(-4px);
}
.feature-board:hover .feature-svg-box::after {
  opacity: 1;
  transform: scale(1.1);
}

.feature-art {
  position: relative;
  width: 156px;
  height: 156px;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.96;
  filter: saturate(1.22) contrast(1.08);
}
.feature-art::after {
  content: "";
  position: absolute;
  inset: -26px;
  background: radial-gradient(circle, var(--feature-accent-soft) 0%, transparent 72%);
  z-index: -1;
  filter: blur(8px);
}

.art-generate .art-panel,
.art-generate .art-sheet,
.art-generate .art-orb {
  position: absolute;
}
.art-generate .art-panel {
  inset: 16px 14px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), rgba(7, 16, 34, 0.66);
  border: 1px solid var(--feature-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 40px rgba(6, 15, 32, 0.32);
  backdrop-filter: blur(12px);
  animation: floatSoft 6.8s ease-in-out infinite;
}
.art-generate .panel-line {
  position: absolute;
  left: 28px;
  right: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--feature-accent) 88%, white), rgba(104, 149, 255, 0));
}
.art-generate .line-1 {
  top: 30px;
  width: 54%;
}
.art-generate .line-2 {
  top: 44px;
  width: 42%;
  opacity: 0.82;
}
.art-generate .line-3 {
  top: 58px;
  width: 62%;
  opacity: 0.58;
}
.art-generate .art-sheet {
  width: 74px;
  height: 96px;
  border-radius: 22px;
  border: 1px solid var(--feature-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)), rgba(22, 37, 78, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 30px rgba(6, 14, 32, 0.24);
  backdrop-filter: blur(16px);
}
.art-generate .sheet-back {
  right: 26px;
  top: 34px;
  transform: rotate(10deg);
  opacity: 0.52;
  animation: sheetBackFloat 7.2s ease-in-out infinite;
}
.art-generate .sheet-front {
  left: 22px;
  top: 48px;
  transform: rotate(-8deg);
  padding: 14px 14px 12px;
  animation: sheetFrontFloat 5.8s ease-in-out infinite;
}
.art-generate .sheet-avatar,
.art-generate .sheet-row {
  display: block;
  border-radius: 999px;
}
.art-generate .sheet-avatar {
  width: 18px;
  height: 18px;
  margin-bottom: 12px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), color-mix(in srgb, var(--feature-accent) 74%, white));
  box-shadow: 0 0 14px color-mix(in srgb, var(--feature-accent) 42%, transparent);
}
.art-generate .sheet-row {
  height: 6px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--feature-accent) 35%, white), rgba(210, 225, 255, 0.12));
}
.art-generate .row-1 {
  width: 80%;
}
.art-generate .row-2 {
  width: 66%;
}
.art-generate .row-3 {
  width: 52%;
  margin-bottom: 0;
}
.art-generate .art-orb {
  right: 12px;
  top: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--feature-accent) 78%, white), color-mix(in srgb, var(--feature-accent) 26%, transparent) 72%, transparent 74%);
  box-shadow: 0 0 30px color-mix(in srgb, var(--feature-accent) 32%, transparent);
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.art-design .design-frame,
.art-design .design-grid,
.art-design .design-card,
.art-design .design-pen,
.art-design .pen-body,
.art-design .pen-tip,
.art-design .pen-highlight,
.art-design .art-orb {
  position: absolute;
}
.art-design .design-frame {
  inset: 18px;
  border-radius: 30px;
  border: 1px solid var(--feature-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)), rgba(7, 14, 30, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: floatSoft 7.4s ease-in-out infinite;
}
.art-design .design-grid {
  background: color-mix(in srgb, var(--feature-accent) 24%, transparent);
}
.art-design .grid-v {
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  opacity: 0.4;
}
.art-design .grid-h {
  left: 20px;
  right: 20px;
  top: 50%;
  height: 1px;
  opacity: 0.28;
}
.art-design .design-card {
  border-radius: 16px;
  border: 1px solid var(--feature-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)), rgba(24, 39, 82, 0.72);
  box-shadow: 0 18px 36px rgba(8, 18, 36, 0.24);
  backdrop-filter: blur(16px);
}
.art-design .card-main {
  left: 24px;
  top: 34px;
  width: 78px;
  height: 98px;
  transform: rotate(-4deg);
  animation: cardMainFloat 6.2s ease-in-out infinite;
}
.art-design .card-side {
  right: 24px;
  bottom: 30px;
  width: 52px;
  height: 68px;
  transform: rotate(8deg);
  opacity: 0.88;
  animation: cardSideFloat 5.6s ease-in-out infinite;
}
.art-design .design-pen {
  right: 34px;
  bottom: 52px;
  width: 88px;
  height: 16px;
  transform: rotate(-45deg);
  transform-origin: center;
  animation: floatSoft 6.4s ease-in-out infinite;
  filter: drop-shadow(0 10px 24px rgba(7, 14, 30, 0.22));
}
.art-design .pen-body {
  inset: 0 12px 0 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0%, rgba(216, 226, 255, 0.18) 26%, color-mix(in srgb, var(--feature-accent) 20%, transparent) 60%, rgba(255, 255, 255, 0.14) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 0 18px color-mix(in srgb, var(--feature-accent) 12%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.art-design .pen-body::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 2px;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(0.3px);
}
.art-design .pen-body::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
  opacity: 0.65;
}
.art-design .pen-highlight {
  left: 18px;
  top: 11px;
  width: 30px;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  filter: blur(0.4px);
  opacity: 0.7;
}
.art-design .pen-tip {
  right: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(226, 242, 255, 0.42), rgba(171, 208, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 0 10px rgba(144, 194, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: drop-shadow(0 0 6px rgba(144, 194, 255, 0.18));
}
.art-design .pen-tip::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 7px;
  height: 7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: rgba(255, 255, 255, 0.2);
}
.art-design .orb-design {
  right: 8px;
  top: 12px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--feature-accent) 70%, white), color-mix(in srgb, var(--feature-accent) 18%, transparent) 74%, transparent 76%);
  box-shadow: 0 0 26px color-mix(in srgb, var(--feature-accent) 28%, transparent);
}

.art-app .app-hub,
.art-app .hub-core,
.art-app .hub-ring,
.art-app .hub-node,
.art-app .hub-link {
  position: absolute;
}
.art-app .app-hub {
  inset: 14px;
}
.art-app .hub-core {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), color-mix(in srgb, var(--feature-accent) 74%, white) 56%, color-mix(in srgb, var(--feature-accent) 34%, transparent) 100%);
  box-shadow: 0 0 28px color-mix(in srgb, var(--feature-accent) 34%, transparent);
  animation: corePulse 3s ease-in-out infinite;
}
.art-app .hub-ring {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--feature-accent) 22%, transparent);
  transform: translate(-50%, -50%);
}
.art-app .ring-a {
  width: 122px;
  height: 122px;
  animation: ringPulse 4.8s ease-in-out infinite;
}
.art-app .ring-b {
  width: 154px;
  height: 154px;
  border-style: dashed;
  border-color: rgba(134, 177, 255, 0.12);
  animation: rotateFlow 10s linear infinite;
}
.art-app .hub-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(116, 161, 255, 0.7));
  box-shadow: 0 0 18px rgba(84, 140, 255, 0.34);
  animation: nodeBlink 3.2s ease-in-out infinite;
}
.art-app .node-left {
  left: 16px;
  top: 82px;
}
.art-app .node-top {
  left: 76px;
  top: 10px;
  animation-delay: -0.9s;
}
.art-app .node-right {
  right: 12px;
  top: 74px;
  animation-delay: -1.8s;
}
.art-app .hub-link {
  left: 50%;
  top: 50%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(104, 151, 255, 0.82), rgba(104, 151, 255, 0));
}
.art-app .link-left {
  width: 72px;
  transform: rotate(158deg);
}
.art-app .link-top {
  width: 64px;
  transform: rotate(-96deg);
}
.art-app .link-right {
  width: 70px;
  transform: rotate(18deg);
}

.art-agent .agent-core-shell,
.art-agent .agent-core-center,
.art-agent .agent-pulse,
.art-agent .agent-track,
.art-agent .agent-satellite {
  position: absolute;
}
.art-agent .agent-core-shell {
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(134, 177, 255, 0.24);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(24, 42, 82, 0.42) 68%, rgba(10, 18, 36, 0.12) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 34px color-mix(in srgb, var(--feature-accent) 24%, transparent);
  backdrop-filter: blur(14px);
}
.art-agent .agent-core-center {
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98), rgba(116, 161, 255, 0.86));
  box-shadow: 0 0 18px rgba(81, 140, 255, 0.44);
}
.art-agent .agent-pulse {
  inset: 6px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--feature-accent) 20%, transparent);
  animation: agentPulse 3.4s ease-in-out infinite;
}
.art-agent .pulse-b {
  animation-delay: -1.7s;
}
.art-agent .agent-track {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--feature-accent) 20%, transparent);
  transform: translate(-50%, -50%);
}
.art-agent .track-a {
  width: 148px;
  height: 64px;
  transform: translate(-50%, -50%) rotate(20deg);
  animation: rotateTrackA 12s linear infinite;
}
.art-agent .track-b {
  width: 148px;
  height: 64px;
  transform: translate(-50%, -50%) rotate(-22deg);
  animation: rotateTrackB 9s linear infinite;
}
.art-agent .agent-satellite {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), color-mix(in srgb, var(--feature-accent) 72%, white));
  box-shadow: 0 0 16px color-mix(in srgb, var(--feature-accent) 34%, transparent);
}
.art-agent .satellite-a {
  left: 24px;
  top: 74px;
}
.art-agent .satellite-b {
  right: 26px;
  top: 48px;
}
.art-agent .satellite-c {
  left: 84px;
  bottom: 18px;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes sheetFrontFloat {
  0%, 100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-6deg) translateY(-7px);
  }
}
@keyframes sheetBackFloat {
  0%, 100% {
    transform: rotate(10deg) translateY(0);
  }
  50% {
    transform: rotate(12deg) translateY(6px);
  }
}
@keyframes cardMainFloat {
  0%, 100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-1deg) translateY(-7px);
  }
}
@keyframes cardSideFloat {
  0%, 100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(11deg) translateY(6px);
  }
}
@keyframes pathGlow {
  0%, 100% {
    opacity: 0.45;
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--feature-accent) 28%, transparent));
  }
}
@keyframes rotateFlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes corePulse {
  0%, 100% {
    box-shadow: 0 0 18px color-mix(in srgb, var(--feature-accent) 24%, transparent);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 32px color-mix(in srgb, var(--feature-accent) 42%, transparent);
    transform: translate(-50%, -50%) scale(1.08);
  }
}
@keyframes ringPulse {
  0%, 100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.06);
  }
}
@keyframes nodeBlink {
  0%, 100% {
    opacity: 0.58;
    box-shadow: 0 0 10px color-mix(in srgb, var(--feature-accent) 20%, transparent);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 22px color-mix(in srgb, var(--feature-accent) 42%, transparent);
  }
}
@keyframes agentPulse {
  0%, 100% {
    opacity: 0.34;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.84;
    transform: scale(1.08);
  }
}
@keyframes rotateTrackA {
  from {
    transform: translate(-50%, -50%) rotate(20deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(380deg);
  }
}
@keyframes rotateTrackB {
  from {
    transform: translate(-50%, -50%) rotate(-22deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-382deg);
  }
}
.feature-board-head {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.feature-board-copy {
  max-width: 620px;
}

.feature-board-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
}

.feature-board-head .arco-typography,
.feature-board-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62) !important;
  line-height: 1.72;
  font-size: 16px !important;
  font-weight: 400;
  letter-spacing: 0;
  max-width: 620px;
}

.feature-board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 16px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.feature-board-cell {
  padding: 12px 14px;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.feature-board-cell:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.feature-board-cell:hover .cell-icon {
  color: color-mix(in srgb, var(--feature-accent) 60%, white);
  background: linear-gradient(180deg, color-mix(in srgb, var(--feature-accent) 34%, transparent), color-mix(in srgb, var(--feature-accent) 18%, transparent)), rgba(10, 18, 36, 0.82);
  border-color: color-mix(in srgb, var(--feature-accent) 28%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 24px color-mix(in srgb, var(--feature-accent) 22%, transparent), 0 0 18px color-mix(in srgb, var(--feature-accent) 16%, transparent);
}

.cell-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--feature-accent) 42%, white);
  background: linear-gradient(180deg, color-mix(in srgb, var(--feature-accent) 22%, transparent), color-mix(in srgb, var(--feature-accent) 12%, transparent)), rgba(10, 18, 36, 0.72);
  border: 1px solid color-mix(in srgb, var(--feature-accent) 18%, transparent);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 18px rgba(7, 15, 34, 0.18);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cell-name {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.section-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #8fb2ff;
  font-size: 14px;
  font-weight: 500;
}

.section-mark {
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(37, 86, 255, 0.2));
}

.pioneers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pioneer-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.pioneer-avatar {
  height: 260px;
  background: radial-gradient(circle at 50% 38%, rgba(255, 214, 184, 0.86) 0 12%, transparent 12.5%), radial-gradient(circle at 50% 48%, rgba(58, 42, 38, 0.86) 0 21%, transparent 21.5%), radial-gradient(circle at 50% 76%, rgba(22, 24, 33, 0.9) 0 30%, transparent 30.5%), linear-gradient(180deg, #161a2a 0%, #0d0d12 100%);
}

.pioneer-copy {
  padding: 18px;
}
.pioneer-copy h3 {
  margin: 8px 0 12px;
  color: #f2f6ff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.pioneer-copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.75;
}
.pioneer-copy a {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.pioneer-label,
.story-label,
.solution-kicker,
.footer-kicker {
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.method-panel {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.method-header {
  margin-bottom: 26px;
  text-align: center;
}

.method-title {
  margin: 0;
  color: #ffffff;
  font-size: 46px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.method-desc {
  max-width: 720px;
  margin: 16px auto 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 16px !important;
  line-height: 1.8;
}

.solution-scene-tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 36px;
}

.solution-scene-tab {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  padding: 0 14px;
  cursor: pointer;
  transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}
.solution-scene-tab:hover {
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(111, 152, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}
.solution-scene-tab.active {
  color: #ffffff;
  border-color: rgba(118, 159, 255, 0.28);
  background: linear-gradient(180deg, rgba(88, 126, 255, 0.24), rgba(88, 126, 255, 0.08)), rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 28px rgba(16, 44, 122, 0.18);
}

.solution-scene-panel {
  --scene-accent: #4f8fff;
  --scene-accent-rgb: 79, 143, 255;
  --scene-accent-soft: rgba(79, 143, 255, 0.3);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 80px;
  min-height: 500px;
  padding: 8px 0 0;
  overflow: visible;
}

.solution-scene-panel-presentation {
  --scene-accent: #3d8fff;
  --scene-accent-rgb: 61, 143, 255;
  --scene-accent-soft: rgba(61, 143, 255, 0.32);
}

.solution-scene-panel-business {
  --scene-accent: #6f84ff;
  --scene-accent-rgb: 111, 132, 255;
  --scene-accent-soft: rgba(111, 132, 255, 0.32);
}

.solution-scene-panel-courseware {
  --scene-accent: #16c8ff;
  --scene-accent-rgb: 22, 200, 255;
  --scene-accent-soft: rgba(22, 200, 255, 0.3);
}

.solution-scene-panel-defense {
  --scene-accent: #746bff;
  --scene-accent-rgb: 116, 107, 255;
  --scene-accent-soft: rgba(116, 107, 255, 0.3);
}

.solution-scene-panel-report {
  --scene-accent: #25b6ff;
  --scene-accent-rgb: 37, 182, 255;
  --scene-accent-soft: rgba(37, 182, 255, 0.32);
}

.solution-scene-panel-resume {
  --scene-accent: #4f9aff;
  --scene-accent-rgb: 79, 154, 255;
  --scene-accent-soft: rgba(79, 154, 255, 0.32);
}

.solution-scene-panel-contract {
  --scene-accent: #5e7cff;
  --scene-accent-rgb: 94, 124, 255;
  --scene-accent-soft: rgba(94, 124, 255, 0.3);
}

.solution-scene-panel-marketing {
  --scene-accent: #7b63ff;
  --scene-accent-rgb: 123, 99, 255;
  --scene-accent-soft: rgba(123, 99, 255, 0.32);
}

.solution-scene-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
  padding: 8px 0 28px;
}
.solution-scene-copy h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.solution-scene-copy .arco-typography,
.solution-scene-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  line-height: 1.78;
  max-width: 640px;
}

.solution-scene-accent {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--scene-accent) 28%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--scene-accent) 18%, transparent), rgba(255, 255, 255, 0.02));
  color: color-mix(in srgb, var(--scene-accent) 72%, white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.solution-scene-actions {
  margin-top: 34px;
}

.solution-scene-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
.solution-scene-visual::before {
  content: "";
  position: absolute;
  inset: 12% 8% 6% 18%;
  border-radius: 28px;
  background: radial-gradient(circle at 24% 26%, color-mix(in srgb, var(--scene-accent) 16%, transparent), transparent 34%), radial-gradient(circle at 78% 70%, color-mix(in srgb, var(--scene-accent) 10%, transparent), transparent 32%);
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
}

.solution-scene-pattern {
  position: absolute;
  inset: 0 0 12px 8%;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--scene-accent) 28%, transparent) 0 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.32) 18%, #000 56%, transparent 100%);
  mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.32) 18%, #000 56%, transparent 100%);
}

.solution-scene-art {
  position: relative;
  width: min(100%, 480px);
  height: 400px;
  z-index: 1;
  perspective: 1480px;
  filter: saturate(1.1) contrast(1.03);
}

.scene-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(56deg) rotateZ(-45deg) scale(0.98);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: visible;
}

.scene-device,
.scene-panel,
.scene-report-card,
.scene-profile-card,
.scene-contract-sheet,
.scene-folder,
.scene-card-stack,
.scene-lesson-board,
.scene-defense-board,
.scene-defense-card,
.scene-book-stack,
.scene-floating-card,
.scene-presentation-card,
.scene-note-card,
.scene-thesis-stack,
.scene-metric-chip,
.scene-report-badge,
.scene-job-card,
.scene-clause-card,
.scene-phone-card,
.scene-megaphone {
  position: absolute;
  transform-style: preserve-3d;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), linear-gradient(160deg, rgba(7, 12, 24, 0.96), rgba(8, 14, 30, 0.78));
  backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -12px 12px 30px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}
.scene-device::before,
.scene-panel::before,
.scene-report-card::before,
.scene-profile-card::before,
.scene-contract-sheet::before,
.scene-folder::before,
.scene-card-stack::before,
.scene-lesson-board::before,
.scene-defense-board::before,
.scene-defense-card::before,
.scene-book-stack::before,
.scene-floating-card::before,
.scene-presentation-card::before,
.scene-note-card::before,
.scene-thesis-stack::before,
.scene-metric-chip::before,
.scene-report-badge::before,
.scene-job-card::before,
.scene-clause-card::before,
.scene-phone-card::before,
.scene-megaphone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%), radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
  z-index: 2;
}
.scene-device .thickness-right,
.scene-panel .thickness-right,
.scene-report-card .thickness-right,
.scene-profile-card .thickness-right,
.scene-contract-sheet .thickness-right,
.scene-folder .thickness-right,
.scene-card-stack .thickness-right,
.scene-lesson-board .thickness-right,
.scene-defense-board .thickness-right,
.scene-defense-card .thickness-right,
.scene-book-stack .thickness-right,
.scene-floating-card .thickness-right,
.scene-presentation-card .thickness-right,
.scene-note-card .thickness-right,
.scene-thesis-stack .thickness-right,
.scene-metric-chip .thickness-right,
.scene-report-badge .thickness-right,
.scene-job-card .thickness-right,
.scene-clause-card .thickness-right,
.scene-phone-card .thickness-right,
.scene-megaphone .thickness-right {
  position: absolute;
  top: 0;
  left: 100%;
  width: 10px;
  height: 100%;
  background: linear-gradient(to right, color-mix(in srgb, var(--scene-accent) 14%, rgba(255, 255, 255, 0.05)), rgba(255, 255, 255, 0.03));
  transform-origin: left;
  transform: rotateY(90deg);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.scene-device .thickness-bottom,
.scene-panel .thickness-bottom,
.scene-report-card .thickness-bottom,
.scene-profile-card .thickness-bottom,
.scene-contract-sheet .thickness-bottom,
.scene-folder .thickness-bottom,
.scene-card-stack .thickness-bottom,
.scene-lesson-board .thickness-bottom,
.scene-defense-board .thickness-bottom,
.scene-defense-card .thickness-bottom,
.scene-book-stack .thickness-bottom,
.scene-floating-card .thickness-bottom,
.scene-presentation-card .thickness-bottom,
.scene-note-card .thickness-bottom,
.scene-thesis-stack .thickness-bottom,
.scene-metric-chip .thickness-bottom,
.scene-report-badge .thickness-bottom,
.scene-job-card .thickness-bottom,
.scene-clause-card .thickness-bottom,
.scene-phone-card .thickness-bottom,
.scene-megaphone .thickness-bottom {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(6, 10, 20, 0.16));
  transform-origin: top;
  transform: rotateX(-90deg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.thickness-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
}

.thickness-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
}

@keyframes sceneIsoFloat {
  0%, 100% {
    transform: translateZ(20px);
  }
  50% {
    transform: translateZ(45px);
  }
}
@keyframes sceneIsoFloatHigh {
  0%, 100% {
    transform: translateZ(80px);
  }
  50% {
    transform: translateZ(110px);
  }
}
@keyframes sceneIsoFloatLow {
  0%, 100% {
    transform: translateZ(10px);
  }
  50% {
    transform: translateZ(25px);
  }
}
@keyframes scenePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes barGrow {
  0% {
    height: 20%;
  }
  100% {
    height: 100%;
  }
}
@keyframes sceneBarRise {
  0% {
    height: 30%;
    opacity: 0.6;
  }
  100% {
    height: 90%;
    opacity: 1;
  }
}
@keyframes signFlow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes signFlowPen {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(80px);
    opacity: 0;
  }
}
@keyframes sceneBeam {
  0% {
    transform: translateZ(40px) rotate(-30deg) translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateZ(40px) rotate(-30deg) translateX(100%);
    opacity: 0;
  }
}
@keyframes soundWave {
  0%, 100% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}
@keyframes barFlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes sceneSparkle {
  0%, 100% {
    transform: translateZ(100px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateZ(120px) scale(1.5);
    opacity: 0.8;
  }
}
.scene-device,
.scene-profile-card,
.scene-contract-sheet,
.scene-panel.main-panel,
.scene-report-card.report-main,
.scene-lesson-board,
.scene-defense-board {
  animation: sceneIsoFloat 6.4s ease-in-out infinite;
}

.scene-floating-card,
.scene-presentation-card,
.scene-note-card,
.scene-thesis-stack,
.scene-metric-chip,
.scene-report-badge,
.scene-job-card,
.scene-clause-card,
.scene-phone-card {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), color-mix(in srgb, var(--scene-accent) 12%, rgba(255, 255, 255, 0.02))), rgba(10, 18, 36, 0.46);
  border: 1px solid rgba(176, 202, 255, 0.12);
  box-shadow: 0 12px 28px rgba(8, 15, 34, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.scene-floating-card::before,
.scene-floating-card::after,
.scene-thesis-stack::before,
.scene-thesis-stack::after,
.scene-book-stack::before,
.scene-book-stack::after,
.scene-metric-chip::before,
.scene-metric-chip::after,
.scene-report-badge::before,
.scene-report-badge::after,
.scene-phone-card::before,
.scene-card-stack::before,
.scene-card-stack::after,
.scene-folder::after,
.scene-defense-card::before,
.scene-panel::before,
.scene-report-card::before,
.scene-profile-card::before,
.scene-contract-sheet::before,
.scene-lesson-board::before {
  content: "";
  position: absolute;
}

.scene-presentation-card span,
.scene-note-card span,
.scene-job-card span,
.scene-clause-card span {
  position: absolute;
  display: block;
  left: 16px;
  right: 16px;
  border-radius: 999px;
}

.scene-stage-presentation .scene-presentation-workspace {
  left: 220px;
  top: 60px;
  width: 280px;
  height: 200px;
  border-radius: 16px;
  transform: translateZ(40px);
  animation: sceneIsoFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-presentation .scene-presentation-workspace .thickness-right {
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: -6px;
  width: 12px;
  background: rgba(30, 80, 255, 0.3);
  transform: skewY(45deg);
  border-radius: 0 4px 4px 0;
}
.scene-stage-presentation .scene-presentation-workspace .thickness-bottom {
  position: absolute;
  bottom: -12px;
  left: 6px;
  right: -6px;
  height: 12px;
  background: rgba(10, 15, 35, 0.4);
  transform: skewX(45deg);
  border-radius: 0 0 4px 4px;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(165deg, rgba(30, 80, 255, 0.95), rgba(10, 15, 35, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 20px 50px rgba(0, 0, 0, 0.3);
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .screen-header {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .screen-header .dots {
  display: flex;
  gap: 4px;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .screen-header .dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .screen-header .screen-title {
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content {
  flex: 1;
  padding: 20px;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content .content-canvas {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content .content-canvas .canvas-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 15px 15px;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content .content-canvas .canvas-elements {
  position: relative;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content .content-canvas .canvas-elements .el-title {
  width: 100px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  opacity: 0.8;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content .content-canvas .canvas-elements .el-body {
  width: 160px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content .content-canvas .canvas-elements .el-image {
  margin-top: 10px;
  width: 140px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-content .content-canvas .canvas-elements .el-image .img-placeholder {
  color: var(--scene-accent);
  animation: scenePulse 2s infinite;
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-footer {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.2);
}
.scene-stage-presentation .scene-presentation-workspace .workspace-screen .workspace-footer .ai-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 900;
  color: var(--scene-accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.scene-stage-presentation .scene-slide-thumbnails {
  position: absolute;
  left: 180px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateZ(80px);
  transform-style: preserve-3d;
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb {
  position: relative;
  width: 50px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  animation: sceneIsoFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb.thumb-1 {
  animation-delay: 0s;
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb.thumb-2 {
  animation-delay: -1s;
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb.thumb-3 {
  animation-delay: -2s;
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb .thickness-right {
  position: absolute;
  right: -4px;
  top: 2px;
  bottom: -2px;
  width: 4px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb .thickness-bottom {
  position: absolute;
  bottom: -4px;
  left: 2px;
  right: -2px;
  height: 4px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb .thumb-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb .thumb-inner .t-l-1 {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}
.scene-stage-presentation .scene-slide-thumbnails .slide-thumb .thumb-inner .t-l-2 {
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}
.scene-stage-presentation .scene-ai-toolbox {
  position: absolute;
  right: 20px;
  top: 120px;
  width: 40px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transform: translateZ(100px);
  animation: sceneIsoFloatHigh 8s ease-in-out infinite;
  padding: 8px;
  transform-style: preserve-3d;
}
.scene-stage-presentation .scene-ai-toolbox .thickness-right {
  position: absolute;
  right: -6px;
  top: 3px;
  bottom: -3px;
  width: 6px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-presentation .scene-ai-toolbox .thickness-bottom {
  position: absolute;
  bottom: -6px;
  left: 3px;
  right: -3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-presentation .scene-ai-toolbox .toolbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scene-stage-presentation .scene-ai-toolbox .toolbox-inner .tool-item {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}
.scene-stage-presentation .scene-ai-toolbox .toolbox-inner .tool-item.active {
  background: var(--scene-accent);
  color: #fff;
  box-shadow: 0 4px 10px var(--scene-accent-soft);
}
.scene-stage-presentation .scene-floating-node {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--scene-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 20px var(--scene-accent-soft);
  animation: scenePulse 3s infinite;
}
.scene-stage-presentation .scene-floating-node.node-a {
  left: 20%;
  top: 30%;
  transform: translateZ(120px);
}
.scene-stage-presentation .scene-floating-node.node-b {
  right: 25%;
  bottom: 30%;
  transform: translateZ(150px);
  animation-delay: -1.5s;
}
.scene-stage-presentation .scene-spotlight {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle at center, rgba(38, 99, 255, 0.1) 0%, transparent 70%);
  filter: blur(30px);
  transform: translateZ(-10px);
}

.scene-stage-courseware .scene-lesson-board {
  left: 100px;
  top: 40px;
  width: 260px;
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  transform: translateZ(20px);
  display: flex;
  flex-direction: column;
  animation: sceneIsoFloat 6.4s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-courseware .scene-lesson-board .thickness-right {
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: -6px;
  width: 12px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-courseware .scene-lesson-board .thickness-bottom {
  position: absolute;
  bottom: -12px;
  left: 6px;
  right: -6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-courseware .scene-lesson-board .board-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.scene-stage-courseware .scene-lesson-board .board-header .header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-stage-courseware .scene-lesson-board .board-header .header-left .icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--scene-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--scene-accent-soft);
}
.scene-stage-courseware .scene-lesson-board .board-header .header-left .header-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scene-stage-courseware .scene-lesson-board .board-header .header-left .header-meta .header-line {
  width: 60px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  opacity: 0.8;
}
.scene-stage-courseware .scene-lesson-board .board-header .header-left .header-meta .header-sub {
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.scene-stage-courseware .scene-lesson-board .board-header .header-right .status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255, 77, 79, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 77, 79, 0.2);
}
.scene-stage-courseware .scene-lesson-board .board-header .header-right .status-indicator .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4d4f;
  animation: scenePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px #ff4d4f;
}
.scene-stage-courseware .scene-lesson-board .board-header .header-right .status-indicator .label {
  font-size: 8px;
  font-weight: 900;
  color: #ff4d4f;
  white-space: nowrap;
}
.scene-stage-courseware .scene-lesson-board .board-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row.active .check {
  background: var(--scene-accent);
  border-color: transparent;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row.active .row-tag {
  opacity: 1;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row .check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row .lesson-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row .lesson-lines .lesson-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 2px;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row .lesson-lines .lesson-line-sub {
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 1.5px;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row .row-interactive-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: scenePulse 2s ease-in-out infinite;
}
.scene-stage-courseware .scene-lesson-board .board-content .lesson-row .row-tag {
  font-size: 8px;
  font-weight: 800;
  color: var(--scene-accent);
  padding: 2px 6px;
  background: var(--feature-accent-soft);
  border-radius: 4px;
  opacity: 0;
  white-space: nowrap;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui {
  padding: 16px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .progress-stats {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .progress-stats .ring-box {
  position: relative;
  width: 40px;
  height: 40px;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .progress-stats .ring-box svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .progress-stats .ring-box .val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .progress-stats .stats-copy {
  display: flex;
  flex-direction: column;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .progress-stats .stats-copy .s-1 {
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  opacity: 0.9;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .progress-stats .stats-copy .s-2 {
  font-size: 7px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .achievement-mini-grid {
  display: flex;
  gap: 4px;
  margin: 0 8px;
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .achievement-mini-grid .achieve-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffda44;
  box-shadow: 0 0 10px rgba(255, 218, 68, 0.2);
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .lesson-badge-large {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: rotate(12deg) translateZ(10px);
}
.scene-stage-courseware .scene-lesson-board .lesson-footer-ui .lesson-badge-large .badge-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, var(--scene-accent-soft) 0%, transparent 70%);
  z-index: -1;
}
.scene-stage-courseware .scene-quiz-float {
  position: absolute;
  left: 20px;
  top: 60px;
  width: 120px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transform: translateZ(90px);
  animation: sceneIsoFloatHigh 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-courseware .scene-quiz-float .thickness-right {
  position: absolute;
  right: -8px;
  top: 4px;
  bottom: -4px;
  width: 8px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-courseware .scene-quiz-float .thickness-bottom {
  position: absolute;
  bottom: -8px;
  left: 4px;
  right: -4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-courseware .scene-quiz-float .quiz-ui {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-head .q-label {
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-head {
  color: #ffcc00;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-opt {
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-opt .opt-fill {
  position: absolute;
  inset: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  width: 80%;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-opt.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--scene-accent);
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-opt.active .opt-check {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--scene-accent);
  box-shadow: 0 0 6px var(--scene-accent);
  position: relative;
  z-index: 2;
}
.scene-stage-courseware .scene-quiz-float .quiz-ui .quiz-opt.active .opt-fill {
  background: var(--scene-accent);
  width: 60%;
  opacity: 0.2;
}
.scene-stage-courseware .scene-teacher-card {
  position: absolute;
  right: 40px;
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transform: translateZ(120px);
  animation: sceneIsoFloat 5.2s ease-in-out infinite alternate;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.scene-stage-courseware .scene-teacher-card .avatar-box {
  position: relative;
  width: 40px;
  height: 40px;
}
.scene-stage-courseware .scene-teacher-card .avatar-box .avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-stage-courseware .scene-teacher-card .avatar-box .online-dot {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff88;
  border: 2px solid rgb(7, 12, 28);
  box-shadow: 0 0 8px #00ff88;
}
.scene-stage-courseware .scene-teacher-card .teacher-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.scene-stage-courseware .scene-teacher-card .teacher-info .n-line {
  width: 50px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}
.scene-stage-courseware .scene-teacher-card .teacher-info .s-line {
  font-size: 8px;
  font-weight: 800;
  color: var(--scene-accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-courseware .scene-teacher-card .info-action {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.3);
}
.scene-stage-courseware .scene-book-3d {
  position: absolute;
  right: 60px;
  top: 60px;
  width: 80px;
  height: 110px;
  transform: translateZ(50px) rotateY(-10deg);
  transform-style: preserve-3d;
  animation: sceneIsoFloat 7s ease-in-out infinite alternate;
}
.scene-stage-courseware .scene-book-3d .thickness-right {
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: -6px;
  width: 12px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-courseware .scene-book-3d .thickness-bottom {
  position: absolute;
  bottom: -12px;
  left: 6px;
  right: -6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-courseware .scene-book-3d .book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--scene-accent);
  border-radius: 4px 0 0 4px;
  opacity: 0.8;
}
.scene-stage-courseware .scene-book-3d .book-cover {
  position: absolute;
  left: 10px;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  gap: 6px;
}
.scene-stage-courseware .scene-book-3d .book-cover .c-line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.scene-stage-courseware .scene-book-3d .book-cover .c-line-s {
  width: 60%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.scene-stage-defense .scene-defense-board {
  left: 100px;
  top: 40px;
  width: 280px;
  height: 220px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  transform: translateZ(25px);
  display: flex;
  flex-direction: column;
  animation: sceneIsoFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-defense .scene-defense-board .thickness-right {
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: -6px;
  width: 12px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-defense .scene-defense-board .thickness-bottom {
  position: absolute;
  bottom: -12px;
  left: 6px;
  right: -6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-defense .scene-defense-board .defense-ui {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .header-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .header-main .icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scene-accent);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .header-main .header-text-group {
  display: flex;
  flex-direction: column;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .header-main .header-text-group .title-text {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .header-main .header-text-group .subtitle-text {
  font-size: 7px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .defense-timer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .defense-timer .timer-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .defense-timer .timer-box .time-val {
  font-size: 12px;
  font-weight: 900;
  color: var(--scene-accent);
  font-family: monospace;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .defense-timer .timer-box .timer-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--scene-accent);
  animation: scenePulse 1s ease-in-out infinite;
  box-shadow: 0 0 8px var(--scene-accent);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-header .defense-timer .time-lbl {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 800;
  white-space: nowrap;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view {
  flex: 1;
  display: flex;
  padding: 16px;
  gap: 16px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-chart-box {
  position: absolute;
  inset: 16px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-chart-box .chart-bar-v {
  flex: 1;
  background: linear-gradient(to top, var(--scene-accent), color-mix(in srgb, var(--scene-accent) 40%, white));
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
  animation: sceneBarRise 3s ease-in-out infinite alternate;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-chart-box .chart-bar-v.delay-1 {
  animation-delay: -0.5s;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-chart-box .chart-bar-v.delay-2 {
  animation-delay: -1s;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-chart-box .chart-bar-v.delay-3 {
  animation-delay: -1.5s;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-chart-box .chart-line-indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-data-overlay {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-data-overlay .data-node {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 6px;
  color: #00ff88;
  font-size: 8px;
  font-weight: 800;
  border: 1px solid rgba(0, 255, 136, 0.2);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-frame .view-data-overlay .data-node.secondary {
  background: rgba(38, 99, 255, 0.15);
  color: var(--scene-accent);
  border-color: rgba(38, 99, 255, 0.2);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar {
  width: 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar .chapter {
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar .chapter::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: repeating-linear-gradient(rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 6px);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar .chapter.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar .chapter.active::after {
  display: none;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar .chapter.active .c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--scene-accent);
  box-shadow: 0 0 6px var(--scene-accent);
  position: relative;
  z-index: 1;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar .chapter.active .c-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--scene-accent);
  border-radius: 0 0 8px 8px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-main-view .view-sidebar .chapter-more {
  margin-top: auto;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls .btn-group {
  display: flex;
  gap: 8px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls .btn-group .btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls .btn-group .btn.active {
  background: var(--scene-accent);
  color: #fff;
  box-shadow: 0 0 10px var(--scene-accent-soft);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls .academic-badges {
  display: flex;
  gap: 4px;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls .academic-badges span {
  font-size: 6px;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls .laser-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  font-weight: 900;
  color: #ff4d4f;
}
.scene-stage-defense .scene-defense-board .defense-ui .defense-footer-controls .laser-status .l-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4d4f;
  animation: scenePulse 1s ease-in-out infinite;
  box-shadow: 0 0 8px #ff4d4f;
}
.scene-stage-defense .scene-thesis-3d {
  position: absolute;
  left: 20px;
  bottom: 40px;
  width: 110px;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px 12px 12px 4px;
  transform: translateZ(90px) rotate(-10deg);
  animation: sceneIsoFloatHigh 6s ease-in-out infinite alternate;
  transform-style: preserve-3d;
}
.scene-stage-defense .scene-thesis-3d .thickness-right {
  position: absolute;
  right: -10px;
  top: 5px;
  bottom: -5px;
  width: 10px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-defense .scene-thesis-3d .thickness-bottom {
  position: absolute;
  bottom: -10px;
  left: 5px;
  right: -5px;
  height: 10px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-defense .scene-thesis-3d .thesis-content {
  position: relative;
  z-index: 2;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.scene-stage-defense .scene-thesis-3d .thesis-content .thesis-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
}
.scene-stage-defense .scene-thesis-3d .thesis-content .thesis-ribbon {
  position: absolute;
  right: 20px;
  top: 0;
  width: 14px;
  height: 36px;
  background: #ff4d4f;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.scene-stage-defense .scene-thesis-3d .thesis-content .thesis-cover-art {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scene-stage-defense .scene-thesis-3d .thesis-content .thesis-cover-art .art-box {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.scene-stage-defense .scene-thesis-3d .thesis-content .thesis-cover-art .art-line {
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.scene-stage-defense .scene-citation-box {
  position: absolute;
  right: 40px;
  top: 50px;
  width: 120px;
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transform: translateZ(140px);
  animation: sceneIsoFloat 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-defense .scene-citation-box .thickness-right {
  position: absolute;
  right: -8px;
  top: 4px;
  bottom: -4px;
  width: 8px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-defense .scene-citation-box .thickness-bottom {
  position: absolute;
  bottom: -8px;
  left: 4px;
  right: -4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-defense .scene-citation-box .cite-ui {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-stage-defense .scene-citation-box .cite-ui .cite-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #ffcc00;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}
.scene-stage-defense .scene-citation-box .cite-ui .cite-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scene-stage-defense .scene-citation-box .cite-ui .cite-lines span {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1.5px;
}
.scene-stage-defense .scene-citation-box .cite-ui .cite-lines .l-1 {
  width: 100%;
}
.scene-stage-defense .scene-citation-box .cite-ui .cite-lines .l-2 {
  width: 80%;
}
.scene-stage-defense .scene-citation-box .cite-ui .cite-lines .l-3 {
  width: 50%;
}
.scene-stage-defense .scene-laser-beam {
  position: absolute;
  left: 140px;
  top: 110px;
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, #ff4d4f, transparent);
  transform: translateZ(50px) rotate(-25deg);
  animation: sceneBeam 2s ease-in-out infinite;
  filter: blur(1px);
  box-shadow: 0 0 8px #ff4d4f;
}

.scene-stage-business .main-panel {
  left: 80px;
  top: 40px;
  width: 300px;
  height: 220px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  transform: translateZ(25px);
  display: flex;
  flex-direction: column;
  animation: sceneIsoFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-business .main-panel .thickness-right {
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: -6px;
  width: 12px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-business .main-panel .thickness-bottom {
  position: absolute;
  bottom: -12px;
  left: 6px;
  right: -6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-business .main-panel .panel-ui {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.scene-stage-business .main-panel .panel-ui .panel-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.scene-stage-business .main-panel .panel-ui .panel-header .header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scene-stage-business .main-panel .panel-ui .panel-header .header-left .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--scene-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px var(--scene-accent-soft);
}
.scene-stage-business .main-panel .panel-ui .panel-header .header-left .header-text {
  display: flex;
  flex-direction: column;
}
.scene-stage-business .main-panel .panel-ui .panel-header .header-left .header-text .title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-business .main-panel .panel-ui .panel-header .header-left .header-text .subtitle {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  white-space: nowrap;
}
.scene-stage-business .main-panel .panel-ui .panel-header .panel-status-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 999px;
  color: #00ff88;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
  white-space: nowrap;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container {
  flex: 1;
  position: relative;
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .graph-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  z-index: 1;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart .candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 8px;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart .candle .wick {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart .candle .body {
  width: 8px;
  border-radius: 1px;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart .candle.up .wick {
  background: #00ff88;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart .candle.up .body {
  height: 24px;
  background: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart .candle.down .wick {
  background: #ff4d4f;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .candlestick-chart .candle.down .body {
  height: 18px;
  background: #ff4d4f;
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.3);
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .graph-svg-multi {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 8px var(--scene-accent-soft));
  position: relative;
  z-index: 2;
  opacity: 0.5;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .graph-svg-multi .graph-node-pulse {
  animation: scenePulse 2s ease-in-out infinite;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .graph-tooltip {
  position: absolute;
  left: 140px;
  top: 30px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .graph-tooltip .val {
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  font-family: monospace;
  white-space: nowrap;
}
.scene-stage-business .main-panel .panel-ui .panel-graph-container .graph-tooltip .time {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 800;
  white-space: nowrap;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-item span {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 800;
  white-space: nowrap;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-item strong {
  font-size: 11px;
  color: #fff;
  font-weight: 900;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-mini-chart {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-mini-chart span {
  width: 3px;
  background: var(--scene-accent);
  border-radius: 1px;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-mini-chart span:nth-child(1) {
  height: 40%;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-mini-chart span:nth-child(2) {
  height: 70%;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-mini-chart span:nth-child(3) {
  height: 50%;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-mini-chart span:nth-child(4) {
  height: 90%;
}
.scene-stage-business .main-panel .panel-ui .panel-footer-stats .stat-mini-chart span:nth-child(5) {
  height: 60%;
}
.scene-stage-business .scene-metric-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scene-stage-business .metric-item {
  position: absolute;
  width: 110px;
  height: 54px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  animation: sceneIsoFloatHigh 6s ease-in-out infinite;
}
.scene-stage-business .metric-item .metric-ui {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scene-stage-business .metric-item .metric-ui .m-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scene-accent);
}
.scene-stage-business .metric-item .metric-ui .m-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scene-stage-business .metric-item .metric-ui .m-data .v {
  width: 40px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
}
.scene-stage-business .metric-item .metric-ui .m-data .l {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1.5px;
}
.scene-stage-business .metric-item .metric-ui .m-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
}
.scene-stage-business .metric-item .metric-ui .m-progress .fill {
  height: 100%;
  background: var(--scene-accent);
  width: 70%;
}
.scene-stage-business .metric-item.item-a {
  left: 20px;
  top: 130px;
  transform: translateZ(90px);
  animation-delay: -1s;
}
.scene-stage-business .metric-item.item-b {
  right: 30px;
  top: 50px;
  transform: translateZ(110px);
  animation-delay: -2s;
}
.scene-stage-business .scene-coin-stack {
  position: absolute;
  right: 60px;
  bottom: 40px;
  transform: translateZ(140px);
}
.scene-stage-business .scene-coin-stack .coin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--scene-accent));
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: scenePulse 3s ease-in-out infinite alternate;
}
.scene-stage-business .scene-coin-stack .coin .inner {
  transform: translateZ(5px);
}
.scene-stage-business .scene-coin-stack .coin.coin-2 {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: translateZ(-20px);
  opacity: 0.5;
  animation-delay: -1.5s;
}

.scene-metric-chip {
  width: 96px;
  height: 48px;
  border-radius: 18px;
  animation: sceneFloatSide 6s ease-in-out infinite;
}
.scene-metric-chip::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, color-mix(in srgb, var(--scene-accent) 48%, white));
  box-shadow: 0 0 14px color-mix(in srgb, var(--scene-accent) 24%, transparent);
}
.scene-metric-chip::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 14px;
  top: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 0 rgba(189, 213, 255, 0.36);
}

.metric-a {
  right: 30px;
  top: 46px;
}

.metric-b {
  left: 42px;
  bottom: 38px;
  animation-delay: -1.5s;
}

.scene-coin {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, color-mix(in srgb, var(--scene-accent) 52%, white));
  box-shadow: 0 0 24px color-mix(in srgb, var(--scene-accent) 32%, transparent);
  animation: scenePulse 3.8s ease-in-out infinite;
}

.coin-a {
  left: 46px;
  bottom: 106px;
}

.coin-b {
  right: 40px;
  top: 84px;
  animation-delay: -1.2s;
}

.scene-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, color-mix(in srgb, var(--scene-accent) 60%, white));
  box-shadow: 0 0 12px color-mix(in srgb, var(--scene-accent) 30%, transparent);
  animation: sceneIsoFloatLow 4s ease-in-out infinite;
}
.scene-particle.p-1 {
  left: 10%;
  top: 20%;
  animation-delay: -1s;
}
.scene-particle.p-2 {
  right: 15%;
  top: 30%;
  animation-delay: -2.5s;
}
.scene-particle.p-3 {
  left: 20%;
  bottom: 15%;
  animation-delay: -0.5s;
}

.scene-stage-report .report-main {
  left: 100px;
  top: 40px;
  width: 300px;
  height: 220px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  transform: translateZ(25px);
  display: flex;
  flex-direction: column;
  animation: sceneIsoFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-report .report-main .thickness-right {
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: -6px;
  width: 12px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-report .report-main .thickness-bottom {
  position: absolute;
  bottom: -12px;
  left: 6px;
  right: -6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-report .report-main .report-ui {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.scene-stage-report .report-main .report-ui .report-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.scene-stage-report .report-main .report-ui .report-header .header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-stage-report .report-main .report-ui .report-header .header-left .header-status-tag {
  font-size: 8px;
  font-weight: 900;
  color: #fff;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.scene-stage-report .report-main .report-ui .report-header .report-id-badge {
  font-size: 8px;
  font-weight: 900;
  color: #00ff88;
  padding: 3px 10px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 6px;
  background: rgba(0, 255, 136, 0.05);
  white-space: nowrap;
}
.scene-stage-report .report-main .report-ui .report-content-grid {
  flex: 1;
  display: flex;
  padding: 24px;
  gap: 24px;
  background: rgba(0, 0, 0, 0.2);
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left {
  width: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left .gauge-box {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left .gauge-box .gauge-track {
  position: absolute;
  inset: 0;
  border: 6px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left .gauge-box .gauge-fill {
  position: absolute;
  inset: 0;
  border: 6px solid var(--scene-accent);
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 5px var(--scene-accent-soft));
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left .gauge-box .gauge-val {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left .report-mini-avatars {
  display: flex;
  margin-left: 8px;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left .report-mini-avatars .avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.5);
  margin-left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  font-weight: 800;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-left .report-mini-avatars .avatar:first-child {
  margin-left: 0;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack span {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2.5px;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack .l-1 {
  width: 100%;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack .l-2 {
  width: 80%;
  background: rgba(255, 255, 255, 0.06);
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack .l-3 {
  width: 90%;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack .status-pills {
  display: flex;
  gap: 6px;
  margin: 4px 0;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack .status-pills .pill {
  width: 24px;
  height: 6px;
  border-radius: 3px;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack .status-pills .pill.green {
  background: #00ff88;
  opacity: 0.6;
}
.scene-stage-report .report-main .report-ui .report-content-grid .content-right .lines-stack .status-pills .pill.blue {
  background: var(--scene-accent);
  opacity: 0.6;
}
.scene-stage-report .report-main .report-ui .report-footer-signature {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-report .report-main .report-ui .report-footer-signature .sign-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scene-stage-report .report-main .report-ui .report-footer-signature .sign-info .sign-label {
  font-size: 7px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}
.scene-stage-report .report-main .report-ui .report-footer-signature .sign-info .sign-path {
  width: 80px;
  height: 16px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  mask-image: radial-gradient(circle, #000 30%, transparent 90%);
  animation: signFlow 3s ease-in-out infinite;
}
.scene-stage-report .report-main .report-ui .report-footer-signature .report-stamp-3d {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 255, 136, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg) translateZ(10px);
  background: rgba(0, 255, 136, 0.03);
}
.scene-stage-report .report-main .report-ui .report-footer-signature .report-stamp-3d .stamp-inner-3d {
  font-size: 9px;
  font-weight: 900;
  color: #00ff88;
  letter-spacing: 0.05em;
}
.scene-stage-report .scene-kpi-chip {
  position: absolute;
  left: 20px;
  top: 130px;
  width: 120px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transform: translateZ(90px);
  animation: sceneIsoFloatHigh 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-report .scene-kpi-chip .thickness-right {
  position: absolute;
  right: -8px;
  top: 4px;
  bottom: -4px;
  width: 8px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-report .scene-kpi-chip .thickness-bottom {
  position: absolute;
  bottom: -8px;
  left: 4px;
  right: -4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-report .scene-kpi-chip .kpi-ui {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-stage-report .scene-kpi-chip .kpi-ui .kpi-data {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.scene-stage-report .scene-kpi-chip .kpi-ui .kpi-data .k-v {
  font-size: 14px;
  font-weight: 900;
  color: #00ff88;
  font-family: monospace;
}
.scene-stage-report .scene-kpi-chip .kpi-ui .kpi-data .k-l {
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}
.scene-stage-report .scene-notification-bubble {
  position: absolute;
  right: 40px;
  top: 60px;
  width: 36px;
  height: 36px;
  background: var(--scene-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(120px);
  box-shadow: 0 0 20px var(--scene-accent-soft);
  animation: scenePulse 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.scene-stage-resume .scene-profile-card {
  left: 100px;
  top: 40px;
  width: 280px;
  height: 240px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  transform: translateZ(25px);
  display: flex;
  flex-direction: column;
  animation: sceneIsoFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-resume .scene-profile-card .thickness-right {
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: -6px;
  width: 12px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-resume .scene-profile-card .thickness-bottom {
  position: absolute;
  bottom: -12px;
  left: 6px;
  right: -6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-resume .scene-profile-card .profile-ui {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .avatar-frame {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .avatar-frame .avatar-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scene-accent);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .avatar-frame .avatar-glow {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--scene-accent);
  opacity: 0.3;
  filter: blur(10px);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .avatar-frame .online-status {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  background: #00ff88;
  border-radius: 50%;
  border: 2px solid rgb(7, 12, 28);
  box-shadow: 0 0 8px #00ff88;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .profile-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .profile-meta .meta-name-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .profile-meta .meta-name-box .meta-name {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .profile-meta .meta-name-box .verified-icon {
  color: #00ff88;
  display: flex;
  align-items: center;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-header .profile-meta .meta-title {
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section .score-ring {
  position: relative;
  width: 48px;
  height: 48px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section .score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section .score-ring .score-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  font-family: monospace;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section .score-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section .score-info .score-label {
  font-size: 9px;
  font-weight: 900;
  color: var(--scene-accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section .score-info .score-progress-dots {
  display: flex;
  gap: 4px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-score-section .score-info .score-progress-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--scene-accent);
  opacity: 0.4;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-skill-tags {
  padding: 0 24px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-skill-tags .s-tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-portfolio-mini {
  padding: 0 24px 12px;
  display: flex;
  gap: 8px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-portfolio-mini .port-box {
  flex: 1;
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  position: relative;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-portfolio-mini .port-box::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 40%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list {
  flex: 1;
  padding: 0 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list .exp-row {
  display: flex;
  gap: 14px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list .exp-row .exp-dot-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list .exp-row .exp-dot-box .exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--scene-accent);
  box-shadow: 0 0 6px var(--scene-accent);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list .exp-row .exp-dot-box .exp-line-v {
  width: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list .exp-row .exp-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list .exp-row .exp-lines .l-a {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-experience-list .exp-row .exp-lines .l-b {
  width: 60%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1.5px;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-social-icons {
  margin-top: auto;
  padding: 12px 24px;
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-social-icons svg {
  transition: color 0.3s ease;
}
.scene-stage-resume .scene-profile-card .profile-ui .profile-social-icons svg:hover {
  color: var(--scene-accent);
}
.scene-stage-resume .scene-job-offer-card {
  position: absolute;
  right: 20px;
  top: 50px;
  width: 130px;
  height: 100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transform: translateZ(110px);
  animation: sceneIsoFloatHigh 6s ease-in-out infinite;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
}
.scene-stage-resume .scene-job-offer-card .thickness-right {
  position: absolute;
  right: -8px;
  top: 4px;
  bottom: -4px;
  width: 8px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-resume .scene-job-offer-card .thickness-bottom {
  position: absolute;
  bottom: -8px;
  left: 4px;
  right: -4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-resume .scene-job-offer-card .job-ui-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scene-stage-resume .scene-job-offer-card .job-ui-box .job-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.scene-stage-resume .scene-job-offer-card .job-ui-box .job-head .j-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--scene-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-stage-resume .scene-job-offer-card .job-ui-box .job-head .job-name {
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}
.scene-stage-resume .scene-job-offer-card .job-ui-box .job-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scene-stage-resume .scene-job-offer-card .job-ui-box .job-body .job-salary {
  font-size: 13px;
  font-weight: 900;
  color: #00ff88;
  font-family: monospace;
}
.scene-stage-resume .scene-job-offer-card .job-ui-box .job-body .job-location {
  font-size: 7px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
}
.scene-stage-resume .scene-job-offer-card .job-ui-box .job-btn {
  padding: 6px;
  background: var(--scene-accent);
  border-radius: 8px;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 10px var(--scene-accent-soft);
}
.scene-stage-resume .scene-matching-node {
  position: absolute;
  left: 40px;
  bottom: 60px;
  width: 40px;
  height: 40px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(90px);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
  animation: scenePulse 2s ease-in-out infinite alternate;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transform-style: preserve-3d;
}
.scene-stage-resume .scene-matching-node .thickness-right {
  position: absolute;
  right: -4px;
  top: 2px;
  bottom: -2px;
  width: 4px;
  background: rgba(0, 0, 0, 0.1);
  transform: skewY(45deg);
}
.scene-stage-resume .scene-matching-node .thickness-bottom {
  position: absolute;
  bottom: -4px;
  left: 2px;
  right: -2px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  transform: skewX(45deg);
}

.scene-stage-contract {
  perspective: 1600px;
}
.scene-stage-contract .scene-security-grid {
  position: absolute;
  inset: -20px;
  background-image: radial-gradient(circle at 50% 50%, rgba(30, 80, 255, 0.05) 0%, transparent 70%), linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  transform: translateZ(-10px);
  opacity: 0.8;
}
.scene-stage-contract .scene-contract-stack {
  position: absolute;
  left: 100px;
  top: 40px;
  width: 240px;
  height: 320px;
  transform-style: preserve-3d;
}
.scene-stage-contract .scene-contract-stack .contract-page {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transform-style: preserve-3d;
  box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.3);
}
.scene-stage-contract .scene-contract-stack .contract-page.page-1 {
  transform: translateZ(60px);
  animation: sceneIsoFloat 6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.05);
}
.scene-stage-contract .scene-contract-stack .contract-page.page-2 {
  transform: translateZ(40px) translate(-10px, 10px);
  opacity: 0.6;
}
.scene-stage-contract .scene-contract-stack .contract-page.page-3 {
  transform: translateZ(20px) translate(-20px, 20px);
  opacity: 0.3;
}
.scene-stage-contract .scene-contract-stack .contract-page .thickness-right {
  position: absolute;
  right: -8px;
  top: 4px;
  bottom: -4px;
  width: 8px;
  background: rgba(255, 255, 255, 0.06);
  transform: skewY(45deg);
}
.scene-stage-contract .scene-contract-stack .contract-page .thickness-bottom {
  position: absolute;
  bottom: -8px;
  left: 4px;
  right: -4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.03);
  transform: skewX(45deg);
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner {
  position: absolute;
  inset: 0;
  padding: 24px;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-header .header-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--scene-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--scene-accent-soft);
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-header .header-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-header .header-text-box .h-t {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-header .header-text-box .h-s {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  white-space: nowrap;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-body-clauses {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-body-clauses .clause-item {
  display: flex;
  gap: 10px;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-body-clauses .clause-item .c-n {
  font-size: 8px;
  font-weight: 900;
  color: var(--scene-accent);
  opacity: 0.8;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-body-clauses .clause-item .c-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-body-clauses .clause-item .c-lines .c-l {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5px;
  width: 100%;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-body-clauses .clause-item .c-lines .c-l-s {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5px;
  width: 60%;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-footer-legal {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-footer-legal .signature-area {
  position: relative;
  height: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-footer-legal .signature-area .sign-line {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-footer-legal .signature-area .sign-animation-ink {
  position: absolute;
  bottom: 12px;
  left: 20px;
  width: 60px;
  height: 15px;
  background: linear-gradient(90deg, transparent, var(--scene-accent), transparent);
  animation: signFlow 4s linear infinite;
  opacity: 0.5;
  filter: blur(1px);
}
.scene-stage-contract .scene-contract-stack .contract-page .page-inner .doc-ui .doc-footer-legal .signature-area .sign-pen-tip {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  animation: signFlowPen 4s linear infinite;
}
.scene-stage-contract .scene-smart-pen-v2 {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 160px;
  height: 10px;
  background: linear-gradient(to right, #111, #333, #111);
  border-radius: 5px;
  transform: translateZ(140px) rotateZ(215deg) rotateX(-20deg);
  animation: sceneIsoFloatHigh 6s ease-in-out infinite reverse;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
}
.scene-stage-contract .scene-smart-pen-v2 .thickness-right {
  position: absolute;
  right: -4px;
  top: 2px;
  bottom: -2px;
  width: 4px;
  background: #000;
  transform: skewY(45deg);
}
.scene-stage-contract .scene-smart-pen-v2 .thickness-bottom {
  position: absolute;
  bottom: -4px;
  left: 2px;
  right: -2px;
  height: 4px;
  background: #000;
  transform: skewX(45deg);
}
.scene-stage-contract .scene-smart-pen-v2 .pen-body {
  position: absolute;
  inset: 0;
}
.scene-stage-contract .scene-smart-pen-v2 .pen-body::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.scene-stage-contract .scene-smart-pen-v2 .pen-body .pen-tip {
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 15px solid #222;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.scene-stage-contract .scene-verification-system {
  position: absolute;
  left: 50px;
  bottom: 60px;
  transform-style: preserve-3d;
}
.scene-stage-contract .scene-verification-system .encryption-lock {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(100px);
  animation: sceneIsoFloat 5s ease-in-out infinite;
}
.scene-stage-contract .scene-verification-system .encryption-lock .lock-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, var(--scene-accent-soft) 0%, transparent 70%);
  opacity: 0.5;
  animation: scenePulse 2s infinite;
}
.scene-stage-contract .scene-verification-system .verification-nodes {
  position: absolute;
  left: 60px;
  top: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: translateZ(80px);
}
.scene-stage-contract .scene-verification-system .verification-nodes .v-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scene-accent);
  font-size: 10px;
  animation: sceneIsoFloat 4s ease-in-out infinite;
}
.scene-stage-contract .scene-verification-system .verification-nodes .v-node.n-1 {
  animation-delay: 0s;
}
.scene-stage-contract .scene-verification-system .verification-nodes .v-node.n-2 {
  animation-delay: -1s;
}
.scene-stage-contract .scene-verification-system .verification-nodes .v-node.n-3 {
  animation-delay: -2s;
}
.scene-stage-contract .scene-verification-system .v-connections {
  position: absolute;
  left: 0;
  top: -50px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.3;
  filter: drop-shadow(0 0 5px var(--scene-accent));
}
.scene-stage-contract .scene-legal-seal-v2 {
  position: absolute;
  right: 80px;
  bottom: 80px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translateZ(120px) rotateX(-10deg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sceneIsoFloatHigh 7s ease-in-out infinite;
  transform-style: preserve-3d;
}
.scene-stage-contract .scene-legal-seal-v2 .thickness-right {
  position: absolute;
  right: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 4px 4px 0;
}
.scene-stage-contract .scene-legal-seal-v2 .seal-inner {
  width: 54px;
  height: 54px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scene-stage-contract .scene-legal-seal-v2 .seal-inner .seal-logo {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px var(--scene-accent);
}
.scene-stage-contract .scene-legal-seal-v2 .seal-inner .seal-text-ring {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: rotate 12s linear infinite;
}

.scene-stage-marketing {
  perspective: 1600px;
}
.scene-stage-marketing .scene-marketing-stats {
  position: absolute;
  left: 70px;
  top: 80px;
  width: 150px;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transform: translateZ(90px);
  animation: sceneIsoFloatHigh 5s ease-in-out infinite;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
}
.scene-stage-marketing .scene-marketing-stats .thickness-right {
  position: absolute;
  right: -10px;
  top: 5px;
  bottom: -5px;
  width: 10px;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(45deg);
}
.scene-stage-marketing .scene-marketing-stats .thickness-bottom {
  position: absolute;
  bottom: -10px;
  left: 5px;
  right: -5px;
  height: 10px;
  background: rgba(255, 255, 255, 0.02);
  transform: skewX(45deg);
}
.scene-stage-marketing .scene-marketing-stats .stats-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
}
.scene-stage-marketing .scene-marketing-stats .stats-ui .stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.scene-stage-marketing .scene-marketing-stats .stats-ui .stats-header .stats-label {
  font-size: 8px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-marketing .scene-marketing-stats .stats-ui .stats-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.scene-stage-marketing .scene-marketing-stats .stats-ui .stats-main .stats-value {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 15px var(--scene-accent-soft);
}
.scene-stage-marketing .scene-marketing-stats .stats-ui .stats-main .stats-graph {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 30px;
}
.scene-stage-marketing .scene-marketing-stats .stats-ui .stats-main .stats-graph .s-bar {
  flex: 1;
  background: var(--scene-accent);
  border-radius: 2px 2px 0 0;
  opacity: 0.6;
  box-shadow: 0 0 8px var(--scene-accent-soft);
}
.scene-stage-marketing .scene-social-device {
  position: absolute;
  right: 100px;
  top: 40px;
  width: 180px;
  height: 330px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  padding: 10px;
  transform: translateZ(40px);
  animation: sceneIsoFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
  box-shadow: -30px 30px 70px rgba(0, 0, 0, 0.5);
}
.scene-stage-marketing .scene-social-device .thickness-right {
  position: absolute;
  right: -14px;
  top: 10px;
  bottom: -10px;
  width: 14px;
  background: rgba(255, 255, 255, 0.08);
  transform: skewY(45deg);
  border-radius: 0 10px 10px 0;
}
.scene-stage-marketing .scene-social-device .thickness-bottom {
  position: absolute;
  bottom: -14px;
  left: 10px;
  right: -10px;
  height: 14px;
  background: rgba(255, 255, 255, 0.04);
  transform: skewX(45deg);
  border-radius: 0 0 10px 10px;
}
.scene-stage-marketing .scene-social-device .social-screen {
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, #1a1f35, #0a0c14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar {
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-t {
  font-size: 8px;
  font-weight: 900;
  color: #fff;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons {
  display: flex;
  gap: 6px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons .i-signal {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons .i-signal span {
  width: 2px;
  background: #fff;
  border-radius: 1px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons .i-signal span:nth-child(1) {
  height: 3px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons .i-signal span:nth-child(2) {
  height: 5px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons .i-signal span:nth-child(3) {
  height: 7px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons .i-battery {
  width: 12px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1px;
  padding: 1px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-status-bar .s-icons .i-battery .i-b-f {
  width: 70%;
  height: 100%;
  background: #00ff88;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 12px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-header .p-a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-header .p-i {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-header .p-i .n {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-header .p-i .s {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-header .p-more {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media .media-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, var(--scene-accent-soft) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media .media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media .media-overlay .media-icon-anim {
  animation: scenePulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--scene-accent));
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media .media-overlay .media-tag {
  font-size: 7px;
  font-weight: 900;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media .media-performance-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 255, 136, 0.85);
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media .media-performance-badge span {
  font-size: 7px;
  font-weight: 900;
  color: #000;
  white-space: nowrap;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-media .media-performance-badge svg {
  color: #000;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-interact {
  display: flex;
  gap: 15px;
  color: #fff;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-interact .i-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  opacity: 0.8;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-interact .i-platform-icons {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-interact .i-platform-icons .mini-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-desc .d-1 {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-desc .d-2 {
  width: 80%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-desc .post-tags {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .post-desc .post-tags span {
  font-size: 8px;
  color: var(--scene-accent);
  font-weight: 700;
  white-space: nowrap;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .marketing-calendar-mini {
  margin-top: 8px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .marketing-calendar-mini .cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .marketing-calendar-mini .cal-grid .cal-cell {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.scene-stage-marketing .scene-social-device .social-screen .social-post .marketing-calendar-mini .cal-grid .cal-cell.active {
  background: var(--scene-accent);
  box-shadow: 0 0 6px var(--scene-accent);
}
.scene-stage-marketing .scene-floating-interactions {
  position: absolute;
  left: 50px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.scene-stage-marketing .scene-floating-interactions .inter-item {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
}
.scene-stage-marketing .scene-floating-interactions .inter-item.item-like {
  color: #ff4d4f;
  transform: translateZ(100px);
  animation: sceneIsoFloat 4s ease-in-out infinite;
}
.scene-stage-marketing .scene-floating-interactions .inter-item.item-msg {
  color: #fff;
  transform: translateZ(60px);
  animation: sceneIsoFloat 5s ease-in-out infinite 0.5s;
}
.scene-stage-marketing .scene-floating-interactions .inter-item.item-trend {
  color: #00ff88;
  transform: translateZ(130px);
  animation: sceneIsoFloat 6s ease-in-out infinite 1s;
}
.scene-stage-marketing .scene-marketing-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scene-stage-marketing .scene-marketing-sparkles div {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  animation: scenePulse 1.5s ease-in-out infinite;
}
.scene-stage-marketing .scene-marketing-sparkles div.s-1 {
  left: 20%;
  top: 20%;
}
.scene-stage-marketing .scene-marketing-sparkles div.s-2 {
  right: 15%;
  bottom: 30%;
  animation-delay: 0.5s;
}
.scene-stage-marketing .scene-marketing-sparkles div.s-3 {
  left: 50%;
  bottom: 10%;
  animation-delay: 1s;
}

@keyframes sceneFloatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes sceneFloatSide {
  0%, 100% {
    transform: translateY(0) rotate(var(--scene-rotate, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--scene-rotate, 0deg) + 4deg));
  }
}
@keyframes scenePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
@keyframes sceneWavePulse {
  0%, 100% {
    opacity: 0.38;
    transform: rotate(20deg) scale(1);
  }
  50% {
    opacity: 0.82;
    transform: rotate(20deg) scale(1.06);
  }
}
@keyframes sceneBarRise {
  0%, 100% {
    opacity: 0.82;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}
@keyframes sceneBeam {
  0%, 100% {
    opacity: 0.28;
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--scene-accent) 16%, transparent));
  }
  50% {
    opacity: 0.96;
    filter: drop-shadow(0 0 16px color-mix(in srgb, var(--scene-accent) 32%, transparent));
  }
}
@keyframes sceneSparkle {
  0%, 100% {
    transform: scale(0.86) rotate(0deg);
    opacity: 0.34;
  }
  50% {
    transform: scale(1.16) rotate(18deg);
    opacity: 1;
  }
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.story-visual {
  padding: 18px;
  height: 280px;
  background: linear-gradient(180deg, rgba(11, 25, 60, 0.84), rgba(8, 10, 18, 0.98));
}

.story-visual-frame {
  height: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 80% 20%, rgba(255, 106, 29, 0.12), transparent 28%), radial-gradient(circle at 30% 80%, rgba(38, 99, 255, 0.16), transparent 32%);
}

.story-visual-top {
  display: flex;
  gap: 6px;
}
.story-visual-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.story-visual-body {
  height: calc(100% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.story-main-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8f1ff;
  background: linear-gradient(135deg, rgba(31, 77, 255, 0.85), rgba(94, 143, 255, 0.85));
  box-shadow: 0 22px 40px rgba(24, 65, 196, 0.3);
}

.story-lines {
  margin-top: 24px;
  width: 100%;
}
.story-lines span {
  display: block;
  height: 8px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  width: 74%;
}
.story-lines .long {
  width: 86%;
}
.story-lines .short {
  width: 58%;
}

.story-copy {
  padding: 18px;
}
.story-copy h3 {
  margin: 10px 0 12px;
  color: #f6f8ff;
  font-size: 24px;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.story-copy p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.75;
}

.story-link.arco-btn {
  padding: 0;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ecosystem-partners-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 0 24px;
}
.ecosystem-partners-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ecosystem-partners-section .section-header .section-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.ecosystem-partners-section .section-header .section-desc {
  max-width: 820px;
  margin: 0 auto !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 16px !important;
  line-height: 1.8;
}

.ecosystem-partners-panel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ecosystem-partners-layout {
  display: block;
}

.ecosystem-category-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto 56px;
  max-width: 1000px;
  padding: 0 48px;
}

.nav-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.nav-scroll-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.nav-scroll-btn.prev {
  left: 0;
}
.nav-scroll-btn.next {
  right: 0;
}
@media (max-width: 991px) {
  .nav-scroll-btn {
    display: none;
  }
}

.ecosystem-category-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 4px;
  margin: 0 auto;
  padding: 4px;
  width: max-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  backdrop-filter: blur(12px);
  position: relative;
}
.ecosystem-category-nav::-webkit-scrollbar {
  display: none;
}

.ecosystem-category-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}
.ecosystem-category-nav-item:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}
.ecosystem-category-nav-item.active {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.ecosystem-category-nav-item.active::after {
  display: none;
}

.category-nav-name {
  font-size: 13px;
  line-height: 1;
}

.ecosystem-partners-showcase {
  min-width: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.ecosystem-partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ecosystem-partner-item {
  min-height: 84px;
  width: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.ecosystem-partner-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}
.ecosystem-partner-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.ecosystem-partner-item img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.ecosystem-partner-item .partner-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
  pointer-events: none;
}
.ecosystem-partner-item .partner-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.ecosystem-partner-item .partner-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ecosystem-partner-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.ecosystem-partner-item:hover img {
  opacity: 0;
  transform: scale(0.9) translateY(-10px);
}
.ecosystem-partner-item:hover .partner-info {
  opacity: 1;
  transform: translateY(0);
}
.ecosystem-partner-item .logo-wide {
  max-width: 148px;
  max-height: 44px;
}
.ecosystem-partner-item .logo-square {
  max-width: 52px;
  max-height: 52px;
  border-radius: 12px;
}

.ecosystem-partners-action {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.partner-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.partner-wordmark.brand-cn {
  font-size: 19px;
  font-weight: 700;
}

.partner-wordmark.brand-en {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.partner-wordmark.brand-calligraphy {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
}

.partner-wordmark.blue {
  color: #2670cf;
}

.partner-wordmark.red {
  color: #db433f;
}

.partner-wordmark.green {
  color: #2aa55f;
}

.partner-wordmark.orange {
  color: #f08a23;
}

.partner-wordmark.violet {
  color: #6b65e7;
}

.partner-wordmark.cyan {
  color: #39a6d4;
}

.partner-wordmark.dark {
  color: #25334f;
}

.ecosystem-partners-action {
  padding-top: 32px;
  text-align: center;
}

.landing-footer.legacy-footer {
  margin-top: 80px;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0b0e17;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --home-primary-cta-width: 320px;
  --home-primary-cta-height: 56px;
  --home-primary-cta-font-size: 18px;
  --home-primary-cta-padding-x: 30px;
  --home-mobile-cta-width: 248px;
  --home-mobile-cta-height: 50px;
  --home-mobile-cta-font-size: 16px;
  --home-mobile-cta-padding-x: 28px;
}
.landing-footer.legacy-footer::before, .landing-footer.legacy-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}
.landing-footer.legacy-footer::before {
  width: 340px;
  height: 340px;
  left: -60px;
  top: 80px;
  background: radial-gradient(circle, rgba(93, 139, 255, 0.1), transparent 70%);
}
.landing-footer.legacy-footer::after {
  width: 300px;
  height: 300px;
  right: -40px;
  top: 40px;
  background: radial-gradient(circle, rgba(122, 116, 255, 0.08), transparent 72%);
}

.landing-footer.legacy-footer *,
.custom-modal-root * {
  box-sizing: border-box;
}

.landing-footer.legacy-footer .arco-btn,
.custom-modal-root .arco-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.landing-footer.legacy-footer .arco-btn::before,
.custom-modal-root .arco-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.landing-footer.legacy-footer .arco-btn::after,
.custom-modal-root .arco-btn::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -32%;
  width: 34%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-180%);
  opacity: 0;
  pointer-events: none;
}

.landing-footer.legacy-footer button,
.landing-footer.legacy-footer input,
.landing-footer.legacy-footer textarea,
.custom-modal-root button,
.custom-modal-root input,
.custom-modal-root textarea {
  font: inherit;
}

.landing-footer.legacy-footer button,
.custom-modal-root button {
  border: 0;
}

.custom-modal-root .arco-modal-close-btn {
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.legacy-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0 20px;
  position: relative;
  z-index: 1;
}

.legacy-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.legacy-footer-columns {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

.legacy-footer-group {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.legacy-footer-title {
  display: block;
  margin-bottom: 24px;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.legacy-footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legacy-footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.legacy-footer-links a:hover {
  color: #ffffff;
}

.legacy-footer-contact {
  flex: 0 0 320px;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  text-align: center;
}
.legacy-footer-contact .legacy-footer-title {
  margin-bottom: 12px;
}

.legacy-footer-contact-desc {
  margin: 0 0 24px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px !important;
  line-height: 1.6;
  text-align: center;
}

.legacy-footer-qr-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.legacy-footer-qr-card {
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
}
.legacy-footer-qr-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  padding: 6px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: none;
}
.legacy-footer-qr-card span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.legacy-footer-phone {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
}

.legacy-footer-cta.arco-btn {
  --primary-btn-height: 48px;
  --primary-btn-padding-x: 26px;
  --primary-btn-radius: 999px;
  --primary-btn-font-size: 16px;
  --primary-btn-weight: 700;
  --primary-btn-border: rgba(58, 109, 255, 0.42);
  --primary-btn-shadow:
    0 0 0 1px rgba(97, 145, 255, 0.1), 0 12px 28px rgba(39, 92, 255, 0.18);
  --primary-btn-shadow-hover:
    0 0 0 1px rgba(118, 163, 255, 0.18), 0 16px 34px rgba(39, 92, 255, 0.26),
    0 0 24px rgba(56, 108, 255, 0.16);
  min-width: 168px;
}

.legacy-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 20px 0 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  border-radius: 0;
}

.legacy-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}
.legacy-footer-brand span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legacy-footer-logo {
  width: 88px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.legacy-footer-records {
  text-align: right;
}
.legacy-footer-records .arco-typography {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.7;
}

.intro-section .section-header .section-title,
.featured-cases-section .section-header .section-title,
.integration-section .section-header .section-title,
.ecosystem-partners-section .section-header .section-title,
.method-title {
  font-size: 48px;
  font-weight: 900;
  font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.22);
}

.intro-section .section-header .section-desc,
.featured-cases-section .section-header .section-desc,
.integration-section .section-header .section-desc,
.ecosystem-partners-section .section-header .section-desc,
.method-desc {
  font-size: 18px !important;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58) !important;
}

.hero-copy-centered > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIntroRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy-centered > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-copy-centered > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-copy-centered > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-copy-centered > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero-copy-centered > *:nth-child(5) {
  animation-delay: 0.4s;
}

.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
  filter: blur(6px);
}
.animate-on-scroll.reveal-left {
  transform: translate3d(36px, 0, 0);
}
.animate-on-scroll.reveal-right {
  transform: translate3d(-36px, 0, 0);
}
.animate-on-scroll.reveal-scale {
  transform: scale(0.94);
  transform-origin: center;
}
.animate-on-scroll.reveal-delay-1 {
  transition-delay: 0.08s;
}
.animate-on-scroll.reveal-delay-2 {
  transition-delay: 0.16s;
}
.animate-on-scroll.reveal-delay-3 {
  transition-delay: 0.24s;
}
.animate-on-scroll.reveal-delay-4 {
  transition-delay: 0.32s;
}
.animate-on-scroll.visible, .animate-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.feature-board,
.solution-scene-copy,
.solution-scene-visual,
.featured-case-copy-block,
.featured-case-visual,
.ecosystem-panel,
.ecosystem-core,
.ecosystem-partner-item,
.legacy-footer-group,
.legacy-footer-contact,
.legacy-footer-bottom {
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}

@keyframes heroIntroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy-centered > *,
  .animate-on-scroll,
  .logo-track,
  .hero-ribbon,
  .comet,
  .ring,
  .data-stream::after,
  .btn-primary-glow.arco-btn,
  .feature-art *,
  .solution-scene-art * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
.featured-cases-section {
  padding: 108px 0 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.featured-cases-section::before {
  content: "";
  position: absolute;
  top: 100px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 139, 255, 0.22), transparent 70%);
  filter: blur(24px);
  opacity: 0.75;
  pointer-events: none;
}
.featured-cases-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.featured-cases-section .section-header .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.featured-cases-section .section-header .section-desc {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0 !important;
}
.featured-cases-section .featured-cases-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}
.featured-cases-section .featured-case-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
}
.featured-cases-section .featured-case-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.featured-cases-section .featured-case-nav-item:hover {
  transform: translateX(4px);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
}
.featured-cases-section .featured-case-nav-item.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 243, 255, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 24px rgba(0, 0, 0, 0.18);
}
.featured-cases-section .featured-case-nav-item.active .case-nav-name {
  color: #2a3d75;
}
.featured-cases-section .featured-case-nav-item.active .case-nav-logo {
  color: #5db4ff;
}
.featured-cases-section .case-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  transition: color 0.28s ease, transform 0.28s ease;
}
.featured-cases-section .case-nav-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.featured-cases-section .case-nav-name {
  transition: color 0.28s ease;
}
.featured-cases-section .case-nav-badge {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.featured-cases-section .case-nav-badge-green {
  background: linear-gradient(135deg, #46b96b, #88df8a);
}
.featured-cases-section .case-nav-badge-cyan {
  background: linear-gradient(135deg, #329fd0, #73d3f3);
}
.featured-cases-section .case-nav-badge-violet {
  background: linear-gradient(135deg, #7967ff, #b489ff);
}
.featured-cases-section .case-nav-badge-blue {
  background: linear-gradient(135deg, #3978ff, #68b5ff);
}
.featured-cases-section .featured-case-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  min-height: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.featured-cases-section .featured-case-glow {
  position: absolute;
  inset: 10% 4% 4% 32%;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.85;
  pointer-events: none;
}
.featured-cases-section .featured-case-glow-utalk {
  background: radial-gradient(circle, rgba(120, 102, 255, 0.22), transparent 62%);
}
.featured-cases-section .featured-case-glow-chatppt {
  background: radial-gradient(circle, rgba(92, 170, 255, 0.2), transparent 62%);
}
.featured-cases-section .featured-case-glow-wps {
  background: radial-gradient(circle, rgba(96, 137, 255, 0.2), transparent 62%);
}
.featured-cases-section .featured-case-glow-chatmoney {
  background: radial-gradient(circle, rgba(122, 120, 255, 0.22), transparent 62%);
}
.featured-cases-section .featured-case-glow-yoo-resume {
  background: radial-gradient(circle, rgba(80, 193, 255, 0.22), transparent 62%);
}
.featured-cases-section .featured-case-copy-block,
.featured-cases-section .featured-case-visual {
  position: relative;
  z-index: 1;
}
.featured-cases-section .featured-case-copy-block {
  padding: 10px 0;
  min-width: 0;
  text-align: left;
}
.featured-cases-section .featured-case-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.featured-cases-section .featured-case-name {
  margin: 0;
  color: #ffffff;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.featured-cases-section .featured-case-summary {
  margin: 24px 0 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 19px !important;
  line-height: 1.72;
  font-weight: 500;
  max-width: 640px;
}
.featured-cases-section .featured-case-paragraph {
  margin: 20px 0 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 15px !important;
  line-height: 1.84;
  max-width: 620px;
}
.featured-cases-section .featured-case-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.featured-cases-section .featured-case-highlight {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.featured-cases-section .featured-case-highlight .label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.featured-cases-section .featured-case-highlight .value {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}
.featured-cases-section .featured-case-actions {
  margin-top: 24px;
}
.featured-cases-section .featured-case-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}
.featured-cases-section .featured-case-visual:hover .case-illustration-image, .featured-cases-section .featured-case-visual:focus-visible .case-illustration-image {
  transform: scale(1.03);
}
.featured-cases-section .case-illustration-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/4.4;
  max-height: 500px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)), rgba(8, 12, 24, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 44px rgba(0, 0, 0, 0.22);
}
.featured-cases-section .case-illustration-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.featured-cases-section .case-illustration-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.02), rgba(8, 12, 24, 0.18)), radial-gradient(circle at top left, rgba(93, 139, 255, 0.14), transparent 42%);
  pointer-events: none;
}

.integration-section {
  padding: 160px 0 140px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.integration-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.integration-section .section-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(93, 139, 255, 0.1);
  border: 1px solid rgba(93, 139, 255, 0.2);
  border-radius: 100px;
  color: #5d8bff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.integration-section .section-header .section-title {
  margin: 0 0 24px;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.integration-section .section-header .section-desc {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 720px;
  margin: 0 auto !important;
  line-height: 1.6;
}
.integration-section .integration-main-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.integration-section .integration-grid {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 0;
  align-items: center;
}
.integration-section .integration-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.integration-section .integration-card .card-inner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.integration-section .integration-card .card-inner:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(93, 139, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.integration-section .integration-card .card-inner:hover .card-icon-wrapper {
  background: #5d8bff;
  color: #fff;
  transform: scale(1.05) rotate(5deg);
}
.integration-section .integration-card .card-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}
.integration-section .integration-card .card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.integration-section .integration-card .card-header .card-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5d8bff;
  transition: all 0.4s ease;
}
.integration-section .integration-card .card-header .card-title-group h3 {
  margin: 0 0 2px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.integration-section .integration-card .card-header .card-title-group p {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.integration-section .integration-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  text-align: left;
}
.integration-section .integration-card .feature-pro-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.integration-section .integration-card .feature-pro-item .item-icon {
  width: 20px;
  height: 20px;
  color: #5d8bff;
  margin-top: 2px;
  opacity: 0.8;
}
.integration-section .integration-card .feature-pro-item .item-content {
  flex: 1 1 auto;
  text-align: left;
}
.integration-section .integration-card .feature-pro-item .item-content h5 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.integration-section .integration-card .feature-pro-item .item-content p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}
.integration-section .integration-card .card-decor-code {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(93, 139, 255, 0.4);
}
.integration-section .integration-card.skills-card .card-icon-wrapper {
  color: #a29aff;
}
.integration-section .integration-card.skills-card .feature-pro-item .item-icon {
  color: #a29aff;
}
.integration-section .integration-card.skills-card .card-decor-code {
  color: rgba(162, 154, 255, 0.4);
}
.integration-section .integration-card.skills-card .card-inner:hover {
  border-color: rgba(162, 154, 255, 0.3);
}
.integration-section .integration-orchestration-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.integration-section .integration-orchestration-hub .hub-visual {
  width: 240px;
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.integration-section .integration-orchestration-hub .hub-visual::before, .integration-section .integration-orchestration-hub .hub-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(93, 139, 255, 0.4), transparent);
  z-index: 1;
  pointer-events: none;
}
.integration-section .integration-orchestration-hub .hub-visual::before {
  right: 100%;
  transform: translateY(-50%) rotate(180deg);
  margin-right: -20px;
}
.integration-section .integration-orchestration-hub .hub-visual::after {
  left: 100%;
  transform: translateY(-50%);
  margin-left: -20px;
}
.integration-section .integration-orchestration-hub .hub-visual .hub-rings {
  position: absolute;
  inset: 0;
}
.integration-section .integration-orchestration-hub .hub-visual .hub-rings .ring-inner, .integration-section .integration-orchestration-hub .hub-visual .hub-rings .ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.integration-section .integration-orchestration-hub .hub-visual .hub-rings .ring-inner {
  inset: 30px;
  border: 1px dashed rgba(93, 139, 255, 0.2);
  animation: rotateClockwise 30s linear infinite;
}
.integration-section .integration-orchestration-hub .hub-visual .hub-rings .ring-outer {
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.integration-section .integration-orchestration-hub .hub-visual .hub-rings .ring-outer::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
}
.integration-section .integration-orchestration-hub .hub-visual .hub-rings .ring-outer {
  animation: rotateCounterClockwise 20s linear infinite;
}
.integration-section .integration-orchestration-hub .hub-visual .hub-core {
  width: 100px;
  height: 100px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 40px rgba(93, 139, 255, 0.2);
}
.integration-section .integration-orchestration-hub .hub-visual .hub-core .core-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(93, 139, 255, 0.15) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}
.integration-section .integration-orchestration-hub .hub-visual .hub-core .core-icon {
  color: #fff;
  position: relative;
  z-index: 6;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}
.integration-section .integration-orchestration-hub .hub-visual .hub-scanner {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, transparent, rgba(93, 139, 255, 0.1), transparent 30%);
  border-radius: 50%;
  animation: rotateClockwise 4s linear infinite;
  opacity: 0.5;
}
.integration-section .integration-orchestration-hub .hub-info {
  text-align: center;
}
.integration-section .integration-orchestration-hub .hub-info h4 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.integration-section .integration-orchestration-hub .hub-info p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.integration-section .integration-stats-refined {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 12px 60px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}
.integration-section .integration-stats-refined .stat-glass-item {
  text-align: center;
  padding: 10px 40px;
}
.integration-section .integration-stats-refined .stat-glass-item .stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 2px;
}
.integration-section .integration-stats-refined .stat-glass-item .stat-top .val {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.integration-section .integration-stats-refined .stat-glass-item .stat-top .unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}
.integration-section .integration-stats-refined .stat-glass-item .stat-bottom {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.integration-section .integration-stats-refined .stat-glass-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
}
.integration-section .integration-cta {
  text-align: center;
  margin-top: 60px;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.floating-contact-entry {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 64px;
  min-height: 160px;
  border: 1px solid rgba(103, 147, 255, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 28, 52, 0.96), rgba(9, 14, 28, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 42px rgba(93, 139, 255, 0.16);
  backdrop-filter: blur(18px);
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0 14px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}
.floating-contact-entry:hover {
  transform: translateY(-50%) translateX(-4px);
  border-color: rgba(129, 171, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 52px rgba(0, 0, 0, 0.34), 0 0 56px rgba(93, 139, 255, 0.24);
}

.floating-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(92, 132, 255, 0.12);
  border: 1px solid rgba(168, 191, 255, 0.45);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 20px rgba(93, 139, 255, 0.18);
}

.floating-contact-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.contact-float-modal-wrapper {
  z-index: 2000;
}
.contact-float-modal-wrapper .arco-modal-mask {
  background: rgba(3, 6, 12, 0.84) !important;
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  z-index: 2000;
}
.contact-float-modal-wrapper .arco-modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: transparent !important;
  z-index: 2001;
  padding: 32px 20px;
}
.contact-float-modal-wrapper .arco-modal-container {
  display: flex;
  min-height: calc(100vh - 64px);
  align-items: center;
  justify-content: center;
}
.contact-float-modal-wrapper .arco-modal,
.contact-float-modal-wrapper .arco-modal-container {
  background: transparent !important;
  border-radius: 40px;
  overflow: visible;
}
.contact-float-modal-wrapper .contact-float-modal {
  width: min(620px, 100vw - 32px) !important;
  max-width: calc(100vw - 32px) !important;
}
.contact-float-modal-wrapper .contact-float-modal .arco-modal-content {
  background: #090c14;
  border: none;
  border-radius: 40px;
  padding: 0;
  overflow: hidden;
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 60px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(93, 139, 255, 0.08);
  backdrop-filter: blur(25px);
}
.contact-float-modal-wrapper .modal-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.3);
  font-size: 24px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-float-modal-wrapper .modal-close-btn svg {
  display: block;
}
.contact-float-modal-wrapper .modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-float-modal-shell {
  padding: 24px 26px 26px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.contact-float-modal-header {
  margin-bottom: 14px;
}

.contact-float-modal-copy h3 {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.contact-float-modal-copy p {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.55;
}

.contact-float-form .arco-form-item {
  margin-bottom: 14px;
}
.contact-float-form .arco-form-item-label-col {
  margin-bottom: 8px;
}
.contact-float-form .arco-form-item-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.contact-float-form .arco-form-item-symbol {
  color: #ff5f6d;
}

.contact-float-grid {
  display: grid;
  gap: 14px;
}

.contact-float-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-float-input.arco-input-wrapper,
.contact-float-textarea.arco-input-wrapper {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(47, 64, 108, 0.96), rgba(29, 42, 76, 0.98)) !important;
  border: 1px solid rgba(149, 185, 255, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -10px 18px rgba(6, 12, 26, 0.16), 0 0 0 1px rgba(118, 156, 255, 0.1), 0 12px 24px rgba(0, 0, 0, 0.14);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-float-input.arco-input-wrapper:hover, .contact-float-input.arco-input-wrapper:focus-within,
.contact-float-textarea.arco-input-wrapper:hover,
.contact-float-textarea.arco-input-wrapper:focus-within {
  background: linear-gradient(180deg, rgba(56, 75, 124, 0.98), rgb(34, 49, 89)) !important;
  border-color: rgba(166, 198, 255, 0.36) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -10px 18px rgba(6, 12, 26, 0.14), 0 0 0 1px rgba(128, 166, 255, 0.12), 0 14px 28px rgba(0, 0, 0, 0.16);
}
.contact-float-input.arco-input-wrapper.arco-input-inner-wrapper-focus, .contact-float-input.arco-input-wrapper.arco-input-wrapper-focus,
.contact-float-textarea.arco-input-wrapper.arco-input-inner-wrapper-focus,
.contact-float-textarea.arco-input-wrapper.arco-input-wrapper-focus {
  background: linear-gradient(180deg, rgba(32, 48, 86, 0.98), rgb(18, 28, 56)) !important;
  border-color: rgba(120, 165, 255, 0.62) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(120, 165, 255, 0.48), 0 0 0 6px rgba(93, 139, 255, 0.14), 0 16px 34px rgba(32, 64, 148, 0.24) !important;
}

.contact-float-input.arco-input-wrapper {
  min-height: 60px;
  padding: 0 22px;
}

.contact-float-textarea.arco-input-wrapper {
  padding: 16px 22px;
  min-height: 136px;
}

input.contact-float-input.arco-input,
textarea.contact-float-textarea.arco-textarea,
.contact-float-input .arco-input-inner-wrapper input,
.contact-float-textarea textarea {
  color: #f6f8ff !important;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 1.5;
  -webkit-text-fill-color: #f6f8ff !important;
  caret-color: #f6f8ff !important;
  background: transparent !important;
  border: none !important;
  border-radius: 24px !important;
  box-sizing: border-box !important;
}

input.contact-float-input.arco-input::placeholder,
textarea.contact-float-textarea.arco-textarea::placeholder,
.contact-float-input .arco-input-inner-wrapper input::placeholder,
.contact-float-textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.44) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.44) !important;
}

input.contact-float-input.arco-input {
  padding: 0 !important;
  height: 58px !important;
  line-height: 58px !important;
}

textarea.contact-float-textarea.arco-textarea {
  padding: 0 !important;
  resize: none;
}

.contact-float-input.arco-input:-webkit-autofill,
.contact-float-input.arco-input:-webkit-autofill:hover,
.contact-float-input.arco-input:-webkit-autofill:focus,
.contact-float-input input:-webkit-autofill,
.contact-float-input input:-webkit-autofill:hover,
.contact-float-input input:-webkit-autofill:focus,
.contact-float-textarea textarea:-webkit-autofill,
.contact-float-textarea textarea:-webkit-autofill:hover,
.contact-float-textarea textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 9999s ease-out 0s;
  box-shadow: inset 0 0 0 1000px rgba(31, 44, 76, 0.98) !important;
}

.contact-float-modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.contact-submit-btn {
  position: relative;
  overflow: hidden;
  --primary-btn-height: 58px;
  --primary-btn-padding-x: 24px;
  --primary-btn-font-size: 17px;
  border-radius: 24px !important;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #8db5ff 0%, #6796ff 24%, #4f79ff 60%, #7069ff 100%) !important;
  border: 1px solid rgba(171, 204, 255, 0.54) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 -10px 18px rgba(36, 58, 142, 0.16), 0 20px 42px rgba(78, 115, 255, 0.36), 0 0 40px rgba(93, 139, 255, 0.24) !important;
  text-shadow: 0 1px 10px rgba(24, 42, 108, 0.28);
}
.contact-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.3) 34%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.contact-submit-btn:hover, .contact-submit-btn:focus {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #9ac0ff 0%, #76a3ff 26%, #5b84ff 62%, #7a73ff 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -10px 18px rgba(36, 58, 142, 0.12), 0 26px 50px rgba(78, 115, 255, 0.44), 0 0 48px rgba(93, 139, 255, 0.28) !important;
  filter: brightness(1.02);
}
.contact-submit-btn:hover::before, .contact-submit-btn:focus::before {
  transform: translateX(120%);
}

.contact-secondary-btn.arco-btn {
  height: 58px;
  border-radius: 24px;
  border: 1px solid rgba(171, 204, 255, 0.28);
  background: linear-gradient(180deg, rgba(25, 36, 66, 0.96), rgba(16, 24, 44, 0.98)) !important;
  color: rgba(227, 236, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -8px 16px rgba(4, 10, 24, 0.16), 0 10px 24px rgba(0, 0, 0, 0.12);
}
.contact-secondary-btn.arco-btn:hover, .contact-secondary-btn.arco-btn:focus {
  color: #ffffff;
  border-color: rgba(124, 160, 255, 0.48);
  background: linear-gradient(180deg, rgba(31, 44, 80, 0.98), rgb(18, 27, 50)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 28px rgba(0, 0, 0, 0.16), 0 0 0 4px rgba(93, 139, 255, 0.08);
}

body .case-modal-wrapper {
  z-index: 2000;
}
body .case-modal-wrapper .arco-modal-mask {
  background: rgba(3, 6, 12, 0.84) !important;
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  z-index: 2000;
}
body .case-modal-wrapper .arco-modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: transparent !important;
  z-index: 2001;
  padding: 32px 20px;
}
body .case-modal-wrapper .arco-modal-container {
  display: flex;
  min-height: calc(100vh - 64px);
  align-items: center;
  justify-content: center;
}
body .case-modal-wrapper .arco-modal,
body .case-modal-wrapper .arco-modal-container {
  background: transparent !important;
  border-radius: 40px;
  overflow: visible;
}
body .case-modal-wrapper .case-lead-modal-v3 .arco-modal-content {
  background: #090c14;
  border: none;
  border-radius: 40px;
  padding: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 60px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(93, 139, 255, 0.08);
  backdrop-filter: blur(25px);
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.3);
  font-size: 24px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.2);
}
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-icon {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 30%, rgba(118, 164, 255, 0.32), rgba(93, 139, 255, 0.12) 55%, rgba(93, 139, 255, 0.06) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfe0ff;
  border: 1px solid rgba(126, 169, 255, 0.34);
  box-shadow: 0 10px 28px rgba(93, 139, 255, 0.22);
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-icon svg {
  filter: drop-shadow(0 0 10px rgba(126, 169, 255, 0.28));
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-form-item {
  margin-bottom: 0;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-form-label-item {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input {
  width: 100%;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input {
  background: transparent !important;
  border: none !important;
  border-radius: 22px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  height: 58px !important;
  line-height: 58px !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.42) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.42) !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input:-webkit-autofill,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input:-webkit-autofill:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input:-webkit-autofill:focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input:-webkit-autofill,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input:-webkit-autofill:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 9999s ease-out 0s;
  box-shadow: inset 0 0 0 1000px rgba(31, 44, 76, 0.98) !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper {
  background: linear-gradient(180deg, rgba(47, 64, 108, 0.96), rgba(29, 42, 76, 0.98)) !important;
  border: 1px solid rgba(149, 185, 255, 0.28) !important;
  border-radius: 24px !important;
  height: 66px !important;
  padding: 0 24px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -10px 18px rgba(6, 12, 26, 0.16), 0 0 0 1px rgba(118, 156, 255, 0.1), 0 12px 24px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper:hover {
  background: linear-gradient(180deg, rgba(56, 75, 124, 0.98), rgb(34, 49, 89)) !important;
  border-color: rgba(166, 198, 255, 0.36) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -10px 18px rgba(6, 12, 26, 0.14), 0 0 0 1px rgba(128, 166, 255, 0.12), 0 14px 28px rgba(0, 0, 0, 0.16) !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-inner-wrapper-focus, body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper.arco-input-wrapper-focus {
  background: linear-gradient(180deg, rgba(32, 48, 86, 0.98), rgb(18, 28, 56)) !important;
  border-color: rgba(120, 165, 255, 0.62) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(120, 165, 255, 0.48), 0 0 0 6px rgba(93, 139, 255, 0.14), 0 16px 34px rgba(32, 64, 148, 0.24) !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper .arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper .arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper .arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper .arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper input {
  background: transparent !important;
  border: none !important;
  border-radius: 24px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  height: 64px !important;
  line-height: 64px !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper .arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper .arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper .arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper .arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.44) !important;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit.arco-btn {
  position: relative;
  overflow: hidden;
  height: 70px;
  border-radius: 24px;
  font-size: 19px;
  font-weight: 700;
  margin-top: 32px;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #8db5ff 0%, #6796ff 24%, #4f79ff 60%, #7069ff 100%) !important;
  border: 1px solid rgba(171, 204, 255, 0.54) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 -10px 18px rgba(36, 58, 142, 0.16), 0 20px 42px rgba(78, 115, 255, 0.36), 0 0 40px rgba(93, 139, 255, 0.24) !important;
  text-shadow: 0 1px 10px rgba(24, 42, 108, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit::before,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit.arco-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.3) 34%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit.arco-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #9ac0ff 0%, #76a3ff 26%, #5b84ff 62%, #7a73ff 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -10px 18px rgba(36, 58, 142, 0.12), 0 26px 50px rgba(78, 115, 255, 0.44), 0 0 48px rgba(93, 139, 255, 0.28) !important;
  filter: brightness(1.02);
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit:hover::before,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .btn-v3-submit.arco-btn:hover::before {
  transform: translateX(120%);
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .official-contact-qr {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .official-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .official-contact-copy .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .official-contact-copy .value {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .official-contact-qr-image {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 20px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.contact-float-modal-wrapper .arco-modal-mask,
body .case-modal-wrapper .arco-modal-mask {
  background: rgba(3, 6, 12, 0.84) !important;
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}
.contact-float-modal-wrapper .arco-modal-wrapper,
.contact-float-modal-wrapper .arco-modal-container,
.contact-float-modal-wrapper .arco-modal,
body .case-modal-wrapper .arco-modal-wrapper,
body .case-modal-wrapper .arco-modal-container,
body .case-modal-wrapper .arco-modal {
  border-radius: 30px;
}
.contact-float-modal-wrapper .arco-modal-wrapper,
body .case-modal-wrapper .arco-modal-wrapper {
  align-items: center !important;
  justify-content: center !important;
}
.contact-float-modal-wrapper .arco-modal-container,
body .case-modal-wrapper .arco-modal-container {
  min-height: calc(100vh - 64px);
  align-items: center;
}

.contact-float-modal-wrapper .contact-float-modal,
body .case-modal-wrapper .case-lead-modal-v3 {
  width: min(560px, 100vw - 40px) !important;
  max-width: calc(100vw - 40px) !important;
}

.contact-float-modal-wrapper .contact-float-modal .arco-modal-content,
body .case-modal-wrapper .case-lead-modal-v3 .arco-modal-content {
  border-radius: 30px !important;
  max-height: calc(100vh - 64px);
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 36px 90px rgba(0, 0, 0, 0.64), 0 0 0 1px rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.contact-float-modal-wrapper .modal-close-btn,
body .case-modal-wrapper .case-lead-modal-v3 .modal-close-btn {
  width: 36px;
  height: 36px;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-float-modal-shell,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
  padding: 32px 36px;
  overflow-y: auto !important;
  flex: 1;
  min-height: 0;
}
.contact-float-modal-shell::-webkit-scrollbar,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container::-webkit-scrollbar {
  width: 5px;
}
.contact-float-modal-shell::-webkit-scrollbar-track,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container::-webkit-scrollbar-track {
  background: transparent;
}
.contact-float-modal-shell::-webkit-scrollbar-thumb,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
.contact-float-modal-shell::-webkit-scrollbar-thumb:hover,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-float-modal-shell {
  max-height: none !important;
}

.contact-float-modal-copy h3,
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.contact-float-modal-copy p,
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy p {
  max-width: 420px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.48);
}

.contact-float-form .arco-form-item,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-form-item {
  margin-bottom: 10px;
}

.contact-float-form .arco-form-item-label,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-form-label-item {
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-float-grid,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .form-row {
  gap: 12px;
}

.contact-float-input.arco-input-wrapper,
.contact-float-textarea.arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper {
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), rgba(10, 15, 26, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -10px 18px rgba(2, 6, 16, 0.22), 0 10px 24px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}
.contact-float-input.arco-input-wrapper:hover, .contact-float-input.arco-input-wrapper:focus-within, .contact-float-input.arco-input-wrapper.arco-input-inner-wrapper-focus, .contact-float-input.arco-input-wrapper.arco-input-wrapper-focus,
.contact-float-textarea.arco-input-wrapper:hover,
.contact-float-textarea.arco-input-wrapper:focus-within,
.contact-float-textarea.arco-input-wrapper.arco-input-inner-wrapper-focus,
.contact-float-textarea.arco-input-wrapper.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input:focus-within,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper:focus-within,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper:focus-within,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper:focus-within,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper.arco-input-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper:hover,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper:focus-within,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper.arco-input-inner-wrapper-focus,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper.arco-input-wrapper-focus {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)), rgba(11, 17, 28, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 4px rgba(255, 255, 255, 0.04), 0 14px 30px rgba(0, 0, 0, 0.22) !important;
  transform: translateY(-1px);
}

.contact-float-input.arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-inner-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-input-wrapper {
  min-height: 54px;
  height: 54px !important;
  padding: 0 18px !important;
}

.contact-float-textarea.arco-input-wrapper {
  min-height: 120px;
  padding: 14px 18px;
}

input.contact-float-input.arco-input,
textarea.contact-float-textarea.arco-textarea,
.contact-float-input .arco-input-inner-wrapper input,
.contact-float-textarea textarea,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input input {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(245, 248, 255, 0.96) !important;
  -webkit-text-fill-color: rgba(245, 248, 255, 0.96) !important;
  caret-color: rgba(245, 248, 255, 0.96) !important;
}

input.contact-float-input.arco-input::placeholder,
textarea.contact-float-textarea.arco-textarea::placeholder,
.contact-float-input .arco-input-inner-wrapper input::placeholder,
.contact-float-textarea textarea::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input::placeholder,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input input::placeholder {
  color: rgba(255, 255, 255, 0.36) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.36) !important;
}

input.contact-float-input.arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input .arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input input {
  height: 52px !important;
  line-height: 52px !important;
  padding: 0 !important;
}

textarea.contact-float-textarea.arco-textarea,
.contact-float-textarea textarea {
  min-height: 92px;
}

.contact-float-modal-actions {
  gap: 12px;
  margin-top: 4px;
}

.contact-submit-btn,
body .case-modal-wrapper .case-lead-modal-v3 .btn-v3-submit,
body .case-modal-wrapper .case-lead-modal-v3 .btn-v3-submit.arco-btn,
.contact-secondary-btn.arco-btn {
  height: 54px !important;
  border-radius: 18px !important;
  font-size: 16px !important;
}

body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
  gap: 32px;
}

body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header {
  gap: 18px;
}

body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

body .case-modal-wrapper .case-lead-modal-v3 .official-contact-qr {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
}

@media (max-width: 1100px) {
  .floating-contact-entry {
    right: 18px;
    width: 64px;
    min-height: 162px;
    gap: 12px;
  }
  .contact-float-modal-shell {
    padding: 22px;
  }
  body .case-modal-wrapper .case-lead-modal-v3,
  .contact-float-modal-wrapper .contact-float-modal {
    width: min(520px, 100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }
  body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
    padding: 28px;
    gap: 24px;
  }
  .contact-float-modal-copy h3 {
    font-size: 28px;
  }
  .contact-float-grid.two-col,
  .contact-float-modal-actions {
    grid-template-columns: 1fr;
  }
  .integration-ecosystem {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .integration-ecosystem::before {
    display: none;
  }
  .ecosystem-core {
    flex: 0 0 auto;
    order: -1;
  }
  .ecosystem-panel {
    width: 100%;
    max-width: 600px;
  }
  .integration-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    max-width: 400px;
  }
  .integration-stats .stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
  .landing-nav .nav-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .landing-nav .nav-links {
    gap: 32px;
  }
  .landing-nav .nav-dropdown-solution {
    width: min(860px, 100vw - 48px);
    grid-template-columns: 1fr;
  }
  .landing-nav .nav-dropdown-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .landing-nav .nav-dropdown-technology {
    width: min(680px, 100vw - 48px);
  }
  .landing-nav .nav-dropdown-technology-grid {
    grid-template-columns: 1fr;
  }
  .landing-nav .nav-link-item {
    font-size: 15px;
  }
  .landing-nav .nav-user-name {
    display: none;
  }
  .hero-brand-mark {
    font-size: 78px;
  }
  .hero-title {
    font-size: 72px;
  }
  .logo-track {
    animation-duration: 22s;
  }
  .intro-title-row {
    grid-template-columns: 1fr;
  }
  .intro-title-row span {
    font-size: 56px;
  }
  .feature-boards,
  .pioneers-grid,
  .stories-grid,
  .legacy-footer-columns,
  .legacy-footer-top {
    grid-template-columns: 1fr;
  }
  .ecosystem-partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ecosystem-partners-panel {
    padding: 30px 24px 28px;
  }
  .feature-board {
    padding: 36px 32px 30px;
  }
  .feature-board-head {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .feature-board-copy {
    max-width: 100%;
  }
  .feature-board-head .arco-typography,
  .feature-board-head p {
    max-width: 680px;
  }
  .feature-board-visual {
    width: 100%;
    flex-basis: auto;
  }
  .feature-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solution-scene-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .solution-scene-panel {
    grid-template-columns: 1fr;
    padding: 8px 0 0;
    min-height: auto;
  }
  .solution-scene-copy h3 {
    font-size: 36px;
  }
  .solution-scene-copy .arco-typography,
  .solution-scene-copy p {
    max-width: 100%;
    font-size: 15px !important;
  }
  .solution-scene-visual {
    min-height: 320px;
  }
  .featured-cases-section {
    padding-top: 92px;
  }
  .featured-cases-section .featured-cases-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .featured-cases-section .featured-cases-summary {
    align-items: flex-start;
  }
  .featured-cases-section .featured-cases-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 30px;
  }
  .featured-cases-section .featured-case-stage {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 22px;
    min-height: 0;
    padding: 24px;
  }
  .featured-cases-section .featured-case-copy-block {
    padding-top: 8px;
  }
  .featured-cases-section .featured-case-name {
    font-size: 42px;
  }
  .featured-cases-section .featured-case-summary {
    font-size: 20px !important;
  }
  .featured-cases-section .featured-case-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-cases-section .featured-case-visual {
    min-height: 0;
  }
  .featured-cases-section .case-illustration-container {
    max-width: 360px;
    max-height: 400px;
  }
  .integration-section {
    padding-top: 92px;
  }
  .integration-section .integration-grid,
  .integration-section .integration-orchestration {
    grid-template-columns: 1fr;
  }
  .integration-section .integration-card-points,
  .integration-section .integration-orchestration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .integration-section .integration-card,
  .integration-section .integration-orchestration {
    padding: 26px 24px;
  }
  .integration-section .integration-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  .integration-section .integration-stats .stat-item {
    min-height: 118px;
    padding: 0 22px;
    justify-content: flex-start;
  }
  .integration-section .integration-stats .stat-label {
    white-space: nowrap;
  }
  .integration-section .integration-stats .stat-item::after {
    display: none;
  }
  .integration-section .integration-stats::before,
  .integration-section .integration-stats::after {
    display: none;
  }
  .integration-section .integration-orchestration-copy h3 {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .floating-contact-entry {
    right: 12px;
    width: 56px;
    min-height: 136px;
    gap: 10px;
  }
  .floating-contact-icon {
    width: 30px;
    height: 30px;
  }
  .floating-contact-text {
    font-size: 12px;
  }
  .contact-float-modal-shell {
    padding: 18px;
  }
  body .case-modal-wrapper .case-lead-modal-v3,
  .contact-float-modal-wrapper .contact-float-modal {
    width: min(100vw - 20px, 100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
  }
  .contact-float-modal-wrapper .contact-float-modal .arco-modal-content,
  body .case-modal-wrapper .case-lead-modal-v3 .arco-modal-content {
    border-radius: 24px !important;
    max-height: calc(100vh - 20px);
  }
  .contact-float-modal-shell,
  body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
    padding: 20px;
  }
  body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header,
  .contact-float-modal-header {
    margin-bottom: 10px;
  }
  body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header {
    gap: 14px;
  }
  body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy h3,
  .contact-float-modal-copy h3 {
    font-size: 24px;
  }
  .contact-float-modal-copy h3 {
    font-size: 24px;
  }
  .contact-float-modal-copy p {
    font-size: 13px;
    line-height: 1.5;
  }
  .contact-float-form .arco-form-item {
    margin-bottom: 16px;
  }
  .contact-float-input.arco-input-wrapper {
    min-height: 52px;
    padding: 0 16px;
  }
  body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .form-row,
  .contact-float-grid.two-col,
  .contact-float-modal-actions {
    grid-template-columns: 1fr;
  }
  .contact-float-textarea.arco-input-wrapper {
    min-height: 120px;
    padding: 12px 16px;
  }
  .contact-submit-btn,
  .contact-secondary-btn.arco-btn {
    --primary-btn-height: 50px;
    height: 50px;
    font-size: 16px;
  }
  .intro-section .section-header .section-title,
  .featured-cases-section .section-header .section-title,
  .integration-section .section-header .section-title,
  .ecosystem-partners-section .section-header .section-title,
  .method-title {
    font-size: 34px;
    line-height: 1.14;
  }
  .intro-section .section-header .section-desc,
  .featured-cases-section .section-header .section-desc,
  .integration-section .section-header .section-desc,
  .ecosystem-partners-section .section-header .section-desc,
  .method-desc {
    font-size: 15px !important;
    line-height: 1.8;
  }
  .landing-nav .nav-links {
    display: none;
  }
  .landing-nav .btn-platform-entry.arco-btn {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .landing-nav .btn-login-entry.arco-btn,
  .landing-nav .nav-user-chip {
    height: 38px;
  }
  .landing-nav,
  .hero-section,
  .logo-bar,
  .intro-section,
  .pioneers-section,
  .method-section,
  .cases-section,
  .partners-section,
  .landing-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-section {
    min-height: 680px;
    padding-top: 128px;
    padding-bottom: 96px;
  }
  .hero-brand-mark {
    font-size: 56px;
  }
  .hero-title {
    font-size: 46px;
  }
  .hero-ribbon {
    width: 860px;
  }
  .ribbon-2 {
    width: 720px;
  }
  .ribbon-3 {
    width: 560px;
  }
  .hero-copy {
    padding-top: 12px;
    text-align: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-cta {
    flex-direction: column;
  }
  .logo-track {
    gap: 14px;
    animation-duration: 18s;
  }
  .logo-item {
    width: 136px;
    height: 60px;
    padding: 10px 14px;
  }
  .ecosystem-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 12px;
  }
  .ecosystem-partners-panel {
    padding: 22px 14px 18px;
    border-radius: 28px;
  }
  .ecosystem-partner-item {
    min-height: 78px;
    padding: 10px 6px;
  }
  .ecosystem-partner-item img {
    max-height: 32px;
  }
  .partner-wordmark {
    font-size: 15px;
  }
  .feature-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .method-panel {
    padding: 0;
  }
  .solution-scene-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .solution-scene-tab {
    min-height: 48px;
    font-size: 14px;
    padding: 0 10px;
  }
  .solution-scene-panel {
    padding: 8px 0 0;
    gap: 18px;
  }
  .solution-scene-copy h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  .solution-scene-copy .arco-typography,
  .solution-scene-copy p {
    font-size: 14px !important;
    line-height: 1.78;
  }
  .solution-scene-accent {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
    margin-bottom: 14px;
  }
  .solution-scene-actions {
    margin-top: 24px;
  }
  .solution-scene-visual {
    min-height: 250px;
  }
  .solution-scene-art {
    height: 250px;
  }
  .featured-cases-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .featured-cases-section .featured-cases-title {
    font-size: 34px;
  }
  .featured-cases-section .featured-cases-desc {
    font-size: 14px !important;
    line-height: 1.8;
  }
  .featured-cases-section .featured-cases-summary strong {
    font-size: 16px;
  }
  .featured-cases-section .featured-cases-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .featured-cases-section .featured-case-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 0;
  }
  .featured-cases-section .featured-case-nav-item {
    min-height: 46px;
    padding: 0 14px;
    font-size: 14px;
  }
  .featured-cases-section .featured-case-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
  .featured-cases-section .featured-case-name {
    font-size: 32px;
  }
  .featured-cases-section .featured-case-summary {
    font-size: 18px !important;
    line-height: 1.7;
  }
  .featured-cases-section .featured-case-paragraph {
    font-size: 14px !important;
    line-height: 1.82;
  }
  .featured-cases-section .featured-case-highlights {
    grid-template-columns: 1fr;
  }
  .featured-cases-section .featured-case-highlight {
    padding: 16px;
  }
  .featured-cases-section .featured-case-visual {
    min-height: 0;
    margin-top: 6px;
  }
  .featured-cases-section .case-illustration-container {
    max-width: 100%;
    aspect-ratio: 16/10;
    max-height: 260px;
    margin-left: 0;
  }
  .integration-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .ecosystem-panel {
    padding: 24px 20px;
  }
  .ecosystem-panel .panel-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ecosystem-panel .panel-content .feature-cell {
    padding: 16px;
  }
  .integration-stats .stat-item .stat-value {
    font-size: 36px;
  }
  .scene-stage-presentation .scene-presentation-workspace {
    left: 100px;
    top: 40px;
    width: 180px;
    height: 130px;
  }
  .scene-stage-presentation .scene-slide-thumbnails {
    left: 60px;
    top: 50px;
  }
  .scene-stage-presentation .scene-slide-thumbnails .slide-thumb {
    width: 34px;
    height: 24px;
  }
  .scene-stage-presentation .scene-ai-toolbox {
    right: 40px;
    top: 80px;
    width: 30px;
    height: 100px;
  }
  .scene-stage-courseware .scene-lesson-board {
    left: 82px;
    top: 22px;
    width: 154px;
    height: 178px;
  }
  .scene-stage-courseware .stack-a {
    left: 8px;
    bottom: 58px;
    width: 78px;
    height: 56px;
  }
  .scene-stage-courseware .stack-b {
    right: 8px;
    bottom: 44px;
    width: 84px;
    height: 60px;
  }
  .scene-stage-courseware .note-a {
    left: 10px;
    top: 100px;
    width: 74px;
    height: 88px;
  }
  .scene-stage-courseware .note-b {
    right: 4px;
    top: 140px;
    width: 76px;
    height: 70px;
  }
  .scene-stage-courseware .orbit-a {
    left: 8px;
    top: 36px;
    width: 260px;
    height: 150px;
  }
  .scene-stage-courseware .orbit-b {
    left: 30px;
    top: 58px;
    width: 216px;
    height: 114px;
  }
  .scene-stage-defense .scene-defense-board {
    left: 96px;
    top: 20px;
    width: 146px;
    height: 184px;
  }
  .scene-stage-defense .scene-defense-card {
    left: 18px;
    bottom: 58px;
    width: 84px;
    height: 64px;
  }
  .scene-stage-defense .thesis-a {
    left: 8px;
    top: 70px;
    width: 82px;
    height: 58px;
  }
  .scene-stage-defense .thesis-b {
    right: 68px;
    bottom: 26px;
    width: 84px;
    height: 58px;
  }
  .scene-stage-defense .scene-laser-path {
    left: 104px;
    top: 108px;
    width: 126px;
    height: 68px;
  }
  .scene-stage-defense .ring-a {
    right: 18px;
    top: 64px;
    width: 84px;
    height: 84px;
  }
  .scene-stage-defense .ring-b {
    right: -8px;
    top: 42px;
    width: 128px;
    height: 128px;
  }
  .scene-stage-business .main-panel {
    left: 34px;
    top: 34px;
    width: 156px;
    height: 116px;
  }
  .scene-stage-business .side-panel {
    right: 14px;
    bottom: 44px;
    width: 100px;
    height: 84px;
  }
  .scene-stage-business .metric-a {
    right: 10px;
    top: 40px;
    width: 76px;
    height: 42px;
  }
  .scene-stage-business .metric-b {
    left: 14px;
    bottom: 18px;
    width: 78px;
    height: 42px;
  }
  .scene-stage-report .report-main {
    left: 62px;
    top: 24px;
    width: 142px;
    height: 190px;
  }
  .scene-stage-report .report-side {
    right: 18px;
    bottom: 24px;
    width: 92px;
    height: 110px;
  }
  .scene-stage-report .badge-a {
    left: 8px;
    top: 126px;
    width: 70px;
    height: 44px;
  }
  .scene-stage-report .badge-b {
    right: 10px;
    top: 56px;
    width: 72px;
    height: 44px;
  }
  .scene-stage-resume .scene-profile-card {
    left: 74px;
    top: 20px;
    width: 136px;
    height: 188px;
  }
  .scene-stage-resume .ring-a {
    left: 18px;
    top: 34px;
    width: 238px;
    height: 132px;
  }
  .scene-stage-resume .ring-b {
    left: 40px;
    top: 56px;
    width: 194px;
    height: 96px;
  }
  .scene-stage-resume .job-a {
    right: 8px;
    top: 82px;
    width: 88px;
    height: 60px;
  }
  .scene-stage-resume .job-b {
    left: 2px;
    bottom: 52px;
    width: 84px;
    height: 56px;
  }
  .scene-stage-contract .scene-contract-stack {
    left: 70px;
    top: 30px;
    width: 150px;
    height: 200px;
  }
  .scene-stage-contract .scene-verification-system {
    left: 30px;
    bottom: 30px;
  }
  .scene-stage-contract .scene-verification-system .encryption-lock {
    width: 32px;
    height: 32px;
  }
  .scene-stage-contract .scene-verification-system .verification-nodes {
    left: 40px;
  }
  .scene-stage-contract .scene-legal-seal-v2 {
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
  }
  .scene-stage-contract .scene-smart-pen-v2 {
    right: 30px;
    top: 80px;
    width: 100px;
  }
  .scene-stage-marketing .scene-marketing-stats {
    left: 40px;
    top: 50px;
    width: 100px;
    height: 80px;
  }
  .scene-stage-marketing .scene-social-device {
    right: 30px;
    top: 10px;
    width: 130px;
    height: 240px;
  }
  .scene-stage-marketing .wave-a {
    right: 16px;
    top: 54px;
    width: 86px;
    height: 86px;
  }
  .scene-stage-marketing .wave-b {
    right: -8px;
    top: 20px;
    width: 132px;
    height: 132px;
  }
  .scene-stage-marketing .stack-a {
    right: 50px;
    bottom: 30px;
    width: 76px;
    height: 58px;
  }
  .scene-stage-marketing .stack-b {
    right: 0;
    bottom: 58px;
    width: 74px;
    height: 58px;
  }
  .scene-stage-marketing .spark-a {
    left: 22px;
    top: 48px;
  }
  .scene-stage-marketing .spark-b {
    right: 94px;
    bottom: 34px;
  }
  .pioneer-avatar,
  .story-visual {
    height: 220px;
  }
  .legacy-footer-top {
    gap: 32px;
  }
  .legacy-footer-contact {
    max-width: 100%;
    justify-self: stretch;
  }
  .legacy-footer-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legacy-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .legacy-footer-records {
    text-align: left;
  }
}
/* Unified modal rewrite */
.contact-float-modal-wrapper,
body .case-modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.contact-float-modal-wrapper .arco-modal-mask,
body .case-modal-wrapper .arco-modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 11, 0.86) !important;
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
}
.contact-float-modal-wrapper .arco-modal-wrapper,
body .case-modal-wrapper .arco-modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: grid !important;
  place-items: center;
  padding: 28px 20px;
  overflow: auto !important;
  overscroll-behavior: contain;
  background: transparent !important;
}
.contact-float-modal-wrapper .arco-modal-container,
body .case-modal-wrapper .arco-modal-container {
  width: 100%;
  min-height: calc(100vh - 56px);
  display: grid !important;
  place-items: center;
  padding: 0;
}
.contact-float-modal-wrapper .arco-modal,
body .case-modal-wrapper .arco-modal {
  position: relative;
  margin: auto;
  background: transparent !important;
  overflow: visible !important;
}

.contact-float-modal-wrapper .contact-float-modal,
body .case-modal-wrapper .case-lead-modal-v3 {
  width: min(560px, 100vw - 40px) !important;
  max-width: calc(100vw - 40px) !important;
}

.contact-float-modal-wrapper .contact-float-modal .arco-modal-content,
body .case-modal-wrapper .case-lead-modal-v3 .arco-modal-content {
  width: 100%;
  max-height: min(700px, 100vh - 48px) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.98), rgba(5, 8, 18, 0.98)) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 28px 80px rgba(0, 0, 0, 0.56) !important;
}

.contact-float-modal-wrapper .modal-close-btn,
body .case-modal-wrapper .case-lead-modal-v3 .modal-close-btn {
  width: 36px;
  height: 36px;
  font-size: 22px;
}

.contact-float-modal-shell,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto !important;
  padding: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.contact-float-modal-shell::-webkit-scrollbar,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container::-webkit-scrollbar {
  width: 6px;
}

.contact-float-modal-shell::-webkit-scrollbar-track,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container::-webkit-scrollbar-track {
  background: transparent;
}

.contact-float-modal-shell::-webkit-scrollbar-thumb,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.contact-float-modal-header,
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header {
  margin-bottom: 14px;
}

body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
  gap: 18px;
}

body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header {
  gap: 16px;
  align-items: flex-start;
}

.contact-float-modal-copy h3,
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.contact-float-modal-copy p,
body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
}

.contact-float-form .arco-form-item,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-form-item {
  margin-bottom: 10px;
}

.contact-float-form .arco-form-item-label,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .arco-form-label-item {
  margin-bottom: 8px;
  font-size: 13px;
}

.contact-float-grid,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .form-row {
  gap: 10px;
}

.contact-float-input.arco-input-wrapper,
.contact-float-textarea.arco-input-wrapper,
body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-input.arco-input-wrapper {
  border-radius: 18px !important;
}

.contact-float-input.arco-input-wrapper {
  min-height: 50px;
  padding: 0 16px;
}

.contact-float-textarea.arco-input-wrapper {
  min-height: 112px;
  padding: 10px 16px;
}

input.contact-float-input.arco-input,
textarea.contact-float-textarea.arco-textarea,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input {
  font-size: 15px !important;
}

body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .lead-modal-input.arco-input,
body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form input.lead-modal-input {
  height: 50px !important;
  line-height: 50px !important;
  padding: 0 16px !important;
}

body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .form-row {
  margin-bottom: 10px;
}

body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .official-contact-qr {
  margin-top: 8px;
  padding: 16px 18px;
  gap: 14px;
}

@media (max-width: 767px) {
  .contact-float-modal-wrapper .arco-modal-wrapper,
  body .case-modal-wrapper .arco-modal-wrapper {
    padding: 16px 10px;
  }
  .contact-float-modal-wrapper .arco-modal-container,
  body .case-modal-wrapper .arco-modal-container {
    min-height: calc(100vh - 32px);
  }
  .contact-float-modal-wrapper .contact-float-modal,
  body .case-modal-wrapper .case-lead-modal-v3 {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
  }
  .contact-float-modal-wrapper .contact-float-modal .arco-modal-content,
  body .case-modal-wrapper .case-lead-modal-v3 .arco-modal-content {
    max-height: calc(100vh - 32px) !important;
    border-radius: 22px !important;
  }
  .contact-float-modal-shell,
  body .case-modal-wrapper .case-lead-modal-v3 .lead-modal-v3-container {
    padding: 20px;
  }
  .contact-float-grid.two-col,
  body .case-modal-wrapper .case-lead-modal-v3 .v3-lead-form .form-row,
  .contact-float-modal-actions {
    grid-template-columns: 1fr;
  }
  .contact-float-modal-copy h3,
  body .case-modal-wrapper .case-lead-modal-v3 .modal-v3-header .header-copy h3 {
    font-size: 22px;
  }
}
/* Customer cases redesign */
.featured-cases-section {
  isolation: isolate;
}
.featured-cases-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 180px;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 48%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.featured-cases-section > * {
  position: relative;
  z-index: 1;
}
.featured-cases-section .featured-cases-overview {
  max-width: 980px;
  margin: 0 auto 32px;
  display: grid;
  gap: 18px;
  justify-items: center;
}
.featured-cases-section .featured-cases-overview-text {
  margin: 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}
.featured-cases-section .featured-cases-overview-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.featured-cases-section .featured-cases-overview-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.featured-cases-section .featured-cases-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.featured-cases-section .featured-case-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}
.featured-cases-section .featured-case-nav-item {
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}
.featured-cases-section .featured-case-nav-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}
.featured-cases-section .featured-case-nav-item.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)), rgba(16, 24, 46, 0.92);
  border-color: rgba(110, 151, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(4, 10, 28, 0.24);
}
.featured-cases-section .featured-case-nav-item.active .case-nav-name,
.featured-cases-section .featured-case-nav-item.active .case-nav-focus {
  color: #ffffff;
}
.featured-cases-section .case-nav-logo {
  width: 64px;
  height: 32px;
  flex: 0 0 64px;
  justify-content: flex-start;
}
.featured-cases-section .case-nav-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.featured-cases-section .case-nav-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.featured-cases-section .case-nav-focus {
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.28s ease;
}
.featured-cases-section .featured-case-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 52px !important;
  align-items: stretch;
  padding: 40px !important;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), rgba(7, 10, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.22);
}
.featured-cases-section .featured-case-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 !important;
}
.featured-cases-section .featured-case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.featured-cases-section .featured-case-kicker {
  margin: 0;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(93, 139, 255, 0.14);
  border: 1px solid rgba(93, 139, 255, 0.26);
  color: #dbe6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}
.featured-cases-section .featured-case-focus {
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.featured-cases-section .featured-case-name {
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.featured-cases-section .featured-case-summary {
  margin-top: 20px !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.55;
  font-weight: 600;
  max-width: 680px;
}
.featured-cases-section .featured-case-paragraph {
  max-width: 680px;
  font-size: 16px !important;
  line-height: 1.9;
}
.featured-cases-section .featured-case-signals {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-cases-section .featured-case-signal {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.featured-cases-section .featured-case-signal .label {
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-cases-section .featured-case-signal .value {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}
.featured-cases-section .featured-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.featured-cases-section .featured-case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
}
.featured-cases-section .featured-case-actions {
  margin-top: 30px;
}
.featured-cases-section .featured-case-actions-mobile {
  display: none;
}
.featured-cases-section .featured-case-visual {
  min-height: 100%;
}
.featured-cases-section .case-illustration-container {
  max-width: none;
  aspect-ratio: 1/1;
  max-height: none;
  margin-left: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)), rgba(8, 12, 24, 0.88);
}
.featured-cases-section .case-illustration-image {
  object-position: center;
}
.featured-cases-section .case-illustration-overlay {
  background: linear-gradient(180deg, rgba(6, 9, 18, 0.02), rgba(6, 9, 18, 0.36)), radial-gradient(circle at top left, rgba(93, 139, 255, 0.22), transparent 42%);
}
.featured-cases-section .case-visual-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(8, 12, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.featured-cases-section .case-visual-caption .label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-cases-section .case-visual-caption .value {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .featured-cases-section .featured-case-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-cases-section .featured-case-stage {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .featured-cases-section .case-illustration-container {
    aspect-ratio: 16/10;
  }
}
@media (max-width: 767px) {
  .featured-cases-section .featured-cases-overview {
    margin-bottom: 24px;
    gap: 14px;
  }
  .featured-cases-section .featured-cases-overview-text {
    font-size: 14px;
    line-height: 1.72;
  }
  .featured-cases-section .featured-cases-overview-tags {
    gap: 8px;
  }
  .featured-cases-section .featured-cases-overview-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
  .featured-cases-section .featured-cases-layout {
    gap: 16px !important;
  }
  .featured-cases-section .featured-case-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
  .featured-cases-section .featured-case-nav-item {
    min-height: 82px;
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
    justify-content: flex-start;
  }
  .featured-cases-section .case-nav-logo {
    width: 48px;
    height: 24px;
    flex-basis: 48px;
  }
  .featured-cases-section .case-nav-name {
    display: block !important;
    font-size: 15px;
  }
  .featured-cases-section .case-nav-focus {
    display: block;
    font-size: 11px;
    line-height: 1.45;
  }
  .featured-cases-section .featured-case-stage {
    padding: 22px !important;
    border-radius: 28px;
    gap: 20px !important;
  }
  .featured-cases-section .featured-case-meta {
    margin-bottom: 14px;
    gap: 10px;
  }
  .featured-cases-section .featured-case-kicker {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }
  .featured-cases-section .featured-case-focus {
    font-size: 12px;
  }
  .featured-cases-section .featured-case-name {
    font-size: 32px !important;
    line-height: 1.12;
    text-align: left;
  }
  .featured-cases-section .featured-case-summary {
    margin-top: 14px !important;
    font-size: 18px !important;
    line-height: 1.68 !important;
    text-align: left;
  }
  .featured-cases-section .featured-case-paragraph {
    margin-top: 14px !important;
    font-size: 14px !important;
    line-height: 1.78 !important;
    text-align: left;
  }
  .featured-cases-section .featured-case-signals {
    gap: 14px;
    margin-top: 22px;
    padding-top: 20px;
  }
  .featured-cases-section .featured-case-signal {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .featured-cases-section .featured-case-signal .label {
    font-size: 11px;
  }
  .featured-cases-section .featured-case-signal .value {
    font-size: 14px;
    line-height: 1.7;
  }
  .featured-cases-section .featured-case-tags {
    gap: 8px;
    margin-top: 20px;
    justify-content: flex-start;
  }
  .featured-cases-section .featured-case-tag {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
  .featured-cases-section .featured-case-copy-block .featured-case-actions {
    display: none;
  }
  .featured-cases-section .featured-case-actions-mobile {
    display: block;
    margin-top: 4px;
  }
  .featured-cases-section .case-illustration-container {
    aspect-ratio: 16/11;
    border-radius: 22px;
  }
  .featured-cases-section .case-visual-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
  }
  .featured-cases-section .case-visual-caption .label {
    font-size: 11px;
  }
  .featured-cases-section .case-visual-caption .value {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* Customer cases refinement v2 */
.featured-cases-section.customer-cases-refined {
  isolation: isolate;
}
.featured-cases-section.customer-cases-refined::after {
  display: none;
}
.featured-cases-section.customer-cases-refined .featured-cases-overview,
.featured-cases-section.customer-cases-refined .featured-case-actions-mobile {
  display: none !important;
}
.featured-cases-section.customer-cases-refined .section-header {
  max-width: 980px;
}
.featured-cases-section.customer-cases-refined .featured-cases-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 420px;
  gap: 56px;
  align-items: start;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-cases-section.customer-cases-refined .featured-case-copy-block {
  min-width: 0;
  padding: 0 !important;
}
.featured-cases-section.customer-cases-refined .featured-case-stage-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.featured-cases-section.customer-cases-refined .featured-case-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  min-height: 0;
}
.featured-cases-section.customer-cases-refined .featured-case-focus {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.featured-cases-section.customer-cases-refined .featured-case-company-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.featured-cases-section.customer-cases-refined .featured-case-company-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-cases-section.customer-cases-refined .featured-case-company-logo img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.featured-cases-section.customer-cases-refined .featured-case-company-copy {
  min-width: 0;
}
.featured-cases-section.customer-cases-refined .featured-case-name {
  margin: 0;
  color: #ffffff;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.featured-cases-section.customer-cases-refined .featured-case-subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.7;
}
.featured-cases-section.customer-cases-refined .featured-case-summary {
  max-width: 760px;
  margin: 28px 0 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 24px !important;
  line-height: 1.62;
  font-weight: 500;
}
.featured-cases-section.customer-cases-refined .featured-case-body {
  max-width: 760px;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.featured-cases-section.customer-cases-refined .featured-case-paragraph {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 15px !important;
  line-height: 1.9;
}
.featured-cases-section.customer-cases-refined .featured-case-signals {
  max-width: 760px;
  display: grid;
  gap: 0;
  margin-top: 34px;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-cases-section.customer-cases-refined .featured-case-signal {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-cases-section.customer-cases-refined .featured-case-signal .label {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.featured-cases-section.customer-cases-refined .featured-case-signal .value {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}
.featured-cases-section.customer-cases-refined .featured-case-stage-footer {
  max-width: 760px;
  display: grid;
  gap: 20px;
  margin-top: 26px;
}
.featured-cases-section.customer-cases-refined .featured-case-proof {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}
.featured-cases-section.customer-cases-refined .featured-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}
.featured-cases-section.customer-cases-refined .featured-case-tag {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}
.featured-cases-section.customer-cases-refined .featured-case-actions {
  margin-top: 4px;
}
.featured-cases-section.customer-cases-refined .featured-case-rail {
  display: grid;
  gap: 20px;
  padding-top: 6px;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-head {
  display: grid;
  gap: 10px;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-head .eyebrow {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.78;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item {
  width: 100%;
  min-height: 0;
  padding: 16px 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 34px 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  text-align: left;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.1);
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item.active .case-nav-index,
.featured-cases-section.customer-cases-refined .featured-case-nav-item.active .case-nav-name,
.featured-cases-section.customer-cases-refined .featured-case-nav-item.active .case-nav-action {
  color: #ffffff;
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item.active .case-nav-meta {
  color: rgba(255, 255, 255, 0.62);
}
.featured-cases-section.customer-cases-refined .case-nav-index {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.featured-cases-section.customer-cases-refined .case-nav-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-cases-section.customer-cases-refined .case-nav-logo img {
  max-width: 68%;
  max-height: 68%;
  border-radius: 0;
}
.featured-cases-section.customer-cases-refined .case-nav-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.featured-cases-section.customer-cases-refined .case-nav-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.featured-cases-section.customer-cases-refined .case-nav-meta {
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  line-height: 1.7;
}
.featured-cases-section.customer-cases-refined .case-nav-action {
  display: none;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-foot span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .featured-cases-section.customer-cases-refined .featured-cases-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-rail {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .featured-cases-section.customer-cases-refined .featured-case-nav-item {
    padding: 14px 0;
  }
}
@media (max-width: 991px) {
  .featured-cases-section.customer-cases-refined .featured-cases-layout {
    margin-top: 26px;
    padding-top: 22px;
    gap: 28px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-stage-topline {
    gap: 10px;
    margin-bottom: 18px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-company-row {
    gap: 14px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-company-logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 16px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-name {
    font-size: 31px !important;
    line-height: 1.1;
  }
  .featured-cases-section.customer-cases-refined .featured-case-subtitle {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
  }
  .featured-cases-section.customer-cases-refined .featured-case-summary {
    margin-top: 20px !important;
    font-size: 19px !important;
    line-height: 1.7 !important;
  }
  .featured-cases-section.customer-cases-refined .featured-case-body {
    margin-top: 20px;
    gap: 12px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-paragraph {
    font-size: 14px !important;
    line-height: 1.82 !important;
  }
  .featured-cases-section.customer-cases-refined .featured-case-signals {
    margin-top: 26px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-signal {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .featured-cases-section.customer-cases-refined .featured-case-proof {
    font-size: 14px;
    line-height: 1.75;
  }
  .featured-cases-section.customer-cases-refined .featured-case-tag {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-nav-item {
    grid-template-columns: 28px 40px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }
  .featured-cases-section.customer-cases-refined .case-nav-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }
  .featured-cases-section.customer-cases-refined .case-nav-name {
    font-size: 14px;
  }
  .featured-cases-section.customer-cases-refined .case-nav-meta {
    font-size: 12px;
    line-height: 1.6;
  }
  .featured-cases-section.customer-cases-refined .case-nav-action {
    display: none;
  }
}
/* Customer cases refinement v4 - Compact Container Layout */
.featured-cases-section.customer-cases-refined {
  padding: 60px 0;
}
.featured-cases-section.customer-cases-refined .section-header {
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
}
.featured-cases-section.customer-cases-refined .featured-cases-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr);
  gap: 0;
  background: #080c18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.featured-cases-section.customer-cases-refined .featured-case-rail {
  background: #080c18;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-list {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  border: none;
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 0;
  text-align: left;
  box-shadow: none;
  grid-template-columns: none;
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.featured-cases-section.customer-cases-refined .featured-case-nav-item.active .case-nav-logo {
  opacity: 1;
  filter: grayscale(0);
}
.featured-cases-section.customer-cases-refined .case-nav-index, .featured-cases-section.customer-cases-refined .case-nav-action {
  display: none;
}
.featured-cases-section.customer-cases-refined .case-nav-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  filter: grayscale(0.5);
  transition: all 0.3s ease;
}
.featured-cases-section.customer-cases-refined .case-nav-logo img {
  max-width: 60%;
  max-height: 60%;
  border-radius: 0;
}
.featured-cases-section.customer-cases-refined .case-nav-copy {
  display: flex;
  align-items: center;
  min-width: 0;
}
.featured-cases-section.customer-cases-refined .case-nav-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}
.featured-cases-section.customer-cases-refined .case-nav-meta {
  display: none;
}
.featured-cases-section.customer-cases-refined .featured-case-stage-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  position: relative;
  min-height: 460px;
  padding: 14px 20px 18px 12px;
  background: #080c18;
}
.featured-cases-section.customer-cases-refined .featured-case-copy-block {
  position: relative;
  z-index: 1;
  padding: 18px 18px 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
  flex: 0 0 50%;
}
.featured-cases-section.customer-cases-refined .featured-case-copy-inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.featured-cases-section.customer-cases-refined .featured-case-visual {
  display: block !important;
  position: relative;
  width: auto;
  flex: 1 1 0;
  margin: 0 !important;
  border-radius: 28px;
  border: none;
  box-shadow: none;
  z-index: 0;
  background: #000;
  overflow: hidden;
}
.featured-cases-section.customer-cases-refined .case-illustration-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}
.featured-cases-section.customer-cases-refined .case-illustration-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.featured-cases-section.customer-cases-refined .case-illustration-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(8, 12, 24, 0) 0%, rgba(8, 12, 24, 0.4) 70%, rgb(8, 12, 24) 100%);
}
.featured-cases-section.customer-cases-refined .featured-case-company-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.featured-cases-section.customer-cases-refined .featured-case-company-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.featured-cases-section.customer-cases-refined .featured-case-company-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.featured-cases-section.customer-cases-refined .featured-case-name {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
  line-height: 1.12;
}
.featured-cases-section.customer-cases-refined .featured-case-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.featured-cases-section.customer-cases-refined .featured-case-keyword {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.featured-cases-section.customer-cases-refined .featured-case-summary {
  margin: 16px 0 8px !important;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px !important;
  line-height: 1.82;
  font-weight: 500;
}
.featured-cases-section.customer-cases-refined .featured-case-proof {
  margin: 0 0 18px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.8;
}
.featured-cases-section.customer-cases-refined .featured-case-signals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0;
  border: none;
  max-width: 500px;
}
.featured-cases-section.customer-cases-refined .featured-case-signal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: none;
  grid-template-columns: none;
}
.featured-cases-section.customer-cases-refined .featured-case-signal .label {
  width: 64px;
  flex: 0 0 64px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}
.featured-cases-section.customer-cases-refined .featured-case-signal .value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.7;
}
.featured-cases-section.customer-cases-refined .featured-case-actions {
  margin-top: auto;
  padding-top: 24px;
}
.featured-cases-section.customer-cases-refined .featured-case-rail-head,
.featured-cases-section.customer-cases-refined .featured-case-rail-foot,
.featured-cases-section.customer-cases-refined .featured-case-stage-topline,
.featured-cases-section.customer-cases-refined .featured-case-body,
.featured-cases-section.customer-cases-refined .featured-case-stage-footer {
  display: none;
}

@media (max-width: 991px) {
  .featured-cases-section.customer-cases-refined .section-header {
    margin-bottom: 24px;
    text-align: left;
  }
  .featured-cases-section.customer-cases-refined .featured-cases-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .featured-cases-section.customer-cases-refined .featured-case-rail {
    border-right: none;
    border-bottom: none;
    background: transparent;
  }
  .featured-cases-section.customer-cases-refined .featured-case-rail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    gap: 10px;
    overflow: visible;
  }
  .featured-cases-section.customer-cases-refined .featured-case-nav-item {
    width: 100%;
    min-width: 0;
    min-height: 74px;
    padding: 10px 8px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 6px;
    text-align: center;
    white-space: normal;
  }
  .featured-cases-section.customer-cases-refined .featured-case-nav-item .case-nav-logo {
    display: flex;
  }
  .featured-cases-section.customer-cases-refined .featured-case-nav-item .case-nav-meta {
    display: none;
  }
  .featured-cases-section.customer-cases-refined .featured-case-nav-item:hover {
    transform: none;
  }
  .featured-cases-section.customer-cases-refined .featured-case-nav-item.active {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
  }
  .featured-cases-section.customer-cases-refined .featured-case-stage-inner {
    flex-direction: column;
    min-height: auto;
    gap: 0;
    padding: 0;
    background: #080c18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  }
  .featured-cases-section.customer-cases-refined .featured-case-copy-block {
    width: 100%;
    flex: none;
    padding: 30px 24px 24px;
    min-width: 0;
    box-sizing: border-box;
  }
  .featured-cases-section.customer-cases-refined .featured-case-visual {
    width: 100%;
    flex: none;
    min-height: 196px;
    order: -1;
    border-radius: 0;
  }
  .featured-cases-section.customer-cases-refined .case-illustration-overlay {
    background: linear-gradient(180deg, rgba(8, 12, 24, 0) 0%, rgba(8, 12, 24, 0.4) 70%, rgb(8, 12, 24) 100%);
  }
}
@media (max-width: 991px) {
  .featured-cases-section.customer-cases-refined {
    padding: 40px 0;
  }
  .featured-cases-section.customer-cases-refined .featured-cases-layout {
    padding: 0 12px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-stage {
    padding: 0;
  }
  .featured-cases-section.customer-cases-refined .featured-case-copy-block {
    padding: 38px 30px 32px;
    display: grid;
    gap: 18px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-copy-inner {
    width: 100%;
    padding: 10px 12px 8px;
    box-sizing: border-box;
  }
  .featured-cases-section.customer-cases-refined .featured-case-company-row {
    margin-bottom: 0;
    min-width: 0;
  }
  .featured-cases-section.customer-cases-refined .featured-case-name {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.16;
    max-width: 100%;
    word-break: break-word;
  }
  .featured-cases-section.customer-cases-refined .featured-case-keywords {
    gap: 8px;
    max-width: 100%;
  }
  .featured-cases-section.customer-cases-refined .featured-case-keyword {
    min-height: 28px;
    padding: 0 12px;
    font-size: 11px;
    max-width: 100%;
  }
  .featured-cases-section.customer-cases-refined .featured-case-keyword:nth-child(n+3) {
    display: none;
  }
  .featured-cases-section.customer-cases-refined .featured-case-summary {
    margin-top: 0 !important;
    max-width: 100%;
    font-size: 13px !important;
    line-height: 1.72;
    word-break: break-word;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .featured-cases-section.customer-cases-refined .featured-case-proof {
    display: none;
  }
  .featured-cases-section.customer-cases-refined .featured-case-signals {
    display: none;
  }
  .featured-cases-section.customer-cases-refined .featured-case-mobile-meta {
    margin-top: 0;
    margin-bottom: 0;
    padding: 18px 18px;
    border-left: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .featured-cases-section.customer-cases-refined .featured-case-mobile-meta .meta-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .featured-cases-section.customer-cases-refined .featured-case-mobile-meta .meta-value {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.65;
    word-break: break-word;
  }
  .featured-cases-section.customer-cases-refined .featured-case-actions {
    margin-top: 0;
  }
  .featured-cases-section.customer-cases-refined .featured-case-actions .btn-primary-glow.arco-btn {
    width: auto;
    min-width: 132px;
    height: 42px;
    padding: 0 18px;
    justify-content: center;
    border-radius: 14px;
    font-size: 13px;
  }
  .featured-cases-section.customer-cases-refined .case-nav-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
  }
  .featured-cases-section.customer-cases-refined .case-nav-name {
    width: 100%;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 767px) {
  .featured-cases-section.customer-cases-refined .featured-cases-layout {
    padding: 0 16px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-copy-block {
    padding: 48px 38px 36px !important;
  }
  .featured-cases-section.customer-cases-refined .featured-case-copy-inner {
    padding: 0 !important;
    display: grid;
    gap: 18px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-company-row,
  .featured-cases-section.customer-cases-refined .featured-case-summary,
  .featured-cases-section.customer-cases-refined .featured-case-mobile-meta,
  .featured-cases-section.customer-cases-refined .featured-case-actions {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .featured-cases-section.customer-cases-refined .featured-case-name {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .featured-cases-section.customer-cases-refined .featured-case-summary {
    line-height: 1.78;
  }
  .featured-cases-section.customer-cases-refined .featured-case-mobile-meta {
    margin-top: 4px;
    padding: 18px 20px;
  }
}
@media (max-width: 991px) {
  .integration-section {
    padding-top: 96px;
    padding-bottom: 88px;
  }
  .integration-section .section-header {
    margin-bottom: 36px;
    text-align: left;
  }
  .integration-section .section-header .section-badge {
    margin-bottom: 16px;
  }
  .integration-section .section-header .section-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 16px;
  }
  .integration-section .section-header .section-desc {
    max-width: none;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.78;
  }
  .integration-section .integration-main-container {
    padding: 0;
  }
  .integration-section .integration-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .integration-section .integration-card {
    height: auto;
  }
  .integration-section .integration-card .card-inner {
    padding: 24px 22px;
    border-radius: 22px;
  }
  .integration-section .integration-card .card-tag {
    position: static;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.08em;
  }
  .integration-section .integration-card .card-header {
    margin-bottom: 22px;
  }
  .integration-section .integration-card .card-title-group p {
    display: none;
  }
  .integration-section .integration-card .card-body {
    gap: 12px;
  }
  .integration-section .integration-card .feature-pro-item {
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .integration-section .integration-card .item-content h5 {
    margin-bottom: 3px;
  }
  .integration-section .integration-card .item-content p {
    color: rgba(255, 255, 255, 0.52);
  }
  .integration-section .integration-card .card-decor-code {
    display: none;
  }
  .integration-section .integration-orchestration-hub {
    gap: 14px;
    padding: 10px 0 6px;
  }
  .integration-section .integration-orchestration-hub .hub-visual {
    width: 160px;
    height: 160px;
  }
  .integration-section .integration-orchestration-hub .hub-visual::before, .integration-section .integration-orchestration-hub .hub-visual::after {
    display: none;
  }
  .integration-section .integration-orchestration-hub .hub-visual .ring-inner {
    inset: 22px;
  }
  .integration-section .integration-orchestration-hub .hub-visual .hub-core {
    width: 84px;
    height: 84px;
  }
  .integration-section .integration-orchestration-hub .hub-info h4 {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .integration-section .integration-orchestration-hub .hub-info p {
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .integration-section .integration-stats-refined {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 28px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
  }
  .integration-section .integration-stats-refined .stat-glass-item {
    padding: 16px 16px 14px;
    min-height: 110px;
    text-align: left;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .integration-section .integration-stats-refined .stat-glass-item .stat-top {
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 8px;
  }
  .integration-section .integration-stats-refined .stat-glass-item .stat-top .val {
    font-size: 28px;
  }
  .integration-section .integration-stats-refined .stat-glass-item .stat-bottom {
    line-height: 1.6;
  }
  .integration-section .integration-stats-refined .stat-glass-item:last-child {
    grid-column: 1/-1;
  }
  .integration-section .integration-stats-refined .stat-glass-divider {
    display: none;
  }
  .integration-section .integration-cta {
    margin-top: 28px;
    text-align: left;
  }
  .integration-section .integration-cta .btn-primary-glow.arco-btn {
    width: 100%;
    justify-content: center;
  }
  .floating-contact-entry {
    display: none;
  }
}
@media (max-width: 767px) {
  .integration-section {
    padding-top: 84px;
    padding-bottom: 76px;
  }
  .integration-section .section-header {
    margin-bottom: 30px;
  }
  .integration-section .section-header .section-badge {
    padding: 5px 12px;
    margin-bottom: 14px;
    font-size: 11px;
  }
  .integration-section .section-header .section-title {
    font-size: 30px;
    line-height: 1.16;
  }
  .integration-section .section-header .section-desc {
    font-size: 14px !important;
    line-height: 1.75;
  }
  .integration-section .integration-grid {
    gap: 14px;
  }
  .integration-section .integration-card .card-inner {
    padding: 20px 18px;
    border-radius: 20px;
  }
  .integration-section .integration-card .card-tag {
    margin-bottom: 12px;
  }
  .integration-section .integration-card .card-header {
    gap: 12px;
    margin-bottom: 18px;
  }
  .integration-section .integration-card .card-icon-wrapper {
    width: 42px;
    height: 42px;
  }
  .integration-section .integration-card .card-title-group h3 {
    font-size: 18px;
  }
  .integration-section .integration-card .feature-pro-item {
    padding: 11px 12px;
    border-radius: 14px;
  }
  .integration-section .integration-card .item-content h5 {
    font-size: 14px;
  }
  .integration-section .integration-card .item-content p {
    font-size: 12px;
    line-height: 1.58;
  }
  .integration-section .integration-orchestration-hub {
    gap: 12px;
    padding: 8px 0 2px;
  }
  .integration-section .integration-orchestration-hub .hub-visual {
    width: 136px;
    height: 136px;
  }
  .integration-section .integration-orchestration-hub .hub-visual .ring-inner {
    inset: 20px;
  }
  .integration-section .integration-orchestration-hub .hub-visual .hub-core {
    width: 74px;
    height: 74px;
  }
  .integration-section .integration-orchestration-hub .hub-visual .core-icon svg {
    width: 24px;
    height: 24px;
  }
  .integration-section .integration-orchestration-hub .hub-info h4 {
    font-size: 16px;
  }
  .integration-section .integration-orchestration-hub .hub-info p {
    font-size: 10px;
  }
  .integration-section .integration-stats-refined {
    gap: 10px;
    margin-top: 24px;
  }
  .integration-section .integration-stats-refined .stat-glass-item {
    min-height: 96px;
    padding: 14px 14px 12px;
    border-radius: 16px;
  }
  .integration-section .integration-stats-refined .stat-glass-item .stat-top .val {
    font-size: 24px;
  }
  .integration-section .integration-stats-refined .stat-glass-item .stat-top .unit {
    font-size: 12px;
  }
  .integration-section .integration-stats-refined .stat-glass-item .stat-bottom {
    font-size: 11px;
  }
  .integration-section .integration-cta {
    margin-top: 24px;
  }
}
body.new-index-page {
  margin: 0;
  background: #000;
}

html::-webkit-scrollbar,
body.new-index-page::-webkit-scrollbar {
  display: none;
}

html,
body.new-index-page {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.new-index-page * {
  box-sizing: border-box;
}

.new-index-page button,
.new-index-page input,
.new-index-page textarea {
  font: inherit;
}

.new-index-page button {
  border: 0;
}

.landing-container {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: #000000;
  color: #f6f8ff;
  --home-primary-cta-width: 320px;
  --home-primary-cta-height: 56px;
  --home-primary-cta-font-size: 18px;
  --home-primary-cta-padding-x: 30px;
  --home-mobile-cta-width: 248px;
  --home-mobile-cta-height: 50px;
  --home-mobile-cta-font-size: 16px;
  --home-mobile-cta-padding-x: 28px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.landing-container.dark-theme {
  --text-soft: rgba(255, 255, 255, 0.55);
  --text-faint: rgba(255, 255, 255, 0.3);
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(67, 120, 255, 0.4);
  --blue: #2663ff;
  --orange: #ff6a1d;
  --scene-accent: #5d8bff;
  --scene-accent-rgb: 93, 139, 255;
  --scene-accent-soft: rgba(93, 139, 255, 0.15);
}
.landing-container::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-cta .btn-primary-glow.arco-btn,
.solution-scene-actions .btn-primary-glow.arco-btn,
.featured-case-actions .btn-primary-glow.arco-btn,
.featured-case-actions-mobile .btn-primary-glow.arco-btn,
.integration-actions .btn-primary-glow.arco-btn,
.ecosystem-partners-action .btn-primary-glow.arco-btn,
.legacy-footer-cta.arco-btn {
  --primary-btn-height: var(--home-primary-cta-height);
  --primary-btn-padding-x: var(--home-primary-cta-padding-x);
  --primary-btn-font-size: var(--home-primary-cta-font-size);
  --primary-btn-weight: 700;
  width: min(100%, var(--home-primary-cta-width));
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.hero-cta .btn-secondary.arco-btn {
  width: min(100%, var(--home-primary-cta-width));
  min-width: 0;
  height: var(--home-primary-cta-height);
  justify-content: center;
  text-align: center;
}

.landing-nav .brand-logo-image,
.landing-nav .logo-wrapper img {
  width: 148px !important;
  height: auto !important;
}

.legacy-footer-logo {
  width: 104px;
  height: 40px;
}

.landing-container .arco-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.landing-container .arco-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.landing-container .arco-btn::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -32%;
  width: 34%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-180%);
  opacity: 0;
  pointer-events: none;
}
.landing-container .arco-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 18, 38, 0.28);
}
.landing-container .arco-btn:hover::before {
  opacity: 1;
}
.landing-container .arco-btn:hover::after {
  opacity: 1;
  animation: buttonSheen 0.95s ease forwards;
}

.custom-modal-root {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.custom-modal-root.is-visible {
  display: block;
}

.custom-modal-root .arco-modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68) !important; /* 统一半透明蒙层 */
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.custom-modal-root .arco-modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px 20px;
}

.custom-modal-root .arco-modal-container {
  width: 100%;
  display: flex;
  min-height: calc(100vh - 64px);
  align-items: center;
  justify-content: center;
}

.custom-modal-root .arco-modal {
  position: relative;
  width: min(100%, 720px);
  margin: auto;
}

.custom-modal-root .arco-modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: transparent;
  padding: 0;
}

.contact-float-modal .arco-modal-content,
.case-lead-modal-v3 .arco-modal-content {
  position: relative;
}

.contact-float-form .arco-form-item,
.v3-lead-form .arco-form-item {
  display: flex;
  flex-direction: column;
}

.contact-float-form .arco-form-item-label-col,
.v3-lead-form .arco-form-label-item {
  display: block;
}

.contact-float-form .arco-form-item-label,
.v3-lead-form .arco-form-label-item {
  display: block;
}

.contact-float-input.arco-input-wrapper,
.contact-float-textarea.arco-input-wrapper,
.lead-modal-input.arco-input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-float-textarea.arco-input-wrapper,
.lead-modal-textarea.arco-input-wrapper {
  align-items: stretch;
}

input.contact-float-input.arco-input,
textarea.contact-float-textarea.arco-textarea,
input.lead-modal-input,
textarea.lead-modal-textarea {
  width: 100%;
}

.official-contact-qr {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.official-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.official-contact-copy .label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.official-contact-copy .value {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.official-contact-qr-image {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
}

.contact-float-form .form-error,
.v3-lead-form .form-error {
  margin-top: 8px;
  color: #ff8c99;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .official-contact-qr {
    align-items: flex-start;
    flex-direction: column;
  }
  .official-contact-qr-image {
    width: 88px;
    height: 88px;
  }
}
/* Unified modal layout */
#contact-modal-root,
#case-modal-root,
#mobile-platform-modal-root {
  z-index: 4000;
}

#contact-modal-root .arco-modal-mask,
#case-modal-root .arco-modal-mask,
#mobile-platform-modal-root .arco-modal-mask {
  background: rgba(0, 0, 0, 0.68) !important; /* 统一半透明蒙层 */
  backdrop-filter: blur(25px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(160%) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  z-index: 100 !important;
}

#contact-modal-root .arco-modal-wrapper,
#case-modal-root .arco-modal-wrapper,
#mobile-platform-modal-root .arco-modal-wrapper {
  display: grid !important;
  place-items: center !important;
  overflow: auto !important;
  overscroll-behavior: contain;
  padding: 24px 16px !important;
  z-index: 200 !important;
}

#contact-modal-root .arco-modal-container,
#case-modal-root .arco-modal-container,
#mobile-platform-modal-root .arco-modal-container {
  width: 100%;
  min-height: calc(100vh - 48px);
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
}

#contact-modal-root .custom-modal-panel,
#case-modal-root .custom-modal-panel,
#mobile-platform-modal-root .custom-modal-panel {
  position: relative;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  width: min(100%, 560px) !important;
  max-width: min(100%, 560px) !important;
}

#case-modal-root .custom-modal-panel {
  width: min(100%, 580px) !important;
  max-width: min(100%, 580px) !important;
}

#contact-modal-root .custom-modal-panel .arco-modal-content,
#case-modal-root .custom-modal-panel .arco-modal-content,
#mobile-platform-modal-root .custom-modal-panel .arco-modal-content {
  width: 100%;
  min-height: 0;
  max-height: min(720px, 100vh - 40px) !important;
  display: flex !important;
  flex-direction: column;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #0a0d16 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 30px 100px rgba(0, 0, 0, 0.95) !important;
}

#contact-modal-root .custom-modal-shell,
#case-modal-root .custom-modal-shell,
#mobile-platform-modal-root .custom-modal-shell {
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

#contact-modal-root .custom-modal-header,
#case-modal-root .custom-modal-header,
#mobile-platform-modal-root .custom-modal-header {
  flex: none;
  padding: 24px 24px 0;
}

#contact-modal-root .custom-modal-form,
#case-modal-root .custom-modal-form,
#mobile-platform-modal-root .custom-modal-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

#contact-modal-root .custom-modal-body,
#case-modal-root .custom-modal-body,
#mobile-platform-modal-root .custom-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 16px 24px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

#contact-modal-root .custom-modal-body::-webkit-scrollbar,
#case-modal-root .custom-modal-body::-webkit-scrollbar,
#mobile-platform-modal-root .custom-modal-body::-webkit-scrollbar {
  width: 6px;
}

#contact-modal-root .custom-modal-body::-webkit-scrollbar-track,
#case-modal-root .custom-modal-body::-webkit-scrollbar-track,
#mobile-platform-modal-root .custom-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

#contact-modal-root .custom-modal-body::-webkit-scrollbar-thumb,
#case-modal-root .custom-modal-body::-webkit-scrollbar-thumb,
#mobile-platform-modal-root .custom-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

#contact-modal-root .custom-modal-footer,
#case-modal-root .custom-modal-footer,
#mobile-platform-modal-root .custom-modal-footer {
  flex: none;
  display: grid;
  gap: 12px;
  padding: 16px 24px 24px;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0), rgba(5, 8, 18, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#contact-modal-root .contact-float-modal-actions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 0;
}

#case-modal-root .lead-modal-footer {
  grid-template-columns: 1fr;
}

#contact-modal-root .contact-float-form .arco-form-item,
#case-modal-root .v3-lead-form .arco-form-item {
  margin-bottom: 10px;
}

#contact-modal-root .contact-float-form .arco-form-item-label,
#case-modal-root .v3-lead-form .arco-form-label-item {
  margin-bottom: 8px;
  font-size: 13px;
}

#contact-modal-root .contact-float-grid,
#case-modal-root .v3-lead-form .form-row {
  display: grid;
  gap: 10px;
}

#contact-modal-root .contact-float-grid.two-col,
#case-modal-root .v3-lead-form .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#case-modal-root .modal-v3-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#contact-modal-root .contact-float-input.arco-input-wrapper,
#contact-modal-root .contact-float-textarea.arco-input-wrapper,
#case-modal-root .lead-modal-input.arco-input-wrapper,
#case-modal-root .v3-lead-form .arco-input-wrapper {
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative;
  padding: 0 !important; /* 核心修复：Wrapper 不带 padding，由内部 input 承载 */
}

#contact-modal-root .contact-float-input.arco-input-wrapper-focus,
#contact-modal-root .contact-float-textarea.arco-input-wrapper-focus,
#case-modal-root .lead-modal-input.arco-input-wrapper-focus,
#case-modal-root .v3-lead-form .arco-input-wrapper-focus {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05) !important;
}

#contact-modal-root input.contact-float-input.arco-input,
#case-modal-root .v3-lead-form .lead-modal-input.arco-input,
#case-modal-root .v3-lead-form input.lead-modal-input,
#case-modal-root .v3-lead-form .arco-input-wrapper input {
  height: 52px !important;
  line-height: 52px !important;
  padding: 0 24px !important; /* 核心修复：将内边距转移到 input 本身，消除内层矩形视觉感 */
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: #fff !important;
  text-indent: 0 !important;
  width: 100% !important;
}
#contact-modal-root input.contact-float-input.arco-input::placeholder,
#case-modal-root .v3-lead-form .lead-modal-input.arco-input::placeholder,
#case-modal-root .v3-lead-form input.lead-modal-input::placeholder,
#case-modal-root .v3-lead-form .arco-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 14px;
  opacity: 1 !important;
}

#contact-modal-root textarea.contact-float-textarea.arco-textarea {
  min-height: 84px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: #fff !important;
  padding: 16px 24px !important; /* 核心修复：Textarea 同样应用内边距 */
  margin: 0 !important;
  text-indent: 0 !important;
  width: 100% !important;
  resize: none;
}
#contact-modal-root textarea.contact-float-textarea.arco-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 14px;
  opacity: 1 !important;
}

#contact-modal-root .contact-float-modal-copy h3,
#case-modal-root .modal-v3-header .header-copy h3,
#mobile-platform-modal-root .mobile-platform-modal-copy h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

#contact-modal-root .contact-float-modal-copy p,
#case-modal-root .modal-v3-header .header-copy p,
#mobile-platform-modal-root .mobile-platform-modal-copy p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

#case-modal-root .official-contact-qr {
  margin-top: 12px;
}

@media (max-width: 767px) {
  #contact-modal-root .arco-modal-wrapper,
  #case-modal-root .arco-modal-wrapper,
  #mobile-platform-modal-root .arco-modal-wrapper {
    padding: 14px 10px !important;
  }
  #contact-modal-root .arco-modal-container,
  #case-modal-root .arco-modal-container,
  #mobile-platform-modal-root .arco-modal-container {
    min-height: calc(100vh - 28px);
  }
  #contact-modal-root .custom-modal-panel,
  #case-modal-root .custom-modal-panel,
  #mobile-platform-modal-root .custom-modal-panel {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
  }
  #contact-modal-root .custom-modal-panel .arco-modal-content,
  #case-modal-root .custom-modal-panel .arco-modal-content,
  #mobile-platform-modal-root .custom-modal-panel .arco-modal-content {
    max-height: calc(100vh - 28px) !important;
    border-radius: 22px !important;
  }
  #mobile-platform-modal-root .custom-modal-panel,
  #mobile-platform-modal-root .arco-modal {
    border-radius: 22px !important;
  }
  #contact-modal-root .custom-modal-header,
  #case-modal-root .custom-modal-header,
  #mobile-platform-modal-root .custom-modal-header,
  #contact-modal-root .custom-modal-body,
  #case-modal-root .custom-modal-body,
  #mobile-platform-modal-root .custom-modal-body,
  #contact-modal-root .custom-modal-footer,
  #case-modal-root .custom-modal-footer,
  #mobile-platform-modal-root .custom-modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  #contact-modal-root .custom-modal-header,
  #case-modal-root .custom-modal-header,
  #mobile-platform-modal-root .custom-modal-header {
    padding-top: 20px;
  }
  #contact-modal-root .custom-modal-footer,
  #case-modal-root .custom-modal-footer,
  #mobile-platform-modal-root .custom-modal-footer {
    padding-top: 14px;
    padding-bottom: 18px;
  }
  #contact-modal-root .contact-float-grid.two-col,
  #case-modal-root .v3-lead-form .form-row,
  #contact-modal-root .contact-float-modal-actions {
    grid-template-columns: 1fr;
  }
  #contact-modal-root .contact-float-modal-copy h3,
  #case-modal-root .modal-v3-header .header-copy h3,
  #mobile-platform-modal-root .mobile-platform-modal-copy h3 {
    font-size: 22px;
  }
}
/* Final modal fixes: keep only one rounded layer and one backdrop layer */
#contact-modal-root.custom-modal-root .arco-modal-mask,
#case-modal-root.custom-modal-root .arco-modal-mask {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.68) !important;
  backdrop-filter: blur(14px) saturate(110%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(110%) !important;
}

#contact-modal-root.custom-modal-root .custom-modal-panel .arco-modal-content,
#case-modal-root.custom-modal-root .custom-modal-panel .arco-modal-content,
#mobile-platform-modal-root.custom-modal-root .custom-modal-panel .arco-modal-content {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

#mobile-platform-modal-root .custom-modal-panel,
#mobile-platform-modal-root .arco-modal {
  background: transparent !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

#contact-modal-root .contact-float-input.arco-input-wrapper,
#contact-modal-root .contact-float-textarea.arco-input-wrapper,
#case-modal-root .v3-lead-form .lead-modal-input.arco-input-wrapper,
#case-modal-root .v3-lead-form .arco-input-wrapper {
  overflow: hidden !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  padding: 0 !important;
}

#contact-modal-root .contact-float-input.arco-input-wrapper::before,
#contact-modal-root .contact-float-input.arco-input-wrapper::after,
#contact-modal-root .contact-float-textarea.arco-input-wrapper::before,
#contact-modal-root .contact-float-textarea.arco-input-wrapper::after,
#case-modal-root .v3-lead-form .lead-modal-input.arco-input-wrapper::before,
#case-modal-root .v3-lead-form .lead-modal-input.arco-input-wrapper::after,
#case-modal-root .v3-lead-form .arco-input-wrapper::before,
#case-modal-root .v3-lead-form .arco-input-wrapper::after {
  display: none !important;
  content: none !important;
}

#case-modal-root .v3-lead-form .arco-input-inner-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#contact-modal-root input.contact-float-input.arco-input,
#contact-modal-root textarea.contact-float-textarea.arco-textarea,
#case-modal-root .v3-lead-form input.lead-modal-input,
#case-modal-root .v3-lead-form .lead-modal-input.arco-input,
#case-modal-root .v3-lead-form .arco-input-wrapper input,
#case-modal-root .v3-lead-form .arco-input-inner-wrapper input {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 24px !important;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box !important;
}

#contact-modal-root textarea.contact-float-textarea.arco-textarea {
  display: block;
  min-height: 92px;
  line-height: 1.6 !important;
  padding: 14px 24px !important;
}

/* Unify section heading styles across non-hero brand sections */
.intro-section .section-header,
.featured-cases-section .section-header,
.integration-section .section-header,
.ecosystem-partners-section .section-header,
.method-section .method-header {
  text-align: center;
  margin-bottom: 40px;
}

.intro-section .section-header .section-title,
.featured-cases-section .section-header .section-title,
.integration-section .section-header .section-title,
.ecosystem-partners-section .section-header .section-title,
.method-section .method-title {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.22);
}

.intro-section .section-header .section-desc,
.featured-cases-section .section-header .section-desc,
.integration-section .section-header .section-desc,
.ecosystem-partners-section .section-header .section-desc,
.method-section .method-desc {
  max-width: 820px;
  margin: 16px auto 0 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 16px !important;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .intro-section .section-header .section-title,
  .featured-cases-section .section-header .section-title,
  .integration-section .section-header .section-title,
  .method-section .method-title {
    font-size: 34px;
    line-height: 1.14;
  }
  .intro-section .section-header .section-desc,
  .featured-cases-section .section-header .section-desc,
  .integration-section .section-header .section-desc,
  .method-section .method-desc {
    font-size: 15px !important;
  }
}
/* Redesigned Integration Section */
.integration-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(38, 99, 255, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

/* Cleaned up old integration styles */
@media (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .platform-grid::before, .platform-grid::after {
    display: none;
  }
  .platform-center {
    order: -1;
    margin-bottom: 20px;
    align-self: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .platform-center::before, .platform-center::after {
    display: none;
  }
  .connection-lines {
    display: none;
  }
  .mcp-column .feature-item::before,
  .mcp-column .feature-item::after,
  .skills-column .feature-item::before,
  .skills-column .feature-item::after,
  .platform-column.mcp-column .column-header::after,
  .platform-column.skills-column .column-header::after {
    display: none;
  }
  .integration-metrics {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .integration-platform {
    padding: 40px 20px;
    border-radius: 30px;
  }
  .feature-item {
    padding: 16px;
  }
  .metric-item .metric-val {
    font-size: 28px;
  }
}
/* Adjust Solution Section Layout */
.method-section .solution-scene-panel {
  padding-left: 40px !important; /* 适度向右靠，修正过远问题 */
  gap: 120px !important; /* 增加图文间距 */
}

.solution-scene-copy {
  max-width: 580px !important; /* 限制文案宽度，避免太散 */
}
.solution-scene-copy p {
  font-size: 18px !important; /* 增大字号配合更多文字 */
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 1024px) {
  .method-section .solution-scene-panel {
    padding-left: 0 !important;
    gap: 40px !important;
  }
  .solution-scene-copy {
    max-width: 100% !important;
  }
}
/* Adjust Customer Case Section Layout */
.featured-cases-section .featured-case-stage {
  gap: 80px !important; /* 显著增加文案与配图的间距 */
  padding-right: 40px !important; /* 压缩右侧空间，迫使内容往左移 */
}

.featured-case-copy-block {
  padding-right: 20px !important; /* 增加文案自身的右间距 */
}

.mobile-nav-toggle,
.mobile-nav-shell {
  display: none;
}

.nav-contact-icon-btn {
  display: none;
}

.section-line {
  display: block;
}

.featured-case-actions-mobile {
  display: none;
}

.mobile-platform-entry {
  display: none;
}

@media (max-width: 991px) {
  .landing-nav,
  .hero-section,
  .logo-bar,
  .intro-section,
  .method-section,
  .featured-cases-section,
  .integration-section,
  .ecosystem-partners-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .landing-nav .nav-content {
    gap: 12px;
    min-height: 72px;
    padding-left: 0;
    padding-right: 0;
  }
  .landing-nav .nav-links {
    display: none !important;
  }
  .landing-nav .nav-actions {
    margin-left: auto;
    gap: 10px;
  }
  .landing-nav .nav-contact-icon-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 20px rgba(0, 0, 0, 0.16);
  }
  .landing-nav #nav-user-slot {
    display: inline-flex;
  }
  .landing-nav .btn-platform-entry.arco-btn {
    display: none !important;
  }
  .landing-nav .btn-login-entry.arco-btn,
  .landing-nav .nav-user-chip {
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 22px rgba(0, 0, 0, 0.18);
  }
  .landing-nav .nav-user-chip {
    gap: 8px;
    padding: 0 16px;
  }
  .landing-nav .nav-user-chip-desktop {
    display: none !important;
  }
  .landing-nav .mobile-platform-entry.arco-btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(72, 115, 255, 0.52);
    background: linear-gradient(135deg, rgba(40, 88, 255, 0.95), rgba(71, 117, 255, 0.92));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 26px rgba(20, 52, 158, 0.34);
  }
  #mobile-platform-modal-root .custom-modal-panel {
    width: min(100%, 460px) !important;
    max-width: min(100%, 460px) !important;
  }
  #mobile-platform-modal-root .mobile-platform-modal-header {
    padding-bottom: 0;
  }
  #mobile-platform-modal-root .mobile-platform-modal-body {
    padding-top: 12px;
  }
  .mobile-platform-modal-copy {
    display: grid;
    gap: 8px;
    text-align: center;
    justify-items: center;
  }
  .mobile-platform-notice-card {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 8px;
  }
  .mobile-platform-notice-card .notice-label {
    color: rgba(255, 255, 255, 0.44);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .official-url-chip {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(90, 134, 255, 0.28);
    background: rgba(47, 92, 255, 0.12);
    color: #dce6ff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: left;
  }
  .mobile-platform-modal-footer {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 24px 24px;
    border-radius: 0 0 28px 28px;
  }
  .landing-nav .nav-user-avatar {
    display: none;
  }
  .landing-nav .nav-user-name {
    max-width: 112px;
    font-size: 14px;
  }
  .mobile-nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 22px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  }
  .mobile-nav-toggle.is-active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(93, 139, 255, 0.3);
  }
  .mobile-nav-shell {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 130;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .mobile-nav-shell.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-nav-mask {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .mobile-nav-panel {
    position: absolute;
    top: 84px;
    left: 24px;
    right: 24px;
    max-height: calc(100vh - 108px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(16, 19, 30, 0.98), rgba(8, 10, 18, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 80px rgba(0, 0, 0, 0.48);
    overflow: hidden;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    transition: transform 0.25s ease;
  }
  .mobile-nav-shell.is-open .mobile-nav-panel {
    transform: translateY(0) scale(1);
  }
  .mobile-nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-nav-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .mobile-nav-close {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
  }
  .mobile-nav-scroll {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px 18px;
    overflow: auto;
    scrollbar-width: none;
  }
  .mobile-nav-scroll::-webkit-scrollbar {
    display: none;
  }
  .mobile-nav-group {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
  }
  .mobile-nav-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .mobile-nav-group-head svg {
    flex: 0 0 auto;
    opacity: 0.72;
  }
  .mobile-nav-subsections {
    display: grid;
    gap: 14px;
    margin-top: 14px;
  }
  .mobile-nav-subtitle {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mobile-nav-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .mobile-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-link-list-tech .mobile-nav-link {
    min-width: 120px;
    justify-content: center;
  }
  .mobile-nav-footer {
    margin-top: 4px;
    padding-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mobile-nav-account-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-nav-account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.96);
  }
  .mobile-nav-account-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .mobile-nav-account-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
  }
  .mobile-nav-account-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-nav-footer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .mobile-nav-primary-btn,
  .mobile-nav-login-btn {
    width: 100%;
    height: 46px;
    justify-content: center;
    font-size: 14px;
  }
  .mobile-nav-doc-link {
    width: 100%;
    height: 44px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
  }
  .hero-section {
    min-height: auto;
    padding-top: 128px !important;
    padding-bottom: 88px !important;
  }
  .hero-copy {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 4px;
    text-align: center;
  }
  .hero-desc,
  .intro-section .section-desc,
  .method-section .method-desc,
  .featured-cases-section .section-desc,
  .integration-section .section-desc,
  .ecosystem-partners-section .section-desc,
  .feature-board-head p,
  .solution-scene-copy p,
  .featured-case-summary,
  .featured-case-paragraph,
  .legacy-footer-contact-desc {
    text-align: center;
  }
  .hero-desc br,
  .intro-section .section-desc br,
  .method-section .method-desc br,
  .featured-cases-section .section-desc br,
  .integration-section .section-desc br,
  .ecosystem-partners-section .section-desc br,
  .feature-board-head p br,
  .solution-scene-copy p br,
  .featured-case-summary br,
  .featured-case-paragraph br,
  .legacy-footer-contact-desc br {
    display: none;
  }
  .feature-boards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-board {
    padding: 30px 28px 26px;
    border-radius: 32px;
  }
  .feature-board-head {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    text-align: left;
    gap: 18px;
  }
  .feature-board-copy {
    max-width: none;
    width: auto;
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
    text-align: left;
  }
  .feature-board-visual {
    order: 2;
    width: 112px;
    flex-basis: 112px;
    flex-shrink: 0;
    margin: 0;
    justify-content: center;
    z-index: 1;
  }
  .feature-art {
    width: 96px;
    height: 96px;
  }
  .feature-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }
  .method-section .solution-scene-panel {
    padding-left: 0 !important;
    gap: 28px !important;
  }
  .solution-scene-copy {
    max-width: 100% !important;
  }
  .featured-cases-section .featured-cases-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .featured-cases-section .featured-case-stage {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px !important;
    padding-right: 24px !important;
  }
  .featured-case-copy-block {
    padding-right: 0 !important;
  }
  .integration-platform {
    margin: 48px auto 0;
    padding: 42px 28px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .platform-center {
    order: -1;
  }
  .connection-lines {
    display: none;
  }
  .integration-metrics {
    flex-wrap: wrap;
    gap: 28px 36px;
  }
  .legacy-footer-inner {
    padding: 36px 24px 20px;
  }
  .legacy-footer-top {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
  }
  .legacy-footer-columns {
    gap: 28px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legacy-footer-contact {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .legacy-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .legacy-footer-records {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .landing-nav,
  .hero-section,
  .logo-bar,
  .intro-section,
  .method-section,
  .featured-cases-section,
  .integration-section,
  .ecosystem-partners-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .landing-nav .nav-content {
    min-height: 64px;
  }
  .landing-nav .brand-logo-image,
  .landing-nav .logo-wrapper img {
    width: 88px !important;
    height: auto !important;
  }
  .landing-nav .nav-actions {
    gap: 8px;
  }
  .landing-nav .nav-contact-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
  .landing-nav .btn-login-entry.arco-btn,
  .landing-nav .nav-user-chip {
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
  .landing-nav .nav-user-name {
    max-width: 76px;
    font-size: 13px;
  }
  .landing-nav .mobile-platform-entry.arco-btn {
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
  .featured-cases-section .featured-case-nav {
    gap: 6px;
  }
  .featured-cases-section .featured-case-nav-item {
    min-height: 50px;
    padding: 8px 4px;
    border-radius: 14px;
  }
  .featured-cases-section .case-nav-logo {
    width: 48px;
    height: 20px;
  }
  #mobile-platform-modal-root .mobile-platform-modal-body {
    padding: 12px 18px 0;
  }
  .mobile-platform-modal-footer {
    grid-template-columns: 1fr;
    padding: 16px 18px 18px;
    border-radius: 0 0 22px 22px;
  }
  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }
  .mobile-nav-panel {
    top: 74px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 90px);
    border-radius: 24px;
  }
  .mobile-nav-panel-head {
    padding: 16px 16px 12px;
  }
  .mobile-nav-scroll {
    gap: 12px;
    padding: 14px 16px 16px;
  }
  .mobile-nav-group {
    padding: 14px;
    border-radius: 18px;
  }
  .mobile-nav-group-head {
    font-size: 15px;
  }
  .mobile-nav-link-list {
    gap: 8px;
  }
  .mobile-nav-link {
    min-height: 36px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 12px;
  }
  .mobile-nav-footer-actions {
    grid-template-columns: 1fr;
  }
  .mobile-nav-doc-link {
    height: 42px;
    font-size: 13px;
  }
  .landing-nav .btn-platform-entry.arco-btn {
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }
  .landing-nav .btn-login-entry.arco-btn,
  .landing-nav .nav-user-chip {
    height: 38px;
  }
  .hero-section {
    padding-top: 112px !important;
    padding-bottom: 72px !important;
  }
  .hero-brand-mark {
    margin-bottom: 12px;
    font-size: 50px !important;
    line-height: 1.02;
  }
  .hero-title {
    margin-top: 0;
    font-size: 34px !important;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  .hero-desc {
    margin-top: 18px !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    max-width: 100%;
  }
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }
  .hero-cta .arco-btn {
    width: min(100%, var(--home-mobile-cta-width));
    min-width: 0;
    margin: 0 auto;
    justify-content: center;
  }
  .hero-cta .btn-primary-glow.arco-btn,
  .hero-cta .btn-secondary.arco-btn {
    height: var(--home-mobile-cta-height);
    font-size: var(--home-mobile-cta-font-size);
    text-align: center;
  }
  .hero-cta .btn-primary-glow.arco-btn {
    position: relative;
    padding-left: var(--home-mobile-cta-padding-x);
    padding-right: var(--home-mobile-cta-padding-x);
  }
  .hero-cta .btn-primary-glow.arco-btn svg {
    position: absolute;
    right: 24px;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }
  .hero-cta .btn-secondary.arco-btn {
    padding-left: var(--home-mobile-cta-padding-x);
    padding-right: var(--home-mobile-cta-padding-x);
  }
  .logo-item {
    width: 124px;
    height: 56px;
    padding: 10px 12px;
  }
  .intro-section,
  .method-section,
  .featured-cases-section,
  .integration-section,
  .ecosystem-partners-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .intro-section .section-header,
  .featured-cases-section .section-header,
  .integration-section .section-header,
  .method-section .method-header {
    margin-bottom: 28px;
  }
  .intro-section .section-header .section-title,
  .featured-cases-section .section-header .section-title,
  .integration-section .section-header .section-title,
  .ecosystem-partners-section .section-header .section-title,
  .method-section .method-title {
    font-size: 32px !important;
    line-height: 1.16 !important;
  }
  .intro-section .section-header .section-desc,
  .featured-cases-section .section-header .section-desc,
  .integration-section .section-header .section-desc,
  .ecosystem-partners-section .section-header .section-desc,
  .method-section .method-desc {
    margin-top: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 320px;
    font-size: 14px !important;
    line-height: 1.72 !important;
    text-wrap: balance;
  }
  .intro-section .section-header .section-desc .section-line,
  .featured-cases-section .section-header .section-desc .section-line,
  .integration-section .section-header .section-desc .section-line,
  .ecosystem-partners-section .section-header .section-desc .section-line,
  .method-section .method-desc .section-line {
    display: block;
  }
  .intro-section .section-header .section-desc .section-line + .section-line,
  .featured-cases-section .section-header .section-desc .section-line + .section-line,
  .integration-section .section-header .section-desc .section-line + .section-line,
  .ecosystem-partners-section .section-header .section-desc .section-line + .section-line,
  .method-section .method-desc .section-line + .section-line {
    margin-top: 4px;
  }
  .feature-board {
    padding: 24px 18px 20px;
    border-radius: 26px;
  }
  .feature-board-head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .feature-board-label {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .feature-board-head p {
    font-size: 14px !important;
    line-height: 1.72;
  }
  .feature-board-visual {
    width: 88px;
    flex-basis: 88px;
  }
  .feature-art {
    width: 74px;
    height: 74px;
  }
  .feature-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
  }
  .feature-board-cell {
    padding: 12px 10px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    border-radius: 16px;
  }
  .cell-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
  }
  .cell-name {
    font-size: 12px;
    line-height: 1.45;
  }
  .method-panel {
    padding: 0 !important;
  }
  .solution-scene-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
    overflow: visible;
    padding: 0;
    margin: 0 0 18px;
    scrollbar-width: none;
  }
  .solution-scene-tabs::-webkit-scrollbar {
    display: none;
  }
  .solution-scene-tab {
    min-width: 0;
    min-height: 48px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
  }
  .solution-scene-panel {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 0 !important;
    gap: 18px !important;
  }
  .solution-scene-accent {
    margin-bottom: 12px;
    align-self: center;
  }
  .solution-scene-copy {
    align-items: center;
    text-align: center;
  }
  .solution-scene-copy h3 {
    margin-bottom: 14px !important;
    font-size: 24px !important;
    line-height: 1.18;
    text-align: center;
  }
  .solution-scene-copy p {
    font-size: 14px !important;
    line-height: 1.72 !important;
    text-align: center;
  }
  .solution-scene-actions {
    display: flex;
    margin-top: 20px !important;
    justify-content: center;
  }
  .solution-scene-actions .arco-btn {
    width: min(100%, var(--home-mobile-cta-width));
    justify-content: center;
  }
  .solution-scene-visual {
    min-height: 188px !important;
  }
  .solution-scene-art {
    height: 188px !important;
  }
  .featured-cases-section .featured-case-nav {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
    scrollbar-width: none;
  }
  .featured-cases-section .featured-case-nav::-webkit-scrollbar {
    display: none;
  }
  .featured-cases-section .featured-case-nav-item {
    min-width: 0;
    min-height: 54px;
    padding: 10px 6px;
    justify-content: center;
    border-radius: 16px;
  }
  .featured-cases-section .case-nav-name {
    display: none;
  }
  .featured-cases-section .case-nav-logo {
    width: 56px;
    height: 24px;
    flex: 0 0 auto;
  }
  .featured-cases-section .featured-case-stage {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 18px !important;
  }
  .featured-cases-section .featured-case-copy-block {
    text-align: center;
  }
  .featured-cases-section .featured-case-name {
    font-size: 28px !important;
    line-height: 1.1;
  }
  .featured-cases-section .featured-case-summary {
    font-size: 17px !important;
    line-height: 1.72 !important;
  }
  .featured-cases-section .featured-case-paragraph {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }
  .featured-cases-section .featured-case-highlights {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .featured-cases-section .featured-case-highlight {
    padding: 14px;
  }
  .featured-cases-section .featured-case-actions .arco-btn {
    width: min(100%, var(--home-mobile-cta-width));
    justify-content: center;
  }
  .featured-cases-section .featured-case-copy-block .featured-case-actions {
    display: none;
  }
  .featured-cases-section .featured-case-actions-mobile {
    display: block;
    margin-top: 2px;
  }
  .featured-cases-section .case-illustration-container {
    max-width: none;
    max-height: 212px !important;
    margin-left: 0;
    border-radius: 22px;
  }
  .integration-platform {
    margin-top: 28px;
    padding: 22px 14px 16px;
    border-radius: 24px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .platform-center {
    display: none;
  }
  .platform-column {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .connection-lines {
    display: none;
  }
  .platform-column .column-header {
    margin-bottom: 16px;
    text-align: center;
  }
  .platform-column .column-header .icon-badge {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 14px;
  }
  .platform-column .column-header h3 {
    font-size: 18px;
  }
  .platform-column .column-header p {
    font-size: 12px;
    line-height: 1.6;
  }
  .feature-stack {
    gap: 12px;
  }
  .feature-item {
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }
  .feature-item .item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .feature-item .item-body h4 {
    font-size: 15px;
  }
  .feature-item .item-body p {
    font-size: 12px;
    line-height: 1.5;
  }
  .integration-metrics {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .metric-item {
    padding: 14px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .metric-item .metric-val {
    font-size: 24px;
  }
  .metric-item .metric-label {
    font-size: 12px;
    line-height: 1.45;
  }
  .integration-actions {
    margin-top: 28px;
  }
  .integration-actions .arco-btn,
  .ecosystem-partners-action .arco-btn,
  .legacy-footer-cta.arco-btn {
    width: min(100%, var(--home-mobile-cta-width));
    justify-content: center;
  }
  .ecosystem-partners-panel {
    padding: 20px 14px 16px;
    border-radius: 24px;
  }
  .ecosystem-partners-layout {
    display: block;
  }
  .ecosystem-category-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 40px;
    padding: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
  }
  .ecosystem-category-nav::before {
    display: none;
  }
  .ecosystem-category-nav::-webkit-scrollbar {
    display: none;
  }
  .ecosystem-category-nav-item {
    flex-shrink: 0;
    padding: 6px 14px;
    height: 32px;
    font-size: 12px;
  }
  .category-nav-name {
    font-size: 12px;
    line-height: 1;
  }
  .ecosystem-partners-showcase {
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
  .ecosystem-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .ecosystem-partner-item {
    min-height: 72px;
    width: calc(50% - 6px);
    padding: 12px 10px;
    border-radius: 16px;
  }
  .ecosystem-partner-item img {
    max-height: 34px;
  }
  .ecosystem-partner-item .logo-wide {
    max-width: 110px;
    max-height: 32px;
  }
  .ecosystem-partner-item .logo-square {
    max-width: 42px;
    max-height: 42px;
    border-radius: 10px;
  }
  .landing-footer.legacy-footer {
    margin-top: 56px;
  }
  .legacy-footer-inner {
    padding: 28px 16px 18px;
  }
  .legacy-footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
  }
  .legacy-footer-title {
    margin-bottom: 14px;
    font-size: 15px;
  }
  .legacy-footer-links {
    gap: 12px;
  }
  .legacy-footer-links a {
    font-size: 13px;
  }
  .legacy-footer-contact-desc {
    margin-bottom: 18px !important;
    font-size: 13px !important;
  }
  .legacy-footer-qr-grid {
    gap: 14px;
    margin-bottom: 18px;
  }
  .legacy-footer-qr-card img {
    width: 78px;
    height: 78px;
    margin-bottom: 8px;
  }
  .legacy-footer-phone {
    margin-bottom: 18px;
    font-size: 13px;
  }
  .legacy-footer-logo {
    width: 88px;
    height: 34px;
  }
  .legacy-footer-records .arco-typography {
    font-size: 11px;
    line-height: 1.8;
  }
  .floating-contact-entry {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile-nav-panel {
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 13, 22, 0.98), rgba(5, 7, 14, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 70px rgba(0, 0, 0, 0.52);
  }
  .mobile-nav-panel-head {
    padding: 20px 20px 14px;
  }
  .mobile-nav-head-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav-head-desc {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    line-height: 1.5;
  }
  .mobile-nav-scroll {
    gap: 12px;
    padding: 14px 20px 20px;
  }
  .mobile-nav-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .mobile-nav-quick-btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(78, 127, 255, 0.26);
    border-radius: 16px;
    background: rgba(38, 99, 255, 0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-nav-quick-btn-secondary {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.84);
  }
  .mobile-nav-accordion,
  .mobile-nav-direct-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), rgba(255, 255, 255, 0.015);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }
  .mobile-nav-direct-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    text-decoration: none;
  }
  .mobile-nav-direct-icon,
  .mobile-nav-trigger-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-nav-direct-main,
  .mobile-nav-trigger-main {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    text-align: left;
  }
  .mobile-nav-direct-title,
  .mobile-nav-trigger-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .mobile-nav-direct-desc,
  .mobile-nav-trigger-desc {
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.55;
  }
  .mobile-nav-direct-arrow,
  .mobile-nav-trigger-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.58);
    transition: transform 0.22s ease, color 0.22s ease;
  }
  .mobile-nav-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 0;
    border-radius: inherit;
    background: transparent;
    text-align: left;
  }
  .mobile-nav-accordion.is-expanded .mobile-nav-trigger-arrow {
    transform: rotate(180deg);
    color: #fff;
  }
  .mobile-nav-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .mobile-nav-accordion.is-expanded .mobile-nav-accordion-body {
    max-height: 960px;
  }
  .mobile-nav-subsections,
  .mobile-nav-link-list-tech {
    padding: 0 18px 18px;
  }
  .mobile-nav-subsections {
    gap: 12px;
  }
  .mobile-nav-subcard {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mobile-nav-subcard-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }
  .mobile-nav-subcard-head .nav-solution-glyph {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    margin: 0;
  }
  .mobile-nav-subcard-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav-subtitle {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
  }
  .mobile-nav-subsummary {
    color: rgba(255, 255, 255, 0.44);
    font-size: 12px;
    line-height: 1.55;
  }
  .mobile-nav-link-list {
    gap: 8px;
  }
  .mobile-nav-link {
    min-height: 36px;
    padding: 0 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
  }
  .mobile-nav-link-list-tech {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mobile-nav-link-list-tech .mobile-nav-link {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
  }
  .mobile-nav-footer {
    margin-top: 2px;
    padding-top: 14px;
  }
}
@media (max-width: 767px) {
  .mobile-nav-panel {
    top: 74px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 90px);
    border-radius: 26px;
  }
  .mobile-nav-panel-head {
    padding: 18px 16px 12px;
  }
  .mobile-nav-title {
    font-size: 15px;
  }
  .mobile-nav-head-desc {
    font-size: 11px;
  }
  .mobile-nav-scroll {
    padding: 12px 16px 16px;
  }
  .mobile-nav-quick-actions {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-nav-quick-btn {
    height: 42px;
    border-radius: 14px;
    font-size: 13px;
  }
  .mobile-nav-accordion,
  .mobile-nav-direct-card {
    border-radius: 20px;
  }
  .mobile-nav-direct-card,
  .mobile-nav-accordion-trigger {
    gap: 12px;
    padding: 14px 15px;
  }
  .mobile-nav-direct-icon,
  .mobile-nav-trigger-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
  .mobile-nav-direct-title,
  .mobile-nav-trigger-title {
    font-size: 15px;
  }
  .mobile-nav-direct-desc,
  .mobile-nav-trigger-desc {
    font-size: 11px;
  }
  .mobile-nav-subsections,
  .mobile-nav-link-list-tech {
    padding: 0 15px 15px;
  }
  .mobile-nav-subcard {
    padding: 12px;
    border-radius: 16px;
  }
  .mobile-nav-subcard-head {
    gap: 10px;
    margin-bottom: 10px;
  }
  .mobile-nav-subcard-head .nav-solution-glyph {
    width: 38px;
    height: 38px;
  }
  .mobile-nav-subtitle {
    font-size: 13px;
  }
  /* Final CTA normalization */
  .hero-cta .btn-primary-glow.arco-btn,
  .solution-scene-actions .btn-primary-glow.arco-btn,
  .featured-case-actions .btn-primary-glow.arco-btn,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn,
  .integration-actions .btn-primary-glow.arco-btn,
  .ecosystem-partners-action .btn-primary-glow.arco-btn,
  .legacy-footer-cta.arco-btn {
    width: min(100%, var(--home-primary-cta-width)) !important;
    min-width: 0 !important;
    height: var(--home-primary-cta-height) !important;
    padding: 0 var(--home-primary-cta-padding-x) !important;
    border-radius: 999px !important;
    font-size: var(--home-primary-cta-font-size) !important;
    font-weight: 700 !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-cta .btn-secondary.arco-btn {
    width: min(100%, var(--home-primary-cta-width)) !important;
    min-width: 0 !important;
    height: var(--home-primary-cta-height) !important;
    padding: 0 var(--home-primary-cta-padding-x) !important;
    border-radius: 999px !important;
    font-size: var(--home-primary-cta-font-size) !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .hero-cta .btn-primary-glow.arco-btn,
  .solution-scene-actions .btn-primary-glow.arco-btn,
  .featured-case-actions .btn-primary-glow.arco-btn,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn,
  .integration-actions .btn-primary-glow.arco-btn,
  .ecosystem-partners-action .btn-primary-glow.arco-btn,
  .legacy-footer-cta.arco-btn {
    width: min(100%, var(--home-mobile-cta-width)) !important;
    height: var(--home-mobile-cta-height) !important;
    padding: 0 var(--home-mobile-cta-padding-x) !important;
    border-radius: 999px !important;
    font-size: var(--home-mobile-cta-font-size) !important;
  }
  .hero-cta .btn-secondary.arco-btn {
    width: min(100%, var(--home-mobile-cta-width)) !important;
    height: var(--home-mobile-cta-height) !important;
    padding: 0 var(--home-mobile-cta-padding-x) !important;
    border-radius: 999px !important;
    font-size: var(--home-mobile-cta-font-size) !important;
  }
}
@media (max-width: 767px) and (min-width: 992px) {
  .solution-scene-actions .btn-primary-glow.arco-btn,
  .featured-case-actions .btn-primary-glow.arco-btn,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn,
  .integration-actions .btn-primary-glow.arco-btn,
  .ecosystem-partners-action .btn-primary-glow.arco-btn {
    width: min(100%, var(--home-primary-cta-width)) !important;
    height: var(--home-primary-cta-height) !important;
    padding: 0 var(--home-primary-cta-padding-x) !important;
    border-radius: 999px !important;
    border: 1.5px solid rgba(113, 152, 255, 0.62) !important;
    background: rgba(7, 12, 24, 0.22) !important;
    color: #eef4ff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(83, 123, 236, 0.08), 0 12px 26px rgba(4, 10, 28, 0.22) !important;
  }
}
@media (max-width: 767px) {
  /* Section CTA variant: keep hero/footer blue, switch inner sections to outlined CTA */
  .solution-scene-actions .btn-primary-glow.arco-btn,
  .featured-case-actions .btn-primary-glow.arco-btn,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn,
  .integration-actions .btn-primary-glow.arco-btn,
  .ecosystem-partners-action .btn-primary-glow.arco-btn {
    border: 2px solid rgba(106, 146, 255, 0.82) !important;
    background: transparent !important;
    color: #eef4ff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(83, 123, 236, 0.06), 0 10px 24px rgba(4, 10, 28, 0.16) !important;
    animation: none !important;
  }
  .solution-scene-actions .btn-primary-glow.arco-btn::before,
  .featured-case-actions .btn-primary-glow.arco-btn::before,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn::before,
  .integration-actions .btn-primary-glow.arco-btn::before,
  .ecosystem-partners-action .btn-primary-glow.arco-btn::before {
    opacity: 0 !important;
    inset: 1px !important;
    background: none !important;
  }
  .solution-scene-actions .btn-primary-glow.arco-btn::after,
  .featured-case-actions .btn-primary-glow.arco-btn::after,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn::after,
  .integration-actions .btn-primary-glow.arco-btn::after,
  .ecosystem-partners-action .btn-primary-glow.arco-btn::after {
    opacity: 0 !important;
    animation: none !important;
  }
  .solution-scene-actions .btn-primary-glow.arco-btn:hover,
  .featured-case-actions .btn-primary-glow.arco-btn:hover,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn:hover,
  .integration-actions .btn-primary-glow.arco-btn:hover,
  .ecosystem-partners-action .btn-primary-glow.arco-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 0 1px rgba(133, 171, 255, 0.18), 0 16px 32px rgba(4, 10, 28, 0.22) !important;
    border-color: rgba(153, 188, 255, 0.96) !important;
    background: rgba(16, 28, 56, 0.18) !important;
  }
  .solution-scene-actions .btn-primary-glow.arco-btn svg,
  .featured-case-actions .btn-primary-glow.arco-btn svg,
  .featured-case-actions-mobile .btn-primary-glow.arco-btn svg,
  .integration-actions .btn-primary-glow.arco-btn svg,
  .ecosystem-partners-action .btn-primary-glow.arco-btn svg {
    color: rgba(167, 196, 255, 0.96) !important;
  }
  .mobile-nav-subsummary {
    font-size: 11px;
  }
  .mobile-nav-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
}