/*
 * Modern Light Tech home system.
 * Scoped to the home page so the other theme views keep their contracts.
 */

:root {
  --home-canvas: #f8fafc;
  --home-surface: #ffffff;
  --home-surface-muted: #f1f5f9;
  --home-line: #e2e8f0;
  --home-line-strong: #cbd5e1;
  --home-ink: #0f172a;
  --home-muted: #475569;
  --home-subtle: #64748b;
  --home-blue: #2563eb;
  --home-blue-dark: #1d4ed8;
  --home-blue-soft: #eff6ff;
  --home-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  --home-shadow-hover: 0 12px 30px -4px rgba(37, 99, 235, 0.12);
  --home-radius: 16px;
  --home-radius-lg: 20px;
  --home-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body.home-page {
  background: var(--home-canvas);
  color: var(--home-ink);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.home-page,
body.home-page main,
body.home-page .home-page-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

body.home-page main {
  overflow: clip;
}

body.home-page .content-wrapper {
  width: 90%;
  max-width: 1200px;
  min-width: 0;
  margin-inline: auto;
}

body.home-page .home-bg-fixed {
  opacity: 0.34;
  pointer-events: none;
}

body.home-page .hero-blob,
body.home-page .hero-bg-grid,
body.home-page .hero-light-streak {
  opacity: 0.18;
}

body.home-page img {
  max-width: 100%;
  height: auto;
}

body.home-page :is(button, a, input):focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.32);
  outline-offset: 3px;
}

/* Header */
body.home-page header.header-glass {
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.home-page .site-header-logo {
  width: auto;
  max-width: 132px;
  height: 38px;
  object-fit: contain;
}

body.home-page .site-header-nav-link {
  color: var(--home-muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
}

body.home-page .site-header-nav-link:hover,
body.home-page .site-header-nav-link--active {
  color: var(--home-blue);
  background: var(--home-blue-soft);
}

body.home-page .header-hotline > div,
body.home-page .mobile-call-pill {
  background: var(--home-blue-soft);
  border: 1px solid rgba(147, 197, 253, 0.55);
}

body.home-page .header-hotline span,
body.home-page .mobile-call-label {
  color: var(--home-blue-dark);
}

/* Shared section rhythm */
body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
  .partner-carousel-section, .news-section) {
  position: relative;
  isolation: isolate;
  padding: 88px 0;
  background: var(--home-canvas);
}

body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
  .partner-carousel-section, .news-section)::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  background: radial-gradient(circle at 12% 18%, rgba(77, 202, 255, 0.2), transparent 38%),
    radial-gradient(circle at 88% 76%, rgba(169, 151, 255, 0.17), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 48%);
}

body.home-page :is(.demo-cards-header__title, .product-cards-heading__title,
  .industry-tabs-heading__title, .news-section__title,
  .partner-carousel-heading .section-title) {
  color: var(--home-ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}

body.home-page :is(.demo-cards-header__text, .card-light__subtitle,
  .industry-detail-sub, .news-section p) {
  color: var(--home-muted);
  line-height: 1.7;
}

body.home-page .section-eyebrow {
  color: var(--home-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Section 1: Hero */
body.home-page .hero-banner-section {
  isolation: isolate;
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding: 80px 0 56px;
  overflow: hidden;
  background: var(--home-canvas);
}

body.home-page .hero-swiper,
body.home-page .hero-swiper .swiper-wrapper,
body.home-page .hero-swiper .swiper-slide {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

body.home-page .hero-swiper {
  position: relative;
  overflow: hidden;
}

body.home-page .hero-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

body.home-page .hero-swiper .swiper-slide {
  position: relative;
  flex: 0 0 100%;
  height: auto;
  overflow: hidden;
}

body.home-page .hero-banner-slide-inner {
  display: grid;
  align-items: center;
  min-height: 580px;
}

body.home-page .hero-banner-slide-inner > .grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: center;
}

body.home-page .hero-banner-slide-inner h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

body.home-page .hero-banner-slide-inner h1 strong,
body.home-page .hero-banner-slide-inner .text-primary {
  color: var(--home-blue-dark);
}

body.home-page .hero-banner-slide-inner .text-base {
  max-width: 38rem;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

body.home-page .hero-banner-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 360px;
}

body.home-page .hero-banner-image {
  display: block;
  width: 620px;
  max-width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.1));
}

body.home-page .hero-swiper-pagination {
  bottom: 22px !important;
}

/* Shared controls */
body.home-page .btn-primary,
body.home-page .btn-outline,
body.home-page .demo-card__btn {
  border-radius: 999px;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease),
    color 0.3s var(--home-ease), background-color 0.3s var(--home-ease),
    border-color 0.3s var(--home-ease);
}

body.home-page .btn-primary,
body.home-page .demo-card__btn--primary {
  background: var(--home-blue);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.18);
}

body.home-page .btn-primary:hover,
body.home-page .demo-card__btn--primary:hover {
  background: var(--home-blue-dark);
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-4px);
}

body.home-page .btn-outline,
body.home-page .demo-card__btn--ghost {
  border-color: var(--home-line-strong);
  color: var(--home-blue-dark);
  background: var(--home-surface);
}

body.home-page .btn-outline:hover,
body.home-page .demo-card__btn--ghost:hover {
  border-color: rgba(37, 99, 235, 0.45);
  background: var(--home-blue-soft);
  transform: translateY(-4px);
}

body.home-page :is(.btn-primary, .btn-outline, .demo-card__btn):active {
  transform: translateY(-1px) scale(0.98);
}

/* Sections 2 and 3: equal-height grids */
body.home-page .demo-cards-grid,
body.home-page .product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

body.home-page .demo-card,
body.home-page .card-light,
body.home-page .industry-detail-card {
  min-width: 0;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--home-radius-lg);
  background: var(--home-surface);
  box-shadow: var(--home-shadow);
}

body.home-page .demo-card,
body.home-page .card-light {
  display: flex;
  flex-direction: column;
  min-height: 388px;
  padding: 24px;
  transition: transform 0.3s var(--home-ease), border-color 0.3s var(--home-ease),
    box-shadow 0.3s var(--home-ease);
}

body.home-page .demo-card:hover,
body.home-page .card-light:hover,
body.home-page .industry-detail-card:hover {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-4px);
}

body.home-page .demo-card__body,
body.home-page .card-light__subtitle {
  min-width: 0;
}

body.home-page .demo-card__body {
  flex: 1;
}

body.home-page .demo-card__desc {
  min-height: 4.8em;
  color: var(--home-muted);
  line-height: 1.65;
}

body.home-page .demo-card__tag,
body.home-page .industry-scenes-item {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: var(--home-blue-soft);
  color: var(--home-blue-dark);
}

body.home-page .demo-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

body.home-page .demo-card__btn {
  width: 100%;
  min-width: 0;
  min-height: 40px;
}

body.home-page .industry-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

body.home-page .card-light__illustration {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

body.home-page .card-light__type {
  color: var(--home-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.home-page .card-light__title,
body.home-page .industry-detail-title {
  color: var(--home-ink);
  letter-spacing: -0.02em;
}

/* Section 4: Industry tabs */
body.home-page .industry-detail-card {
  overflow: hidden;
}

body.home-page .industry-detail-inner {
  padding: 24px;
}

body.home-page .industry-tabs-nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  min-width: 0;
  margin-bottom: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.home-page .industry-tabs-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(83, 100, 124, 0.18);
  scrollbar-width: none;
}

body.home-page .industry-tabs-nav::-webkit-scrollbar {
  display: none;
}

body.home-page .industry-tab-btn {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 58px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-muted);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s var(--home-ease), background 0.2s var(--home-ease);
}

body.home-page .industry-tab-btn + .industry-tab-btn::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 0;
  width: 1px;
  content: '';
  background: rgba(83, 100, 124, 0.18);
}

body.home-page .industry-tab-btn:hover,
body.home-page .industry-tab-btn.is-active {
  color: var(--home-blue-dark);
}

body.home-page .industry-tab-btn:hover {
  background: rgba(43, 88, 249, 0.045);
}

body.home-page .industry-tab-btn.is-active::after {
  position: absolute;
  right: 22%;
  bottom: -1px;
  left: 22%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  content: '';
  background: var(--home-blue);
}

body.home-page .industry-tabs-nav-arrow {
  flex: 0 0 38px;
  width: 38px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #9aa8b8;
}

body.home-page .industry-tabs-nav-arrow:not(:disabled):hover {
  background: rgba(43, 88, 249, 0.045);
  color: var(--home-blue);
}

body.home-page .industry-tabs-nav-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

body.home-page .industry-detail-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
  min-width: 0;
}

body.home-page .industry-detail-image {
  display: block;
  width: 100%;
  max-width: 520px;
  max-height: 360px;
  margin-inline: auto;
  object-fit: contain;
}

body.home-page .industry-detail-content {
  min-width: 0;
}

body.home-page .industry-scenes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

body.home-page .industry-scenes-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
}

body.home-page .industry-scenes-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body.home-page .industry-bottom-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
}

body.home-page .industry-bottom-logo-item {
  display: grid;
  place-items: center;
  width: 72px;
  height: 36px;
}

body.home-page .industry-bottom-logo-item img {
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.58;
}

/* Section 5: Data dashboard */
body.home-page .statistics-scale-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0;
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

body.home-page .statistics-scale-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
}

body.home-page .statistics-scale-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 32px;
  align-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.home-page .statistics-scale-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  min-width: 0;
}

body.home-page .statistics-scale-item {
  min-width: 0;
  transition: none;
}

body.home-page .statistics-scale-item:hover {
  transform: none;
}

body.home-page .stat-number,
body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number__unit,
body.home-page .statistics-scale-item .stat-number--single {
  color: #fff;
  font-variant-numeric: tabular-nums;
}

body.home-page .stat-number {
  white-space: nowrap;
}

body.home-page .statistics-scale-label {
  color: rgba(255, 255, 255, 0.78);
}

body.home-page .statistics-scale-image {
  position: static;
  display: block;
  width: 100%;
  max-width: 360px;
  max-height: 360px;
  margin-inline: auto;
  object-fit: contain;
}

/* Section 6: Partner wall */
body.home-page .partner-carousel-section {
  overflow: visible;
  background: linear-gradient(135deg, #c9f2ff 0%, #e2e1ff 56%, #fff1c9 100%);
}

body.home-page .partner-carousel-heading {
  padding-bottom: 28px;
  text-align: center;
}

body.home-page .partner-carousel-heading .section-title {
  margin: 0;
}

body.home-page .partner-carousel {
  overflow: visible;
  width: 100%;
  padding: 12px 0;
}

body.home-page .partner-carousel-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  filter: none !important;
  opacity: 1;
  transition: opacity 0.3s var(--home-ease);
}

body.home-page .partner-carousel-row:hover {
  filter: none !important;
  opacity: 1;
}

body.home-page .partner-carousel-row img,
body.home-page .partner-carousel-item img {
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
  filter: none !important;
  opacity: 1;
}

/* Section 7: News */
body.home-page .news-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

body.home-page .news-section__grid > div,
body.home-page .news-section__grid article,
body.home-page .news-section__grid .post-card {
  min-width: 0;
  height: 100%;
}

body.home-page .news-section__grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s var(--home-ease);
}

body.home-page .news-section__grid a:hover img {
  transform: scale(1.03);
}

/* Sections 8: CTA and footer */
body.home-page .voice-footer-section {
  position: relative;
  z-index: 2;
  display: block;
  padding: 88px 0 0 !important;
  background: var(--home-surface-muted);
}

body.home-page .voice-footer-container {
  position: relative;
  z-index: 2;
  margin: 0 auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.home-page .voice-footer-characters {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

body.home-page .site-footer {
  position: relative;
  z-index: 1;
  background: #0f172a;
}

/* Responsive isolation - use fixed pixels for zoom stability */
@media (max-width: 1100px) {
  body.home-page .content-wrapper {
    width: 960px;
  }

  body.home-page .demo-cards-grid,
  body.home-page .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  body.home-page .content-wrapper {
    width: 560px;
  }

  body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
    .partner-carousel-section, .news-section) {
    padding: 64px 0;
  }

  body.home-page .statistics-scale-section {
    padding: 20px 0;
  }

  body.home-page .voice-footer-section {
    padding: 64px 0 0 !important;
  }

  body.home-page .voice-footer-container {
    margin: 0 auto !important;
  }

  body.home-page .hero-banner-section {
    min-height: 0;
    padding: 80px 0 40px;
  }

  body.home-page .hero-banner-slide-inner {
    min-height: 0;
    padding: 36px 0 56px;
  }

  body.home-page .hero-banner-slide-inner > .grid,
  body.home-page .industry-detail-body,
  body.home-page .statistics-scale-inner {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-banner-slide-inner h1 {
    max-width: 13ch;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  body.home-page .hero-banner-media {
    min-height: 260px;
  }

  body.home-page .hero-banner-image {
    width: 460px;
    max-height: 340px;
  }

  body.home-page .demo-cards-grid,
  body.home-page .product-cards-grid,
  body.home-page .news-section__grid {
    grid-template-columns: 1fr;
  }

  body.home-page .demo-card,
  body.home-page .card-light {
    min-height: 0;
  }

  body.home-page .industry-detail-inner {
    padding: 16px;
  }

  body.home-page .industry-tabs-nav-shell {
    border-radius: 18px;
  }

  body.home-page .industry-detail-image {
    max-height: 280px;
  }

  body.home-page .statistics-scale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 0;
  }

  body.home-page .statistics-scale-item {
    transform: none !important;
    transition: none !important;
  }

  body.home-page .statistics-scale-item:hover {
    transform: none !important;
  }

  body.home-page .statistics-scale-image {
    display: none;
  }

  body.home-page .partner-carousel-row img {
    max-width: 110px;
    max-height: 38px;
  }
}

/* Editorial hero rail: two quiet proof points keep the OpenAI-like hierarchy
   without changing the existing banner data or CTA behavior. */
body.home-page .hero-banner-slide-inner > .grid > div:first-child::after {
  display: none;
  content: none;
}

body.home-page .hero-banner-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 360px;
  margin-top: 26px;
}

body.home-page .hero-banner-rail-card {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(62, 88, 123, 0.07);
  backdrop-filter: blur(12px);
}

body.home-page .hero-banner-rail-icon {
  display: inline-grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  background: rgba(43, 97, 235, 0.12);
  color: #2e61d8;
  font-size: 16px;
  font-weight: 800;
}

body.home-page .hero-banner-rail-card > span:last-child {
  display: grid;
  min-width: 0;
}

body.home-page .hero-banner-rail-value {
  color: #1e5fbf;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

body.home-page .hero-banner-rail-label {
  overflow: hidden;
  color: #60758a;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  body.home-page .hero-banner-rail {
    width: 100%;
    margin-top: 20px;
  }

  body.home-page .hero-banner-rail-card {
    padding: 10px;
  }
}

/* Floating support control: a quiet glass utility with the same blue-violet
   language as the calculator, while keeping the existing actions and mobile
   collapse/expand behavior intact. */
body.home-page .customer-service-root {
  z-index: 120;
}

body.home-page .customer-service-container {
  width: 58px;
  padding: 4px 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 30px;
  background: linear-gradient(165deg, rgba(40, 92, 240, 0.96), rgba(101, 63, 238, 0.96));
  box-shadow: 0 14px 30px rgba(54, 68, 170, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
}

body.home-page .customer-service-container:hover {
  box-shadow: 0 18px 36px rgba(54, 68, 170, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

body.home-page .customer-service-container-main {
  line-height: 1;
}

body.home-page .customer-service-avatar {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin: -14px auto 10px;
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #c7d5ff);
  box-shadow: 0 6px 14px rgba(20, 41, 125, 0.22);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.25s ease;
}

body.home-page .customer-service-avatar:hover {
  box-shadow: 0 8px 18px rgba(20, 41, 125, 0.3);
  transform: scale(1.06) rotate(-3deg);
}

body.home-page .customer-service-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

body.home-page .customer-service-actions {
  gap: 9px;
  padding: 0 7px 5px;
}

body.home-page .customer-service-action {
  min-height: 48px;
  gap: 3px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.84);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.home-page .customer-service-action:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

body.home-page .customer-service-action svg {
  width: 21px;
  height: 21px;
}

body.home-page .customer-service-action .text {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

body.home-page .back-to-top {
  width: 58px;
  height: 46px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(40, 92, 240, 0.96), rgba(101, 63, 238, 0.96));
  box-shadow: 0 12px 24px rgba(54, 68, 170, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

body.home-page .back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(54, 68, 170, 0.3);
}

body.home-page .customer-service-tooltip {
  border: 1px solid rgba(210, 221, 249, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(49, 68, 139, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.home-page .customer-service-tooltip--phone {
  padding: 10px 14px;
  color: #25417f;
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 767px) {
  body.home-page .customer-service-container {
    width: 54px;
    padding-bottom: 10px;
    border-radius: 28px;
  }

  body.home-page .customer-service-avatar {
    width: 46px;
    height: 46px;
    margin-top: -12px;
  }

  body.home-page .customer-service-action {
    min-height: 44px;
  }

  body.home-page .customer-service-action svg {
    width: 19px;
    height: 19px;
  }

  body.home-page .back-to-top {
    width: 54px;
    height: 44px;
  }
}

/* Statistics alignment: keep each metric in a stable four-column rhythm. */
body.home-page .statistics-scale-inner {
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 24px;
  align-items: center;
  padding: 28px 36px;
}

body.home-page .statistics-scale-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
  align-items: start;
}

body.home-page .statistics-scale-item {
  width: auto;
  min-width: 0;
  padding: 0;
  align-items: center;
  gap: 5px;
  text-align: center;
}

body.home-page .stat-number {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-width: 0;
  gap: 2px;
  white-space: nowrap;
}

body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number--single {
  font-size: clamp(22px, 2.25vw, 32px);
  line-height: 1.05;
}

body.home-page .statistics-scale-item .stat-number__unit {
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1;
}

body.home-page .statistics-scale-label {
  max-width: 6em;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

body.home-page .statistics-scale-image {
  width: 100%;
  max-width: 250px;
  max-height: 240px;
}

@media (max-width: 767px) {
  body.home-page .statistics-scale-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 24px 16px;
  }

  body.home-page .statistics-scale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  body.home-page .statistics-scale-image {
    max-width: 220px;
    max-height: 220px;
    margin-inline: auto;
  }
}

/* Keep the industry partner marks in their original brand colors. */
body.home-page .industry-bottom-logo-item img {
  filter: none !important;
  opacity: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page *,
  body.home-page *::before,
  body.home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  body.home-page header.header-glass,
  body.home-page .demo-card,
  body.home-page .card-light,
  body.home-page .industry-detail-card {
    background: var(--home-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: var(--home-line-strong);
  }
}

/* Apple-inspired refinement layer: material, atmosphere, and quiet motion. */
body.home-page {
  --home-canvas: #f1fbff;
  --home-surface: rgba(255, 255, 255, 0.84);
  --home-line: rgba(255, 255, 255, 0.8);
  --home-ink: #1d1d1f;
  --home-muted: #86868b;
  --home-subtle: #6e6e73;
  --home-blue: #0071e3;
  --home-blue-dark: #0071e3;
  --home-blue-soft: rgba(0, 146, 255, 0.1);
  --home-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  --home-shadow-hover: 0 20px 40px -10px rgba(0, 113, 227, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.home-page :is(.hero-banner-section, .industry-tabs-section) {
  overflow: hidden;
}

body.home-page :is(.hero-banner-section, .industry-tabs-section)::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  opacity: 0.7;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

body.home-page :is(.hero-banner-section, .industry-tabs-section)::before {
  z-index: -2;
  opacity: 1;
  background: radial-gradient(circle at 18% 22%, rgba(57, 198, 255, 0.36) 0%, transparent 42%),
    radial-gradient(circle at 78% 28%, rgba(168, 151, 255, 0.28) 0%, transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(255, 218, 126, 0.18) 0%, transparent 28%);
  filter: blur(80px);
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card) {
  border: 1px solid rgba(255, 255, 255, 0.8);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--home-surface);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card):hover {
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-6px) scale(1.005);
}

body.home-page :is(.demo-cards-header__title, .product-cards-heading__title,
  .industry-tabs-heading__title, .news-section__title,
  .partner-carousel-heading .section-title) {
  color: #1d1d1f;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.home-page :is(.demo-cards-header__text, .card-light__subtitle,
  .industry-detail-sub, .news-section p) {
  color: #86868b;
}

body.home-page .statistics-scale-section {
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

body.home-page .statistics-scale-section::after {
  position: absolute;
  inset: -20% auto -20% -30%;
  z-index: -1;
  width: 36%;
  pointer-events: none;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  transform: skewX(-18deg);
  animation: home-shine 8s ease-in-out infinite;
}

@keyframes home-shine {
  0%, 22% { transform: translateX(-20%) skewX(-18deg); opacity: 0; }
  38% { opacity: 1; }
  58%, 100% { transform: translateX(420%) skewX(-18deg); opacity: 0; }
}

body.home-page .voice-footer-section {
  padding: 88px 0 0 !important;
  background: var(--home-canvas);
}

body.home-page .voice-footer-container {
  min-height: 448px;
  height: auto !important;
  overflow: hidden !important;
  background-color: #0d1b2a !important;
  background-image: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%) !important;
}

body.home-page .voice-footer-container::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

body.home-page .voice-footer-phone {
  position: relative;
  z-index: 1;
}

body.home-page .voice-footer-phone input,
body.home-page .voice-footer-phone .dropdown-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.home-page .voice-footer-phone input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

body.home-page .voice-footer-phone > button {
  background: var(--home-blue);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

body.home-page .voice-footer-phone > button:hover {
  background: #147ce5;
  box-shadow: 0 14px 32px rgba(0, 113, 227, 0.4);
  transform: translateY(-2px);
}

body.home-page .site-footer {
  background: #1d1d1f;
}

@media (max-width: 767px) {
  body.home-page .voice-footer-section {
    padding-top: 64px !important;
  }

  body.home-page .voice-footer-container {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .statistics-scale-section::after {
    animation: none;
    display: none;
  }
}

/* Brightness pass: keep the blue identity, lift the heavy dark anchors. */
body.home-page {
  --home-canvas: #f7fbff;
  --home-surface: rgba(255, 255, 255, 0.9);
  --home-surface-muted: #eef7ff;
  --home-line: rgba(148, 190, 224, 0.34);
  --home-ink: #16324f;
  --home-muted: #587089;
  --home-subtle: #718ba2;
  --home-blue: #1677d2;
  --home-blue-dark: #0b63b5;
  --home-blue-soft: rgba(26, 125, 218, 0.1);
}

body.home-page .hero-banner-section {
  background: linear-gradient(180deg, #fafdff 0%, #f2f9ff 100%);
}

body.home-page .statistics-scale-section {
  color: var(--home-ink);
  background: linear-gradient(135deg, #dff3ff 0%, #c7e8ff 52%, #e8e7ff 100%);
}

body.home-page .statistics-scale-section::before {
  opacity: 0.34;
  background-image: linear-gradient(rgba(22, 119, 210, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 119, 210, 0.12) 1px, transparent 1px);
}

body.home-page .stat-number,
body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number__unit,
body.home-page .statistics-scale-item .stat-number--single {
  color: #145b9c;
}

body.home-page .statistics-scale-label {
  color: #4e718d;
}

body.home-page .voice-footer-section {
  background: linear-gradient(180deg, #eef8ff 0%, #f8fcff 100%);
}

body.home-page .voice-footer-container {
  background-color: #dff3ff !important;
  background-image: linear-gradient(135deg, #d9f2ff 0%, #e9eaff 58%, #f5faff 100%) !important;
}

body.home-page .voice-footer-title,
body.home-page .voice-footer-subtitle,
body.home-page .voice-footer-desc,
body.home-page .voice-footer-contact-tip {
  color: #16324f;
}

body.home-page .voice-footer-desc,
body.home-page .voice-footer-contact-tip {
  color: #587089;
}

body.home-page .voice-footer-phone input,
body.home-page .voice-footer-phone .dropdown-toggle {
  border-color: rgba(22, 119, 210, 0.2);
  background: rgba(255, 255, 255, 0.76);
  color: #16324f;
}

body.home-page .voice-footer-phone input::placeholder {
  color: #7891a7;
}

body.home-page .site-footer {
  background: #eaf4fb;
  border-top: 1px solid rgba(148, 190, 224, 0.38);
  color: #39566e;
}

body.home-page .site-footer h6,
body.home-page .site-footer a,
body.home-page .site-footer-contact a {
  color: #39566e;
}

body.home-page .site-footer a:hover {
  color: var(--home-blue);
}

/* Cohesive landing composition: one atmosphere, floating content surfaces. */
body.home-page {
  --home-canvas: #f5f6ff;
  --home-surface: rgba(255, 255, 255, 0.78);
  --home-surface-muted: rgba(255, 255, 255, 0.34);
  --home-line: rgba(255, 255, 255, 0.72);
  --home-line-strong: rgba(111, 129, 196, 0.24);
  --home-ink: #111827;
  --home-muted: #56627c;
  --home-subtle: #7c87a0;
  --home-blue: #2457dc;
  --home-blue-dark: #173aa5;
  --home-blue-soft: rgba(57, 91, 222, 0.1);
  background: #f5f6ff;
}

body.home-page main {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 72% 44% at 50% 8%, rgba(185, 193, 255, 0.9), transparent 72%),
    radial-gradient(ellipse 54% 28% at 10% 32%, rgba(124, 157, 255, 0.32), transparent 72%),
    radial-gradient(ellipse 54% 30% at 92% 42%, rgba(219, 190, 255, 0.3), transparent 72%),
    linear-gradient(180deg, #c5ccff 0%, #e7e9ff 29%, #f5f6ff 67%, #ffffff 100%);
}

body.home-page main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: '';
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 48%);
}

body.home-page main > * {
  position: relative;
  z-index: 1;
  background: transparent;
}

body.home-page .hero-banner-section {
  min-height: 760px;
  padding: 108px 0 20px;
  background: transparent;
}

body.home-page .hero-banner-slide-inner {
  min-height: 660px;
}

body.home-page .hero-banner-slide-inner > .grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  justify-items: center;
  text-align: center;
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.home-page .hero-banner-slide-inner h1 {
  max-width: 16ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body.home-page .hero-banner-slide-inner .text-base {
  max-width: 42rem;
  color: #293654;
  text-align: center;
}

body.home-page .hero-banner-media {
  width: 700px;
  margin-top: 20px;
}

body.home-page .hero-banner-image {
  max-height: 310px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(68, 78, 166, 0.16));
}

body.home-page .hero-swiper-pagination {
  bottom: 8px;
}

body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
  .partner-carousel-section, .news-section) {
  padding: 104px 0;
  background: transparent;
}

body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
  .partner-carousel-section, .news-section)::before,
body.home-page :is(.hero-banner-section, .industry-tabs-section)::before {
  background: transparent;
  filter: none;
}

body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
  .partner-carousel-section, .news-section)::after,
body.home-page :is(.hero-banner-section, .industry-tabs-section)::after {
  display: none;
}

body.home-page .demo-cards-inner,
body.home-page .product-cards-grid,
body.home-page .industry-detail-card,
body.home-page .news-section__grid {
  position: relative;
}

body.home-page .demo-card,
body.home-page .card-light,
body.home-page .industry-detail-card,
body.home-page .news-section__grid > div > div {
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 55px rgba(76, 91, 173, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

body.home-page .demo-card:hover,
body.home-page .card-light:hover,
body.home-page .news-section__grid > div > div:hover {
  box-shadow: 0 26px 64px rgba(76, 91, 173, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

body.home-page .statistics-scale-section {
  margin: 12px max(24px, calc((100% - 1200px) / 2));
  padding: 64px 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  color: var(--home-ink);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 56px rgba(82, 92, 173, 0.08);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

body.home-page .statistics-scale-section::before {
  opacity: 0.18;
  background-image: linear-gradient(rgba(75, 91, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 91, 184, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
}

body.home-page .partner-carousel-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

body.home-page .partner-carousel-row img,
body.home-page .partner-carousel-item img {
  filter: grayscale(1) contrast(1.1) !important;
  opacity: 0.72;
}

body.home-page .voice-footer-section {
  padding: 110px 0 0 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 32%);
}

body.home-page .voice-footer-container {
  border-radius: 36px 36px 0 0 !important;
  background-color: #dce2ff !important;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.64), transparent 48%),
    linear-gradient(135deg, #d3ddff 0%, #e5dfff 52%, #f3f5ff 100%) !important;
  box-shadow: 0 -22px 70px rgba(87, 96, 176, 0.08) !important;
}

body.home-page .site-footer {
  background: #ffffff;
  border-top-color: rgba(130, 145, 197, 0.18);
}

@media (max-width: 767px) {
  body.home-page .hero-banner-section {
    min-height: 640px;
    padding-top: 80px;
  }

  body.home-page .hero-banner-slide-inner {
    min-height: 540px;
  }

  body.home-page .hero-banner-slide-inner h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
    .partner-carousel-section, .news-section) {
    padding: 72px 0;
  }

  body.home-page .statistics-scale-section {
    margin-inline: 16px;
    border-radius: 24px;
  }

  body.home-page .voice-footer-section {
    padding-top: 72px !important;
  }

  body.home-page .voice-footer-container {
    border-radius: 24px 24px 0 0 !important;
  }
}

/* Restore the original section rhythm: distinct content, shared light canvas. */
body.home-page {
  --home-canvas: #eef3ff;
  --home-surface: #ffffff;
  --home-surface-muted: #f5f7ff;
  --home-line: rgba(142, 158, 210, 0.24);
  --home-line-strong: rgba(91, 113, 190, 0.34);
  --home-ink: #111827;
  --home-muted: #68738b;
  --home-subtle: #8b94a8;
  --home-blue: #285cf0;
  --home-blue-dark: #1947cf;
  --home-blue-soft: rgba(40, 92, 240, 0.1);
  background: #eef3ff;
}

body.home-page main {
  background: linear-gradient(180deg, #e9efff 0%, #f1f4ff 58%, #ffffff 100%);
}

body.home-page main::before {
  opacity: 0.4;
  background-image: radial-gradient(rgba(99, 126, 218, 0.2) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 92%);
}

body.home-page .hero-banner-section {
  min-height: 650px;
  padding: 80px 0 56px;
  background: transparent;
}

body.home-page .hero-banner-slide-inner {
  min-height: 520px;
}

body.home-page .hero-banner-slide-inner > .grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  justify-items: stretch;
  text-align: left;
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child {
  display: block;
  text-align: left;
}

body.home-page .hero-banner-slide-inner h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body.home-page .hero-banner-slide-inner .text-base {
  max-width: 34rem;
  color: var(--home-muted);
  text-align: left;
}

body.home-page .hero-banner-media {
  width: 100%;
  margin-top: 0;
}

body.home-page .hero-banner-image {
  max-height: 430px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 44px rgba(68, 78, 166, 0.14));
}

body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
  .partner-carousel-section, .news-section) {
  padding: 88px 0;
  background: transparent;
}

body.home-page .demo-card,
body.home-page .card-light,
body.home-page .industry-detail-card,
body.home-page .news-section__grid > div > div {
  border: 1px solid rgba(194, 204, 235, 0.76);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(86, 104, 176, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page .demo-card:hover,
body.home-page .card-light:hover,
body.home-page .news-section__grid > div > div:hover {
  box-shadow: 0 18px 38px rgba(67, 89, 174, 0.16);
}

body.home-page .statistics-scale-section {
  margin: 0;
  padding: 72px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page .statistics-scale-section::before {
  opacity: 0;
}

body.home-page .statistics-scale-inner {
  padding: 32px 40px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(86, 104, 176, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.home-page .stat-number,
body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number__unit,
body.home-page .statistics-scale-item .stat-number--single {
  color: #087f91;
}

body.home-page .statistics-scale-label {
  color: #6d7c91;
}

body.home-page .partner-carousel-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

body.home-page .partner-carousel-row img,
body.home-page .partner-carousel-item img {
  filter: grayscale(0) !important;
  opacity: 1;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body.home-page .partner-carousel-item {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(86, 104, 176, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.home-page .partner-carousel-item img {
  filter: contrast(1.08) saturate(1.06) brightness(1.02) !important;
}

body.home-page .voice-footer-section {
  padding: 64px 0 0 !important;
  background: transparent;
}

body.home-page .voice-footer-container {
  border-radius: 28px 28px 0 0 !important;
  background-color: #643cff !important;
  background-image: linear-gradient(135deg, #7b24ff 0%, #394bff 100%) !important;
  box-shadow: 0 -18px 48px rgba(91, 66, 222, 0.18) !important;
}

body.home-page .voice-footer-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  text-align: center;
}

body.home-page .voice-footer-title,
body.home-page .voice-footer-subtitle,
body.home-page .voice-footer-desc {
  color: #ffffff;
}

body.home-page .voice-footer-desc {
  color: rgba(255, 255, 255, 0.78);
}

body.home-page .voice-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  margin-top: 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, #285cf0, #4a4df0);
  box-shadow: 0 12px 24px rgba(40, 92, 240, 0.2);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.home-page .voice-footer-cta:hover {
  background: linear-gradient(135deg, #1e4ddd, #3e41de);
  box-shadow: 0 16px 28px rgba(40, 92, 240, 0.26);
  transform: translateY(-2px);
}

body.home-page .site-footer {
  background: #0e1a2d;
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
}

body.home-page .site-footer h6,
body.home-page .site-footer a,
body.home-page .site-footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

body.home-page .site-footer a:hover {
  color: #9ab8ff;
}

@media (max-width: 767px) {
  body.home-page .hero-banner-section {
    min-height: 620px;
    padding-top: 72px;
  }

  body.home-page .hero-banner-slide-inner {
    min-height: 540px;
  }

  body.home-page .hero-banner-slide-inner > .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    text-align: center;
  }

  body.home-page .hero-banner-slide-inner > .grid > div:first-child,
  body.home-page .hero-banner-slide-inner .text-base {
    text-align: center;
  }

  body.home-page .hero-banner-slide-inner h1 {
    max-width: 14ch;
    margin-inline: auto;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  body.home-page .statistics-scale-inner {
    padding: 24px 18px;
  }

  body.home-page .voice-footer-container {
    min-height: 0;
    border-radius: 22px 22px 0 0 !important;
  }
}

/* Header cleanup: quiet navigation, one contained hotline capsule. */
body.home-page .site-header-nav-link {
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  color: #59657b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

body.home-page .site-header-nav-link:hover,
body.home-page .site-header-nav-link--active {
  color: var(--home-blue);
  background: transparent;
}

body.home-page .site-header-nav-link--active::after {
  bottom: 2px;
  width: 18px;
  height: 2px;
}

body.home-page .header-hotline {
  gap: 8px;
  padding: 3px 4px 3px 3px;
  border: 1px solid rgba(106, 135, 218, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 4px 14px rgba(79, 101, 175, 0.06);
}

body.home-page .header-hotline > div {
  padding: 5px 12px 5px 6px;
  border: 0;
  background: rgba(222, 232, 255, 0.86);
}

body.home-page .header-hotline > div > span:first-child {
  width: 28px;
  height: 28px;
}

/* Keep the call icon crisp and intentional against the pale glass header. */
body.home-page .header-hotline > div > span:first-child,
body.home-page .mobile-call-icon {
  background: linear-gradient(145deg, #5a88ff 0%, #285cf0 72%) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 12px rgba(40, 92, 240, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

body.home-page .header-hotline > div > span:first-child svg,
body.home-page .mobile-call-icon svg {
  color: #ffffff !important;
  filter: drop-shadow(0 1px 1px rgba(19, 48, 140, 0.2));
}

body.home-page .header-hotline > div > span:last-child {
  color: #2554c7;
  font-size: 15px;
}

body.home-page .header-hotline > span {
  padding-right: 6px;
  color: var(--home-blue);
  font-size: 13px;
}

body.home-page .header-hotline:focus-visible {
  outline: 2px solid rgba(40, 92, 240, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1100px) and (min-width: 768px) {
  body.home-page .site-header-nav-link {
    padding-inline: 8px;
    font-size: 13px;
  }

  body.home-page .header-hotline > span {
    display: none;
  }
}

/* Codex-style floral atmosphere: a real moving image layer with a soft fade. */
body.home-page {
  position: relative;
  background: #f1f2fc;
}

body.home-page .home-bg-fixed {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 1900px;
  opacity: 1;
  background: #efeefe;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 680px, rgba(0, 0, 0, 0.7) 1120px, transparent 1900px);
  mask-image: linear-gradient(to bottom, #000 0, #000 680px, rgba(0, 0, 0, 0.7) 1120px, transparent 1900px);
}

body.home-page .home-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  filter: saturate(1.1) contrast(1.06) brightness(0.99);
}

body.home-page .home-cursor-trail {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  pointer-events: none;
}

body.home-page .home-ascii-overlay {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  pointer-events: none;
}

body.home-page .home-ascii-overlay,
body.home-page .home-cursor-trail {
  mix-blend-mode: screen;
}

body.home-page :is(.hero-blob, .hero-bg-grid, .hero-light-streak) {
  display: none;
}

body.home-page main {
  position: relative;
  z-index: 1;
  background: transparent;
}

body.home-page main::before {
  display: none;
}

@media (max-width: 767px) {
  body.home-page .home-bg-fixed {
    height: 1400px;
  }

  body.home-page .home-bg-video {
    object-position: 58% top;
  }
}

/* Editorial floor system inspired by the reference homepage: quieter surfaces,
   stronger section rhythm, and one clear reading direction per floor. */
body.home-page :is(.demo-cards-section, .product-cards-section,
  .industry-tabs-section, .news-section, .partner-carousel-section) {
  padding-top: 96px;
  padding-bottom: 96px;
}

body.home-page .demo-cards-header,
body.home-page .product-cards-heading,
body.home-page .industry-tabs-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  text-align: left;
}

body.home-page .demo-cards-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(30, 47, 70, 0.13);
}

body.home-page .section-eyebrow,
body.home-page .demo-cards-header__more,
body.home-page .product-cards-heading::before,
body.home-page .industry-tabs-heading::before {
  color: #6a7b8d;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home-page .demo-cards-header__title,
body.home-page .product-cards-heading__title,
body.home-page .industry-tabs-heading__title,
body.home-page .news-section__title {
  margin: 0;
  color: #101a2b;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-align: left;
}

body.home-page .demo-cards-header__text {
  display: grid;
  gap: 9px;
}

body.home-page .demo-cards-header__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  color: #1f5fc1;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

body.home-page .demo-cards-header__more:hover {
  color: #124da5;
  transform: translateX(4px);
}

body.home-page .demo-cards-header__more svg {
  width: 15px;
  height: 15px;
}

body.home-page .product-cards-heading,
body.home-page .industry-tabs-heading {
  position: relative;
  padding-left: 18px;
}

body.home-page .product-cards-heading::before,
body.home-page .industry-tabs-heading::before {
  position: absolute;
  top: 4px;
  left: 0;
  writing-mode: vertical-rl;
  content: '能力模块';
}

body.home-page .industry-tabs-heading::before {
  content: '解决方案';
}

body.home-page .demo-cards-grid,
body.home-page .product-cards-grid {
  gap: 16px;
}

body.home-page :is(.demo-card, .card-light) {
  border: 1px solid rgba(34, 59, 89, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(48, 72, 102, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

body.home-page :is(.demo-card, .card-light):hover {
  border-color: rgba(31, 95, 193, 0.34);
  box-shadow: 0 20px 42px rgba(48, 72, 102, 0.13);
  transform: translateY(-4px);
}

body.home-page .news-section__title {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(30, 47, 70, 0.13);
}

body.home-page .news-section__grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 16px;
}

body.home-page .news-section__grid > div:first-child {
  grid-row: span 2;
}

@media (max-width: 767px) {
  body.home-page :is(.demo-cards-section, .product-cards-section,
    .industry-tabs-section, .news-section, .partner-carousel-section) {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body.home-page :is(.demo-cards-header, .product-cards-heading,
    .industry-tabs-heading) {
    display: block;
    margin-bottom: 20px;
  }

  body.home-page .demo-cards-header__more {
    margin-top: 14px;
  }

  body.home-page .news-section__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home-page .news-section__grid > div:first-child {
    grid-row: auto;
  }
}

/* Tighten the middle journey so the background and content read as one page. */
body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
  .partner-carousel-section, .news-section) {
  padding-top: 68px;
  padding-bottom: 68px;
}

body.home-page .statistics-scale-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

body.home-page .partner-carousel-section {
  padding-top: 52px;
  padding-bottom: 52px;
}

body.home-page .voice-footer-section {
  padding-top: 68px !important;
}

@media (max-width: 767px) {
  body.home-page :is(.demo-cards-section, .product-cards-section, .industry-tabs-section,
    .partner-carousel-section, .news-section) {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  body.home-page .statistics-scale-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Small interaction details borrowed from the reference site's restraint. */
body.home-page header.header-glass {
  position: fixed;
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.48), 0 10px 28px rgba(49, 66, 142, 0.06);
}

body.home-page header.header-glass::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 10px;
  pointer-events: none;
  content: '';
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent);
  mask-image: linear-gradient(180deg, #000, transparent);
}

body.home-page .btn-primary::after,
body.home-page .btn-outline::after {
  display: inline-block;
  width: 0.88em;
  height: 0.88em;
  margin-left: 0.42em;
  font-size: 0.88em;
  line-height: 1;
  vertical-align: -0.1em;
  content: '';
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.28s var(--home-ease);
}

body.home-page .btn-primary:hover::after,
body.home-page .btn-outline:hover::after {
  transform: translate(2px, -2px);
}

body.home-page :is(.btn-primary, .btn-outline, .demo-card__btn, .link-primary) {
  -webkit-tap-highlight-color: transparent;
}

body.home-page :is(.btn-primary, .btn-outline, .demo-card__btn):active {
  transition-duration: 100ms;
}

body.home-page .section-eyebrow {
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-wrap: balance;
}

body.home-page :is(.demo-cards-header__title, .product-cards-heading__title,
  .industry-tabs-heading__title, .news-section__title,
  .partner-carousel-heading .section-title) {
  line-height: 1.12;
  text-wrap: balance;
  font-optical-sizing: auto;
}

body.home-page .demo-card,
body.home-page .card-light,
body.home-page .industry-detail-card,
body.home-page .news-section__grid > div > div {
  box-shadow: 0 1px 1px rgba(38, 53, 112, 0.04),
    0 14px 34px rgba(72, 91, 166, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

body.home-page .demo-card:hover,
body.home-page .card-light:hover,
body.home-page .industry-detail-card:hover,
body.home-page .news-section__grid > div > div:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 2px 2px rgba(38, 53, 112, 0.04),
    0 22px 44px rgba(72, 91, 166, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  body.home-page header.header-glass,
  body.home-page .statistics-scale-inner {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.home-page header.header-glass::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  body.home-page :is(.home-cursor-trail, .home-ascii-overlay) {
    display: none;
  }
}

/* A quiet page-long atmosphere keeps the long middle journey connected.
   It sits behind the existing modules, so cards, tabs and links keep their
   original paint order and interaction areas. */
body.home-page {
  background:
    radial-gradient(ellipse 58% 18% at 12% 25%, rgba(160, 190, 255, 0.18), transparent 72%),
    radial-gradient(ellipse 54% 22% at 88% 43%, rgba(203, 181, 255, 0.16), transparent 72%),
    radial-gradient(ellipse 48% 20% at 28% 69%, rgba(133, 211, 255, 0.1), transparent 74%),
    radial-gradient(ellipse 54% 22% at 78% 87%, rgba(181, 171, 255, 0.12), transparent 74%),
    linear-gradient(180deg, #f1f2fc 0%, #f5f6ff 34%, #f8f9ff 67%, #ffffff 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

body.home-page .home-page-main {
  isolation: isolate;
}

body.home-page .home-page-main::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  background-image: radial-gradient(rgba(88, 111, 202, 0.18) 0.65px, transparent 0.65px);
  background-position: center 34px;
  background-size: 28px 28px;
  opacity: 0.2;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 72%, transparent 98%);
  mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 72%, transparent 98%);
}

body.home-page .home-page-main::after {
  position: absolute;
  top: 820px;
  right: -16vw;
  left: -16vw;
  height: 1040px;
  z-index: -1;
  pointer-events: none;
  content: '';
  background:
    radial-gradient(ellipse at 22% 35%, rgba(109, 194, 255, 0.11), transparent 34%),
    radial-gradient(ellipse at 78% 62%, rgba(178, 152, 255, 0.12), transparent 36%);
  filter: blur(26px);
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

/* Trial modal: a compact product surface instead of a full-bleed white sheet. */
body.home-page .trial-modal-backdrop {
  background: rgba(12, 24, 54, 0.62);
  padding: 20px;
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
}

body.home-page .trial-modal-card {
  width: 520px;
  max-width: 520px;
  max-height: 760px;
  padding: 42px 36px 30px;
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
  box-shadow: 0 30px 90px rgba(5, 18, 58, 0.28),
    0 8px 24px rgba(42, 82, 190, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body.home-page .trial-modal-card::before {
  height: 3px;
  background: linear-gradient(90deg, #285cf0 0%, #6c5cf6 52%, #b8b7ff 100%);
}

body.home-page .trial-modal-close {
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: rgba(226, 232, 246, 0.72);
  color: #53617a;
}

body.home-page .trial-modal-close:hover {
  background: rgba(210, 220, 242, 0.94);
  color: #193c9e;
  transform: rotate(90deg) scale(1.04);
}

body.home-page .trial-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
}

body.home-page .trial-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dfed;
  transition: width 0.25s var(--home-ease), background-color 0.25s var(--home-ease),
    transform 0.25s var(--home-ease);
}

body.home-page .trial-step-dot--active {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #285cf0, #6b5cf6);
  box-shadow: 0 4px 10px rgba(40, 92, 240, 0.22);
}

body.home-page .trial-step-dot--done {
  background: #8caafc;
}

body.home-page .trial-modal-title {
  margin-bottom: 10px;
  color: #101a31;
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

body.home-page .trial-modal-desc {
  margin-bottom: 22px;
  color: #6d7890;
  font-size: 14px;
  line-height: 1.7;
}

body.home-page .trial-modal-input {
  border-color: #dbe2f0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #17233d;
  box-shadow: inset 0 1px 2px rgba(39, 64, 125, 0.04);
}

body.home-page .trial-modal-input::placeholder {
  color: #9aa5ba;
}

body.home-page .trial-modal-input:focus {
  border-color: rgba(40, 92, 240, 0.72);
  box-shadow: 0 0 0 4px rgba(40, 92, 240, 0.1), inset 0 1px 2px rgba(39, 64, 125, 0.04);
}

body.home-page .trial-modal-textarea {
  min-height: 132px;
  line-height: 1.65;
}

body.home-page .trial-modal-submit {
  min-height: 52px;
  margin-top: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #285cf0, #4a4df0);
  box-shadow: 0 12px 24px rgba(40, 92, 240, 0.2);
  font-size: 16px;
  font-weight: 700;
}

body.home-page .trial-modal-submit:hover {
  background: linear-gradient(135deg, #1e4ddd, #3e41de);
  box-shadow: 0 16px 28px rgba(40, 92, 240, 0.26);
  transform: translateY(-2px);
}

body.home-page .trial-modal-actions {
  gap: 10px;
  margin-top: 18px;
}

body.home-page .trial-modal-field {
  margin-bottom: 16px;
}

body.home-page .trial-modal-label {
  margin-bottom: 7px;
  color: #4d5a73;
  font-size: 13px;
  font-weight: 700;
}

body.home-page .trial-modal-error {
  color: #d0445b;
}

body.home-page .trial-modal-field-error {
  margin: 8px 4px 0;
  color: #d0445b;
  font-size: 12px;
  line-height: 1.45;
}

body.home-page .trial-modal-input--error {
  border-color: #e06a7a !important;
  box-shadow: 0 0 0 3px rgba(224, 106, 122, 0.1) !important;
}

body.home-page .trial-loading {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 58px 16px 42px;
  text-align: center;
}

body.home-page .trial-loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(40, 92, 240, 0.14);
  border-top-color: #285cf0;
  border-right-color: #6b5cf6;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(40, 92, 240, 0.12);
}

body.home-page .trial-loading-text {
  max-width: 24em;
  margin: 0;
  color: #63708a;
  font-size: 14px;
  line-height: 1.7;
}

body.home-page .trial-loading-note {
  max-width: 32em;
  margin: 2px 0 0;
  color: #9aa6ba;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
  animation: trial-loading-note-breathe 3.6s ease-in-out infinite;
}

@keyframes trial-loading-note-breathe {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 1; }
}

body.home-page .trial-captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 10px;
  align-items: stretch;
}

body.home-page .trial-captcha-svg {
  display: grid;
  place-items: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid #dbe2f0;
  border-radius: 14px;
  background: #f7f9ff;
  cursor: pointer;
}

body.home-page .trial-captcha-svg svg {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

body.home-page .trial-captcha-svg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.home-page .trial-captcha-svg > div {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  body.home-page .trial-captcha-row {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  body.home-page .trial-captcha-svg {
    width: 240px !important;
    min-width: 240px;
    height: 56px !important;
    min-height: 56px;
    padding: 0 !important;
    overflow: hidden;
  }
}

@media (max-width: 380px) {
  body.home-page .trial-captcha-row {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  body.home-page .trial-captcha-svg {
    width: 200px !important;
    min-width: 200px;
  }
}

/* Give the captcha input and image the same full-width rhythm as the phone
   field.  Stacking them avoids squeezing a wide server-rendered SVG into a
   narrow side column. */
body.home-page .trial-captcha-row {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.home-page .trial-captcha-svg {
  width: 100% !important;
  min-width: 0 !important;
  height: 64px !important;
  min-height: 64px;
}

/* Demo cards: keep the atmospheric background outside the reading layer. */
body.home-page .demo-card {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  text-rendering: optimizeLegibility;
}

body.home-page .demo-card__title {
  color: #101a31;
  font-weight: 750;
  letter-spacing: -0.012em;
}

body.home-page .demo-card__employee {
  color: #5d6a82;
  font-weight: 500;
}

body.home-page .demo-card__desc {
  color: #46546d !important;
  font-size: 14px;
  font-weight: 450;
  line-height: 1.68;
}

body.home-page .demo-card__tag {
  color: #2454c7;
  font-weight: 650;
}

body.home-page .demo-cards-slogan {
  color: #52617c;
  font-weight: 550;
}

body.home-page .trial-captcha-loading {
  color: #8793aa;
  font-size: 12px;
}

body.home-page .trial-consent-field {
  margin-top: 20px;
}

body.home-page .trial-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #69758c;
  font-size: 12px;
  line-height: 1.65;
}

body.home-page .trial-consent-label input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #285cf0;
}

body.home-page .trial-consent-label a {
  color: #285cf0;
  font-weight: 600;
}

body.home-page .trial-modal-btn-back {
  border-color: #d7dfef;
  border-radius: 14px;
  color: #53617a;
  background: rgba(255, 255, 255, 0.78);
}

/* Glass material finish: the surface stays readable while the page gains a
   restrained, physical highlight instead of a loud animated glow. */
body.home-page header.header-glass {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 250, 255, 0.64));
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 32px rgba(55, 74, 150, 0.08),
    inset 0 -1px 0 rgba(87, 111, 190, 0.08);
}

body.home-page header.header-glass::before {
  position: absolute;
  inset: 0 12% auto;
  height: 1px;
  pointer-events: none;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .news-section__grid > div > div) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.86));
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  box-shadow: 0 1px 1px rgba(38, 53, 112, 0.04),
    0 18px 42px rgba(72, 91, 166, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(121, 143, 208, 0.08);
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .news-section__grid > div > div)::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 42%;
  pointer-events: none;
  content: '';
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.72;
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .news-section__grid > div > div)::after {
  position: absolute;
  z-index: 2;
  top: -72%;
  left: -28%;
  width: 34%;
  height: 250%;
  pointer-events: none;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transform: rotate(20deg) translate3d(-20px, 0, 0);
  transition: opacity 0.3s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .news-section__grid > div > div):hover::after {
  opacity: 0.72;
  transform: rotate(20deg) translate3d(390px, 0, 0);
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .news-section__grid > div > div) > * {
  position: relative;
  z-index: 3;
}

body.home-page .statistics-scale-section {
  border-color: rgba(255, 255, 255, 0.86);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 90% at 4% 0%, rgba(177, 207, 255, 0.34), transparent 72%),
    radial-gradient(ellipse 54% 92% at 96% 100%, rgba(216, 194, 255, 0.3), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(245, 248, 255, 0.52));
  box-shadow: 0 20px 56px rgba(82, 92, 173, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(121, 143, 208, 0.08);
}

body.home-page .statistics-scale-section::after {
  position: absolute;
  inset: -35% auto -35% -18%;
  z-index: 0;
  width: 18%;
  pointer-events: none;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  animation: statistics-glass-shine 9s ease-in-out infinite;
}

@keyframes statistics-glass-shine {
  0%, 18% { opacity: 0; transform: translateX(-20%) skewX(-18deg); }
  34% { opacity: 0.8; }
  56%, 100% { opacity: 0; transform: translateX(620%) skewX(-18deg); }
}

body.home-page .statistics-scale-inner {
  position: relative;
  z-index: 1;
}

body.home-page .statistics-scale-item {
  padding: 16px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 8px 18px rgba(84, 106, 179, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body.home-page .statistics-scale-item:hover {
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(84, 106, 179, 0.1);
}

body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number__unit {
  color: #087f91;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.74);
}

body.home-page .statistics-scale-label {
  color: #718099;
}

body.home-page .demo-detail-dialogue__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.home-page .demo-detail-dialogue__live-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid rgba(43, 88, 249, 0.12);
  border-radius: 999px;
  background: rgba(239, 244, 255, 0.76);
  color: #7b88a2;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

body.home-page .demo-detail-dialogue__live-hint--active {
  border-color: rgba(43, 88, 249, 0.22);
  background: rgba(229, 237, 255, 0.96);
  color: #285cf0;
}

body.home-page .demo-detail-dialogue__live-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #aab5c9;
}

body.home-page .demo-detail-dialogue__live-hint--active .demo-detail-dialogue__live-dot {
  background: #285cf0;
  box-shadow: 0 0 0 4px rgba(43, 88, 249, 0.12);
  animation: dialogue-live-pulse 1.5s ease-in-out infinite;
}

@keyframes dialogue-live-pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.16); }
}

@media (max-width: 640px) {
  body.home-page .demo-detail-dialogue__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body.home-page .demo-detail-dialogue__live-hint {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .statistics-scale-section::after,
  body.home-page .demo-detail-dialogue__live-hint--active .demo-detail-dialogue__live-dot {
    animation: none;
  }
}

body.home-page .trial-modal-card {
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(ellipse 70% 34% at 12% 0%, rgba(208, 222, 255, 0.26), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94));
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  backdrop-filter: blur(28px) saturate(145%);
  box-shadow: 0 30px 90px rgba(5, 18, 58, 0.28),
    0 8px 24px rgba(42, 82, 190, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(106, 132, 207, 0.1);
}

body.home-page .trial-modal-card::after {
  position: absolute;
  z-index: 0;
  top: -42%;
  left: -18%;
  width: 28%;
  height: 180%;
  pointer-events: none;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  opacity: 0.52;
  transform: rotate(18deg);
}

body.home-page .trial-modal-card > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  body.home-page header.header-glass,
  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div),
  body.home-page .trial-modal-card,
  body.home-page .statistics-scale-section {
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div)::after,
  body.home-page .trial-modal-card::after {
    display: none;
  }
}

@media (pointer: coarse) {
  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div)::after {
    transition-duration: 0.38s;
  }

  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div):hover::after {
    opacity: 0;
    transform: rotate(20deg) translate3d(-20px, 0, 0);
  }

  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div):active::after {
    opacity: 0.58;
    transform: rotate(20deg) translate3d(280px, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div)::after {
    display: none;
  }
}

/* Trial brief: keep examples as a persistent guide instead of a placeholder
   that disappears as soon as the user starts typing. */
body.home-page .trial-input-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: 0 0 16px;
  padding: 4px;
  border: 1px solid #e1e7f3;
  border-radius: 14px;
  background: #f4f7fd;
}

body.home-page .trial-input-mode-switch button {
  min-height: 36px;
  border: 0;
  border-radius: 10px;
  color: #73809a;
  background: transparent;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

body.home-page .trial-input-mode-switch button.is-active {
  color: #2454d8;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(44, 78, 160, 0.1);
}

body.home-page .trial-examples {
  margin: 0 0 16px;
}

body.home-page .trial-examples__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #53617a;
  font-size: 12px;
  font-weight: 700;
}

body.home-page .trial-examples__hint {
  color: #9aa6ba;
  font-size: 11px;
  font-weight: 500;
}

body.home-page .trial-examples__list {
  display: grid;
  gap: 7px;
}

body.home-page .trial-example-chip {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #e1e7f3;
  border-radius: 11px;
  color: #66748e;
  background: rgba(247, 249, 255, 0.86);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease,
    transform 180ms ease;
}

body.home-page .trial-example-chip:hover {
  border-color: #a9bdf7;
  color: #2454d8;
  background: #f1f5ff;
  transform: translateY(-1px);
}

body.home-page .trial-example-chip:active,
body.home-page .trial-input-mode-switch button:active {
  transform: scale(0.98);
}

body.home-page .trial-keyword-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

body.home-page .trial-keyword-field {
  min-width: 0;
}

body.home-page .trial-keyword-field .trial-modal-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

body.home-page .trial-keyword-field .trial-modal-label span {
  color: #a1aabd;
  font-size: 11px;
  font-weight: 500;
}

@media (max-width: 560px) {
  body.home-page .trial-keyword-fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body.home-page .trial-examples__list {
    gap: 6px;
  }

  body.home-page .trial-example-chip {
    padding: 8px 10px;
  }
}

@media (max-width: 560px) {
  body.home-page .trial-modal-backdrop {
    padding: 12px;
  }

  body.home-page .trial-modal-card {
    max-height: calc(100vh - 24px);
    padding: 36px 20px 22px;
    border-radius: 22px;
  }
}

@media (max-width: 767px) {
  body.home-page .home-page-main::after {
    top: 620px;
    height: 1280px;
  }
}

/* Mobile demo window: keep the first view compact, then let the four samples
   live in a deliberate horizontal browsing surface. */
@media (max-width: 767px) {
  body.home-page .content-wrapper {
    width: 90%;
    max-width: 1200px;
  }

  body.home-page .demo-cards-section {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  body.home-page .demo-cards-header {
    margin-bottom: 14px;
  }

  body.home-page .demo-cards-header__title {
    max-width: 18em;
    font-size: 19px !important;
    line-height: 1.35 !important;
  }

  body.home-page .demo-cards-grid {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: calc(100% + 14px);
    margin-left: -7px;
    padding: 14px 7px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(236, 241, 255, 0.34));
    box-shadow: 0 12px 28px rgba(77, 97, 169, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }

  body.home-page .demo-cards-grid::-webkit-scrollbar {
    display: none;
  }

  body.home-page .demo-card {
    flex: 0 0 286px;
    min-height: 292px;
    padding: 16px;
    border-radius: 18px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.home-page .demo-card__top {
    gap: 10px;
  }

  body.home-page .demo-card__avatar {
    width: 34px;
    height: 34px;
  }

  body.home-page .demo-card__title {
    max-width: 18ch;
    overflow: hidden;
    font-size: 13px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-page .demo-card__tags {
    gap: 5px;
    margin-top: 10px;
  }

  body.home-page .demo-card__tag {
    max-width: 12ch;
    overflow: hidden;
    padding: 3px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-page .demo-card__desc {
    display: -webkit-box;
    min-height: 3.6em;
    margin-top: 10px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.home-page .demo-card__player {
    margin-top: 12px;
  }

  body.home-page .demo-card__actions {
    gap: 8px;
    margin-top: 14px;
  }

  body.home-page .demo-card__btn {
    min-height: 36px;
    padding-inline: 8px;
    font-size: 12px;
  }

  body.home-page .demo-cards-loading,
  body.home-page .demo-cards-empty {
    flex: 0 0 100%;
    min-height: 220px;
  }

  body.home-page .industry-detail-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  body.home-page .industry-detail-image {
    max-height: 240px;
  }

  body.home-page .statistics-scale-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 22px 18px;
  }

  body.home-page .statistics-scale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  body.home-page .statistics-scale-image {
    max-height: 220px;
  }

  body.home-page .news-section__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  body.home-page .partner-carousel-section {
    overflow: hidden;
  }
}

/* Mobile atmosphere: soften the handoff from the hero/demo window into the
   white content floors instead of ending the violet field abruptly. */
@media (max-width: 767px) {
  body.home-page main {
    background:
      linear-gradient(180deg, #eaf0ff 0%, #eef2ff 22%, #f3f6ff 46%, #f8faff 70%, #ffffff 100%);
  }

  body.home-page .home-bg-fixed {
    opacity: 0.78;
    background: #edf1ff;
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 420px,
      rgba(0, 0, 0, 0.78) 680px,
      rgba(0, 0, 0, 0.3) 980px,
      transparent 1500px
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 420px,
      rgba(0, 0, 0, 0.78) 680px,
      rgba(0, 0, 0, 0.3) 980px,
      transparent 1500px
    );
  }

  body.home-page .home-bg-video {
    opacity: 0.72;
    filter: saturate(0.9) contrast(1.02) brightness(1.04);
  }

  body.home-page .demo-cards-section,
  body.home-page .product-cards-section,
  body.home-page .industry-tabs-section {
    background: linear-gradient(180deg, rgba(241, 245, 255, 0.2), rgba(247, 249, 255, 0.48));
  }

  body.home-page header.header-glass::after {
    bottom: -18px;
    height: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  }
}

/* The detail modal reuses GSAP's entrance timeline.  Reset the footer's
   visual state at the CSS layer as well, so closing the modal never leaves
   “稍后再看” in the previous animation's hidden state on the next open. */
body.home-page .demo-detail-backdrop .demo-detail-footer {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body.home-page .demo-detail-backdrop .demo-detail-footer__btn,
body.home-page .demo-detail-backdrop .demo-detail-footer__btn--ghost {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Editorial hero composition: a clear message column plus a contained media
   surface, inspired by the reference site's strong primary/secondary rhythm. */
body.home-page .hero-banner-section {
  min-height: 700px;
  padding: 102px 0 34px;
  background: transparent;
}

body.home-page .hero-banner-slide-inner {
  min-height: 560px;
}

body.home-page .hero-banner-slide-inner > .grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 6vw, 96px);
  justify-items: stretch;
  text-align: left;
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child {
  align-items: flex-start;
  text-align: left;
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child::before {
  display: block;
  margin-bottom: 18px;
  color: #55718a;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  content: 'GEE CALL  ·  AI COMMUNICATION';
}

body.home-page .hero-banner-slide-inner h1 {
  max-width: 10ch;
  color: #101a2b;
  font-size: clamp(3.25rem, 5.7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  text-wrap: balance;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

body.home-page .hero-banner-slide-inner h1 strong,
body.home-page .hero-banner-slide-inner .text-primary {
  color: #126dca;
  -webkit-text-fill-color: currentColor;
}

body.home-page .hero-banner-slide-inner .text-base {
  max-width: 34rem;
  margin-top: 22px;
  color: #5b6d7e;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.8;
  text-align: left;
}

body.home-page .hero-banner-slide-inner .btn-primary {
  margin-top: 12px;
  padding: 14px 22px;
  background: #101a2b;
  box-shadow: 0 14px 28px rgba(16, 26, 43, 0.16);
}

body.home-page .hero-banner-slide-inner .btn-primary:hover {
  background: #126dca;
  box-shadow: 0 18px 32px rgba(18, 109, 202, 0.22);
}

body.home-page .hero-banner-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 410px;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  background:
    radial-gradient(ellipse 72% 80% at 78% 18%, rgba(255, 211, 151, 0.3), transparent 68%),
    radial-gradient(ellipse 72% 84% at 16% 88%, rgba(151, 206, 255, 0.28), transparent 70%),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 28px 72px rgba(63, 88, 139, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(91, 125, 180, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
}

body.home-page .hero-banner-media::before {
  position: absolute;
  inset: 12% 12% auto auto;
  width: 42%;
  height: 42%;
  pointer-events: none;
  content: '';
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 234, 192, 0.48), transparent 68%);
  filter: blur(12px);
}

body.home-page .hero-banner-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%, rgba(255, 255, 255, 0.08));
}

body.home-page .hero-banner-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  max-height: 430px;
  filter: drop-shadow(0 24px 34px rgba(37, 63, 102, 0.16));
}

body.home-page .hero-swiper-pagination {
  right: auto !important;
  bottom: 18px !important;
  left: max(24px, calc((100% - 1200px) / 2)) !important;
  width: auto !important;
}

/* The background remains animated, but the palette is quieter and less
   violet so the hero content owns the first impression. */
body.home-page .home-bg-video {
  opacity: 0.76;
  filter: saturate(0.78) contrast(1.03) brightness(1.05) hue-rotate(-6deg);
}

body.home-page main {
  background:
    radial-gradient(ellipse 62% 34% at 12% 8%, rgba(180, 213, 240, 0.38), transparent 72%),
    radial-gradient(ellipse 58% 36% at 92% 18%, rgba(255, 211, 170, 0.2), transparent 72%),
    linear-gradient(180deg, #e9f1f8 0%, #f2f6fa 31%, #f8fafc 70%, #ffffff 100%);
}

@media (max-width: 767px) {
  body.home-page .hero-banner-section {
    min-height: 690px;
    padding: 90px 0 28px;
  }

  body.home-page .hero-banner-slide-inner {
    min-height: 610px;
  }

  body.home-page .hero-banner-slide-inner > .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    justify-items: center;
    text-align: center;
  }

  body.home-page .hero-banner-slide-inner > .grid > div:first-child {
    align-items: center;
    text-align: center;
  }

  body.home-page .hero-banner-slide-inner > .grid > div:first-child::before {
    margin-bottom: 14px;
    font-size: 10px;
  }

  body.home-page .hero-banner-slide-inner h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

  body.home-page .hero-banner-slide-inner .text-base {
    margin-top: 16px;
    text-align: center;
  }

  body.home-page .hero-banner-media {
    width: 520px;
    min-height: 260px;
    border-radius: 24px;
  }

  body.home-page .hero-banner-image {
    max-height: 270px;
  }

  body.home-page .hero-swiper-pagination {
    right: 0 !important;
    bottom: 6px !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center;
  }

  body.home-page .home-bg-video {
    opacity: 0.68;
    filter: saturate(0.76) contrast(1.02) brightness(1.06) hue-rotate(-6deg);
  }
}

@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  body.home-page .hero-banner-media {
    background: #f7fafc;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* Reference-like hero hierarchy: one dominant visual card and a narrower
   editorial rail.  The existing slide data and actions remain unchanged. */
body.home-page .hero-banner-slide-inner > .grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
}

body.home-page .hero-banner-media {
  order: 1;
  min-height: 500px;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 58% 70% at 82% 24%, rgba(255, 217, 171, 0.45), transparent 68%),
    radial-gradient(ellipse 72% 78% at 12% 86%, rgba(135, 195, 235, 0.34), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(231, 241, 248, 0.7));
  box-shadow: 0 28px 70px rgba(53, 82, 117, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

body.home-page .hero-banner-image {
  max-height: 470px;
  transform: translateY(2px) scale(1.03);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

body.home-page .hero-banner-media:hover .hero-banner-image {
  transform: translateY(-4px) scale(1.055);
  filter: drop-shadow(0 30px 38px rgba(37, 63, 102, 0.2));
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child {
  order: 2;
  justify-content: center;
  min-width: 0;
  padding: 16px 0;
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child::after {
  display: block;
  width: 320px;
  margin-top: 34px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 24px rgba(71, 99, 137, 0.08);
  color: #55718a;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  content: '300万+ 日均外呼  ·  50%+ 接通率';
}

body.home-page .hero-swiper-pagination {
  bottom: 22px !important;
}

@media (max-width: 767px) {
  body.home-page .hero-banner-slide-inner > .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home-page .hero-banner-media {
    order: 2;
    min-height: 280px;
    padding: 18px;
  }

  body.home-page .hero-banner-slide-inner > .grid > div:first-child {
    order: 1;
    padding: 0;
  }

  body.home-page .hero-banner-slide-inner > .grid > div:first-child::after {
    margin-top: 22px;
  }
}

/* Keep the floating ball on one optical axis.  The avatar image has its own
   transparent edge, so centering only the image can make the purple shell
   look offset.  Center the two functional columns first, then reset the
   image's inherited bottom margin. */
body.home-page .customer-service-container-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

body.home-page .customer-service-avatar {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  margin: -14px auto 10px;
  box-sizing: border-box;
}

body.home-page .customer-service-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

body.home-page .customer-service-actions {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  body.home-page .customer-service-avatar {
    width: 46px;
    height: 46px;
    margin-top: -12px;
  }
}

/* The real proof-point rail replaces the earlier decorative pseudo card. */
body.home-page .hero-banner-slide-inner > .grid > div:first-child::after {
  display: none !important;
  content: none !important;
}

body.home-page .hero-banner-rail {
  position: relative;
  z-index: 1;
}

/* Use explicit grid areas so the composition is deterministic even when the
   theme's generated utility CSS changes the auto-placement order. */
body.home-page .hero-banner-slide-inner > .grid {
  grid-template-areas: 'hero-media hero-copy';
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child {
  grid-area: hero-copy;
}

body.home-page .hero-banner-slide-inner > .grid > .hero-banner-media {
  grid-area: hero-media;
}

/* Keep every image uploaded from theme settings inside the same dominant
   visual frame, regardless of whether it is a PNG cutout or a wide JPG. */
body.home-page .hero-banner-media .hero-banner-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(300px, 31vw, 470px);
  max-height: none;
  object-fit: contain;
  object-position: 50% 50%;
}

/* Keep the copy rail compact enough that it cannot squeeze or vertically
   displace the shared hero image frame. */
body.home-page .hero-banner-slide-inner > .grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.78fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: start !important;
}

body.home-page .hero-banner-slide-inner > .grid > div:first-child {
  min-width: 0;
}

body.home-page .hero-banner-slide-inner h1 {
  max-width: none;
  font-size: clamp(2.25rem, 3.45vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

body.home-page .hero-banner-slide-inner .text-base {
  max-width: 31rem;
  font-size: clamp(0.95rem, 1.05vw, 1.06rem);
  line-height: 1.7;
}

/* Normalize copy height across banners so the image and text occupy the same
   visual share even when the configured title/subtitle lengths differ. */
body.home-page .hero-banner-slide-inner > .grid > div:first-child {
  min-height: 500px;
  justify-content: center;
}

body.home-page .hero-banner-slide-inner h1 {
  min-height: 2.16em;
  max-height: none;
  overflow: visible;
  display: block;
}

body.home-page .hero-banner-slide-inner .text-base {
  min-height: 5.1em;
  max-height: none;
  overflow: visible;
  display: block;
}

body.home-page .hero-banner-slide-inner > .grid > .hero-banner-media {
  align-self: start;
}

body.home-page .hero-banner-slide-inner .btn-primary {
  align-self: flex-start;
}

@media (max-width: 767px) {
  body.home-page .hero-banner-slide-inner > .grid {
    grid-template-areas:
      'hero-copy'
      'hero-media';
  }

  body.home-page .hero-banner-media {
    min-height: 0;
    aspect-ratio: 1.3 / 1;
  }

  body.home-page .hero-banner-slide-inner h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 10vw, 3.15rem);
    min-height: 2.16em;
    max-height: none;
  }

  body.home-page .hero-banner-slide-inner > .grid > div:first-child {
    min-height: 0;
  }

  body.home-page .hero-banner-slide-inner .text-base {
    min-height: 0;
    max-height: none;
  }

  body.home-page .hero-banner-media .hero-banner-image {
    height: clamp(220px, 62vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .hero-banner-image,
  body.home-page .hero-banner-media:hover .hero-banner-image {
    transform: none;
    transition: none;
  }
}

/* Preserve the original full-page background layer.  The hero composition
   sits above it; it must not recolor, mask, or shorten the existing backdrop. */
body.home-page .home-bg-fixed {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 1900px;
  opacity: 1;
  background: #efeefe;
}

body.home-page .home-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  filter: none;
}

body.home-page main {
  position: relative;
  z-index: 1;
  background: transparent;
}

body.home-page main::before {
  display: none;
}

@media (max-width: 767px) {
  body.home-page .home-bg-fixed {
    height: 1400px;
    opacity: 1;
    background: #efeefe;
    -webkit-mask-image: none;
    mask-image: none;
  }

  body.home-page .home-bg-video {
    object-position: 58% top;
    opacity: 1;
    filter: none;
  }
}

/* Final handoff spacing: keep the first floor visually close to the banner. */
body.home-page .demo-cards-section {
  padding-top: 34px !important;
}

@media (max-width: 767px) {
  body.home-page .demo-cards-section {
    padding-top: 28px !important;
  }
}

/* Final type color pass: the animated background needs a stable ink hierarchy
   rather than several competing gray-blue values. */
body.home-page .hero-banner-slide-inner > div:first-child::before,
body.home-page .section-eyebrow {
  color: #40546e;
}

body.home-page .hero-banner-slide-inner .text-base {
  color: #42546c;
}

body.home-page .demo-card__title,
body.home-page .card-light__title,
body.home-page .industry-detail-title,
body.home-page .news-section__grid h3,
body.home-page .news-section__grid .post-card__title {
  color: #17233d !important;
}

body.home-page .demo-card__employee,
body.home-page .demo-card__desc,
body.home-page .card-light__subtitle,
body.home-page .industry-detail-sub,
body.home-page .news-section__grid p,
body.home-page .news-section__grid .post-card__excerpt {
  color: #53647c !important;
}

body.home-page .demo-card__tag,
body.home-page .card-light__type,
body.home-page .industry-tabs-nav .industry-tab-btn,
body.home-page .industry-tabs-nav .industry-tab-btn.is-active {
  color: #2458bd;
}

body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number__unit {
  color: #087f91 !important;
  opacity: 1 !important;
}

body.home-page .statistics-scale-label {
  color: #53647c !important;
  opacity: 1 !important;
}

body.home-page .news-section__grid time,
body.home-page .news-section__grid .post-card__meta {
  color: #6b7b90 !important;
}

/* Hero CTA: replace the hard black pill with a branded, quieter ink gradient. */
body.home-page .hero-banner-slide-inner .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2458bd 0%, #4b46e8 100%);
  box-shadow: 0 10px 22px rgba(45, 74, 190, 0.2);
}

body.home-page .hero-banner-slide-inner .btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #126dca 0%, #5148ed 100%);
  box-shadow: 0 14px 28px rgba(45, 74, 190, 0.28);
}

/* Final visual unification: one ink scale, one action language, one surface
   treatment across every homepage floor. */
body.home-page :is(.demo-cards-header__title, .product-cards-heading__title,
  .industry-tabs-heading__title, .news-section__title,
  .partner-carousel-heading .section-title) {
  color: #17233d !important;
}

body.home-page :is(.demo-cards-header__text, .card-light__subtitle,
  .industry-detail-sub, .news-section p) {
  color: #53647c !important;
}

body.home-page :is(.case-card__btn--primary, .industry-tabs-section .btn-primary,
  .solutions-banner__btn) {
  color: #ffffff !important;
  border-color: transparent !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #2458bd 0%, #4b46e8 100%) !important;
  box-shadow: 0 10px 22px rgba(45, 74, 190, 0.2);
}

body.home-page :is(.case-card__btn--primary, .industry-tabs-section .btn-primary,
  .solutions-banner__btn):hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #126dca 0%, #5148ed 100%) !important;
  box-shadow: 0 14px 28px rgba(45, 74, 190, 0.28);
  transform: translateY(-2px);
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .statistics-scale-section, .news-section__grid > div > div) {
  border-color: rgba(107, 135, 202, 0.2);
  box-shadow: 0 14px 34px rgba(61, 86, 153, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

/* Mobile handoff: preserve the desktop hierarchy without making the first
   screen feel like a compressed desktop page. */
@media (max-width: 767px) {
  body.home-page .hero-banner-section {
    min-height: 0;
    padding: 70px 0 22px;
  }

  body.home-page .hero-banner-slide-inner {
    min-height: 0;
  }

  body.home-page .hero-banner-slide-inner > .grid {
    gap: 18px;
  }

  body.home-page .hero-banner-slide-inner h1 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 10.5vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  body.home-page .hero-banner-slide-inner .text-base {
    max-width: 31rem;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  body.home-page .hero-banner-slide-inner .btn-primary {
    min-height: 44px;
    margin-top: 10px;
    padding: 11px 22px;
    font-size: 0.9rem;
  }

  body.home-page .hero-banner-media {
    min-height: 0;
    padding: 14px;
    border-radius: 20px;
  }

  body.home-page .hero-banner-image {
    max-height: 245px;
  }

  body.home-page :is(.demo-cards-section, .product-cards-section,
    .industry-tabs-section, .partner-carousel-section, .news-section) {
    padding: 64px 0;
  }

  body.home-page :is(.demo-cards-header__title, .product-cards-heading__title,
    .industry-tabs-heading__title, .news-section__title,
    .partner-carousel-heading .section-title) {
    font-size: clamp(1.45rem, 6.1vw, 2rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.035em;
  }

  body.home-page :is(.case-card__btn--primary, .industry-tabs-section .btn-primary,
    .solutions-banner__btn) {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  body.home-page .statistics-scale-section {
    border-radius: 22px;
  }
}

@media (max-width: 420px) {
  body.home-page .content-wrapper {
    width: 90%;
    max-width: 1200px;
  }

  body.home-page .hero-banner-section {
    padding-top: 64px;
  }

  body.home-page .hero-banner-slide-inner h1 {
    font-size: clamp(2.05rem, 10.2vw, 2.65rem);
  }

  body.home-page .hero-banner-slide-inner .text-base {
    font-size: 0.88rem;
  }
}

/* Mobile stability pass: keep Swiper horizontal and make every child obey
   the viewport width before typography is allowed to wrap. */
@media (max-width: 767px) {
  body.home-page .hero-swiper,
  body.home-page .hero-swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  body.home-page .hero-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
  }

  body.home-page .hero-swiper .swiper-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  body.home-page .hero-banner-slide-inner,
  body.home-page .hero-banner-slide-inner > .grid,
  body.home-page .hero-banner-slide-inner > .grid > div {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.home-page .hero-banner-slide-inner > .grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.home-page .hero-banner-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
  }

  body.home-page .customer-service-root {
    right: max(12px, env(safe-area-inset-right)) !important;
    left: auto !important;
    width: 56px !important;
    max-width: calc(100vw - 24px) !important;
    box-sizing: border-box;
  }

  body.home-page .customer-service-container {
    width: 56px !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  body.home-page .customer-service-avatar,
  body.home-page .customer-service-actions,
  body.home-page .back-to-top {
    margin-inline: auto;
  }

  body.home-page .statistics-scale-section {
    overflow: hidden;
  }

  body.home-page .statistics-scale-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 22px 12px !important;
    overflow: hidden;
  }

  body.home-page .statistics-scale-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 16px 10px !important;
  }

  body.home-page .statistics-scale-item {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden;
    text-align: center;
  }

  body.home-page .statistics-scale-item .stat-number {
    max-width: 100%;
    font-size: clamp(20px, 7.2vw, 28px);
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number--single {
    font-size: inherit;
  }

  body.home-page .statistics-scale-label {
    max-width: 8em;
    margin-inline: auto;
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  body.home-page .statistics-scale-image {
    width: 220px !important;
    max-width: 100% !important;
    max-height: 220px !important;
    margin-inline: auto !important;
  }

  body.home-page .demo-cards-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 20px;
  }

  body.home-page .demo-cards-header__more {
    align-self: end;
    margin-top: 0;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  body.home-page .demo-cards-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body.home-page .demo-cards-header__more {
    justify-self: start;
  }
}

/* The page atmosphere belongs to the fixed background layer.  Do not let the
   demo floor become a scroll-scrubbed rectangular surface: GSAP still writes
   background-position for the legacy effect, but these rules keep that inline
   value from changing the rendered section or covering the cards while the
   user scrolls. */
body.home-page .demo-cards-section {
  background: transparent !important;
  background-position: center top !important;
}

body.home-page .demo-cards-section::before,
body.home-page .demo-cards-section::after {
  background: transparent !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Keep the industry rail touch-scrollable after the desktop full-row reset. */
@media (max-width: 767px) {
  body.home-page .industry-tabs-nav-shell {
    gap: 0;
    margin-bottom: 30px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.home-page .industry-tabs-nav-arrow {
    flex: 0 0 28px;
    width: 28px;
    height: 48px;
  }

  body.home-page .industry-tabs-nav {
    gap: 0;
    border-bottom-color: rgba(83, 100, 124, 0.16);
    touch-action: pan-x;
  }

  body.home-page .industry-tab-btn {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 48px;
    padding: 0 16px;
  }

  body.home-page .industry-tab-btn + .industry-tab-btn::before {
    top: 16px;
    bottom: 16px;
  }

  body.home-page .industry-tab-btn.is-active::after {
    right: 16px;
    left: 16px;
  }
}

/* Restore the original full-width CTA composition: copy and phone form on the
   left, the local character artwork anchored to the lower-right. */
body.home-page .voice-footer-section {
  padding: 64px 0 0 !important;
  background: transparent !important;
}

body.home-page .voice-footer-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 0;
  height: 448px !important;
  margin: 0 auto -48px !important;
  padding: 82px 80px 88px !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-image: url('/themes/theme-jikeai-official/assets/images/bg/by-voice-bg-image.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;
  box-shadow: none !important;
}

body.home-page .voice-footer-characters {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 0;
  display: block !important;
  width: 832px;
  max-width: 62%;
  height: auto;
  margin: 0 !important;
  object-fit: contain;
  pointer-events: none;
}

body.home-page :is(.voice-footer-title, .voice-footer-subtitle,
  .voice-footer-desc, .voice-footer-phone, .voice-footer-contact-tip) {
  position: relative;
  z-index: 1;
}

body.home-page .voice-footer-title {
  color: #ffffff !important;
  font-size: 40px;
  font-weight: 500;
  line-height: 56px;
  text-align: left;
}

body.home-page .voice-footer-subtitle {
  color: #ffffff !important;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
}

body.home-page .voice-footer-desc {
  margin: 12px 0 62px;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

body.home-page .voice-footer-phone {
  display: flex;
  align-items: center;
  width: 472px;
  max-width: 100%;
  height: 48px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #ffffff;
  border-radius: 24px;
  background: #ffffff;
}

body.home-page .voice-footer-phone .dropdown {
  display: flex;
}

body.home-page .voice-footer-phone .dropdown-toggle {
  padding: 0 6px 0 15px;
  border: 0;
  border-right: 0.5px solid rgba(90, 90, 90, 0.3);
  background: transparent;
  color: rgb(90, 90, 90);
  font-size: 14px;
}

body.home-page .voice-footer-phone input {
  flex: 1 1 0%;
  width: 0;
  padding-left: 15px;
  border: 0 !important;
  outline: none;
  background: transparent !important;
  color: rgba(90, 90, 90, 0.75) !important;
  font-size: 14px;
}

body.home-page .voice-footer-phone input::placeholder {
  color: rgba(90, 90, 90, 0.64);
}

body.home-page .voice-footer-phone > button:last-child {
  flex-shrink: 0;
  width: 132px;
  height: 46px;
  border: 0;
  border-radius: 24px;
  background: rgb(26, 26, 26);
  color: #ffffff;
  font-family: 'DIN Alternate', 'PingFang SC', sans-serif;
  font-size: 28px;
  letter-spacing: 0;
}

body.home-page .voice-footer-contact-tip {
  color: #ffffff !important;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}

@media (max-width: 1440px) and (min-width: 768px) {
  body.home-page .voice-footer-container {
    width: 100%;
    padding: 100px 64px 64px !important;
    height: auto !important;
    min-height: 448px;
    margin: 0 auto -40px !important;
    background-color: #2b58f9 !important;
    background-image: url('/themes/theme-jikeai-official/assets/images/bg/by-voice-bg-image.svg') !important;
  }

  body.home-page .voice-footer-characters {
    right: 0 !important;
    width: 42%;
    max-width: 480px;
    opacity: 0.95;
  }
}

@media (max-width: 767px) {
  body.home-page .voice-footer-section {
    padding: 24px 0 0 !important;
  }

  body.home-page .voice-footer-container {
    position: relative !important;
    width: 100%;
    height: auto !important;
    min-height: 280px !important;
    margin: 0 auto -28px !important;
    padding: 28px 16px calc(40px + env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 20px 20px 0 0 !important;
    background-color: #2b58f9 !important;
    background-image: url('/themes/theme-jikeai-official/assets/images/bg/by-voice-bg-image.svg') !important;
    z-index: 1;
  }

  body.home-page .voice-footer-characters {
    right: 0 !important;
    bottom: -8px !important;
    width: 42%;
    max-width: 168px;
    opacity: 0.65;
    z-index: 0 !important;
  }

  body.home-page :is(.voice-footer-title, .voice-footer-subtitle,
    .voice-footer-desc, .voice-footer-phone, .voice-footer-contact-tip) {
    position: relative;
    z-index: 2;
  }

  body.home-page .voice-footer-title {
    font-size: 20px;
    line-height: 28px;
  }

  body.home-page .voice-footer-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  body.home-page .voice-footer-desc {
    margin: 8px 0 20px;
    font-size: 12.5px;
    line-height: 19px;
  }

  body.home-page .voice-footer-phone {
    width: 100%;
    height: 42px;
    border-radius: 21px;
  }

  body.home-page .voice-footer-phone .dropdown-toggle {
    padding: 0 6px 0 10px;
    font-size: 12px;
  }

  body.home-page .voice-footer-phone input {
    padding-left: 8px;
    font-size: 13px;
  }

  body.home-page .voice-footer-phone > button:last-child {
    width: 68px;
    height: 38px;
    border-radius: 19px;
    font-size: 16px;
  }

  body.home-page .voice-footer-contact-tip {
    font-size: 11px;
    line-height: 16px;
  }
}

/* Final homepage heading pass: keep every floor heading centered and make the
   demo link readable against the light background.  This block intentionally
   lives at the end so later responsive polish cannot move it back to the left. */
body.home-page .demo-cards-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: initial !important;
  gap: 18px !important;
  text-align: center !important;
}

body.home-page .demo-cards-header__text {
  grid-column: 2;
  justify-items: center;
  text-align: center;
}

body.home-page .section-eyebrow {
  display: none !important;
}

body.home-page .demo-cards-header__title,
body.home-page .product-cards-heading__title,
body.home-page .industry-tabs-heading__title,
body.home-page .news-section__title,
body.home-page .partner-carousel-heading .section-title {
  text-align: center !important;
  margin-inline: auto !important;
}

body.home-page .demo-cards-header__more {
  position: static !important;
  inset: auto !important;
  grid-column: 3;
  justify-self: end;
  align-self: center;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px 0 18px !important;
  border: 1px solid rgba(27, 84, 164, 0.24) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #1556ac !important;
  -webkit-text-fill-color: #1556ac;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  text-shadow: none !important;
  box-shadow: 0 6px 16px rgba(34, 76, 148, 0.12);
  transform: none;
}

body.home-page .demo-cards-header__more:hover,
body.home-page .demo-cards-header__more:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  background: #1556ac !important;
  border-color: #1556ac !important;
  transform: translateY(-1px);
}

body.home-page .demo-cards-header__more svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px;
  color: currentColor;
  stroke-width: 2.4;
}

body.home-page .product-cards-heading,
body.home-page .industry-tabs-heading,
body.home-page .partner-carousel-heading {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0 !important;
  text-align: center !important;
}

body.home-page .product-cards-heading::before,
body.home-page .industry-tabs-heading::before {
  display: none !important;
}

body.home-page .news-section__title {
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 767px) {
  body.home-page .demo-cards-header {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    gap: 12px !important;
  }

  body.home-page .demo-cards-header__text {
    grid-column: auto;
  }

  body.home-page .demo-cards-header__more {
    grid-column: auto;
    justify-self: center;
    align-self: center;
    min-height: 38px;
    padding-inline: 16px !important;
    font-size: 14px !important;
  }
}

/* Apple Design final handoff -------------------------------------------------
   This is the single, intentional last layer for the homepage.  Earlier
   commits accumulated several visual passes in this file, so keep the
   product decisions that must not drift together here: quiet materials,
   explicit interaction states, one motion language, and robust mobile input.
*/
body.home-page {
  --home-accent: rgb(8, 127, 145);
  --home-focus: rgba(8, 127, 145, 0.38);
  --home-press-ease: cubic-bezier(0.32, 0.72, 0, 1);
  color: #17233d;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.home-page :is(a, button, input, select, textarea) {
  -webkit-tap-highlight-color: transparent;
}

body.home-page :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--home-focus);
  outline-offset: 3px;
}

/* Avoid animating layout properties.  The press state is deliberately fast
   and starts on pointer-down, which makes the interface feel direct on touch. */
body.home-page :is(.btn-primary, .btn-outline, .demo-card__btn,
  .case-card__btn, .case-card__btn--primary, .industry-tabs-section .btn-primary,
  .solutions-banner__btn, .link-primary, .demo-cards-header__more,
  .industry-tab-btn, .industry-tabs-nav-arrow, .mobile-call-btn) {
  transition-property: transform, color, background-color, border-color,
    box-shadow, opacity;
  transition-duration: 220ms;
  transition-timing-function: var(--home-press-ease);
  will-change: transform;
}

body.home-page :is(.btn-primary, .btn-outline, .demo-card__btn,
  .case-card__btn, .case-card__btn--primary, .industry-tabs-section .btn-primary,
  .solutions-banner__btn, .link-primary, .demo-cards-header__more,
  .industry-tab-btn, .industry-tabs-nav-arrow, .mobile-call-btn):active {
  transform: translate3d(0, 1px, 0) scale(0.975);
  transition-duration: 90ms;
}

@media (hover: hover) {
  body.home-page :is(.btn-primary, .btn-outline, .demo-card__btn,
    .case-card__btn, .case-card__btn--primary, .industry-tabs-section .btn-primary,
    .solutions-banner__btn, .link-primary, .demo-cards-header__more,
    .industry-tabs-nav-arrow):hover {
    transform: translate3d(0, -2px, 0);
  }
}

/* Keep cards as one quiet material family.  The old sweeping shine pseudo
   elements made the page feel busy and competed with the actual content. */
body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .news-section__grid > div > div) {
  border: 1px solid rgba(132, 151, 189, 0.24) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 14px 34px rgba(61, 86, 153, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  transition: transform 320ms var(--home-press-ease),
    box-shadow 320ms var(--home-press-ease), border-color 220ms ease;
}

body.home-page :is(.demo-card, .card-light, .industry-detail-card,
  .news-section__grid > div > div)::after {
  display: none !important;
}

@media (hover: hover) {
  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div):hover {
    border-color: rgba(8, 127, 145, 0.26) !important;
    box-shadow: 0 20px 44px rgba(61, 86, 153, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
    transform: translate3d(0, -4px, 0);
  }
}

/* The industry rail stays a full-width, flat navigation row: active underline
   plus restrained separators, never nested capsules. */
body.home-page .industry-tabs-nav-shell {
  width: 100%;
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.home-page .industry-tabs-nav {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(83, 100, 124, 0.18);
}

body.home-page .industry-tabs-nav::-webkit-scrollbar {
  display: none;
}

body.home-page .industry-tab-btn {
  flex: 1 1 0;
  min-width: max-content;
  border-radius: 0 !important;
  background: transparent !important;
  color: #53647c;
  scroll-snap-align: center;
}

body.home-page .industry-tab-btn:hover,
body.home-page .industry-tab-btn.is-active {
  color: #2458bd;
}

body.home-page .industry-tab-btn.is-active::after {
  right: 24%;
  left: 24%;
  height: 3px;
  border-radius: 0;
  background: #2458bd;
}

body.home-page .industry-tab-btn + .industry-tab-btn::before {
  background: rgba(83, 100, 124, 0.22);
}

/* Reassert the centered floor hierarchy that was previously overridden by
   the editorial left-aligned pass. */
body.home-page :is(.demo-cards-header, .product-cards-heading,
  .industry-tabs-heading, .partner-carousel-heading) {
  text-align: center !important;
}

body.home-page :is(.demo-cards-header__title, .product-cards-heading__title,
  .industry-tabs-heading__title, .partner-carousel-heading .section-title,
  .news-section__title) {
  color: #17233d !important;
  text-align: center !important;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body.home-page .section-eyebrow,
body.home-page .product-cards-heading::before,
body.home-page .industry-tabs-heading::before {
  display: none !important;
}

/* Keep the statistics floor light and legible; the supplied teal is the
   single data accent instead of another full-width blue decoration. */
body.home-page .statistics-scale-section {
  color: #17233d !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.home-page .statistics-scale-section::after {
  display: none !important;
  animation: none !important;
}

body.home-page .statistics-scale-inner {
  border: 1px solid rgba(132, 151, 189, 0.2) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 14px 34px rgba(61, 86, 153, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

body.home-page .statistics-scale-item {
  border: 1px solid rgba(132, 151, 189, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  transition: transform 240ms var(--home-press-ease),
    background-color 220ms ease, box-shadow 220ms ease;
}

body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number__unit,
body.home-page .statistics-scale-item .stat-number--single {
  color: var(--home-accent) !important;
  text-shadow: none !important;
}

body.home-page .statistics-scale-label {
  color: #65758a !important;
}

/* Make the local video/background a quiet atmosphere layer, never a competing
   content surface.  The source itself is local in index.html. */
body.home-page .home-bg-video {
  pointer-events: none;
}

body.home-page :is(.demo-cards-section, .product-cards-section,
  .industry-tabs-section, .statistics-scale-section, .partner-carousel-section,
  .news-section, .voice-footer-section) {
  scroll-margin-top: 96px;
}

@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  body.home-page header.header-glass,
  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div, .statistics-scale-inner),
  body.home-page .statistics-scale-item {
    background: #ffffff !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div, .statistics-scale-inner,
    .statistics-scale-item) {
    border-color: rgba(23, 35, 61, 0.38) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page *,
  body.home-page *::before,
  body.home-page *::after {
    animation: none !important;
    transition-duration: 180ms !important;
    transition-property: opacity, color, background-color, border-color !important;
    transform: none !important;
  }

  body.home-page .home-bg-video {
    opacity: 0 !important;
  }
}

@media (max-width: 767px) {
  body.home-page {
    overflow-x: clip;
  }

  body.home-page :is(.demo-cards-section, .product-cards-section,
    .industry-tabs-section, .partner-carousel-section, .news-section) {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  body.home-page .industry-tabs-nav {
    touch-action: pan-x;
  }

  body.home-page .industry-tab-btn {
    flex: 0 0 auto;
    min-height: 52px;
    padding-inline: 17px;
  }

  body.home-page .industry-tab-btn.is-active::after {
    right: 17px;
    left: 17px;
  }

  body.home-page .statistics-scale-inner {
    border-radius: 20px !important;
  }

  body.home-page :is(.demo-card, .card-light, .industry-detail-card,
    .news-section__grid > div > div) {
    border-radius: 18px !important;
  }
}

/* Regression fixes -----------------------------------------------------------
   Keep these interaction and layer-boundary rules after every older visual
   pass.  They address three concrete regressions: the CTA's blue corner fill,
   the modal chrome/scrollbar, and mobile vertical scrolling beside a
   horizontal card rail. */

/* The CTA SVG already contains the gradient and rounded silhouette.  A solid
   blue fallback behind its transparent rounded corners creates the unwanted
   blue strip visible beneath/alongside the footer module. */
body.home-page .voice-footer-container {
  background-color: transparent !important;
}

/* The modal should read as one calm surface, without the decorative top rail
   or the browser-specific scrollbar.  It remains scrollable by wheel/touch. */
body.home-page .trial-modal-card {
  border-top-color: transparent !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.home-page .trial-modal-card::before,
body.home-page .trial-modal-card::after {
  display: none !important;
}

body.home-page .trial-modal-card::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* A horizontal rail must not consume vertical intent.  pan-x pan-y lets the
   browser keep horizontal card movement while allowing an upward/downward
   swipe that starts on the cards to continue scrolling the page. */
@media (max-width: 767px) {
  body.home-page .demo-cards-grid,
  body.home-page .industry-tabs-nav {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
  }

  body.home-page .demo-cards-grid {
    scroll-snap-type: x proximity;
  }
}

/* Fade the local atmosphere into the light content canvas instead of ending
   the video layer at a hard horizontal edge between floors. */
body.home-page .home-bg-fixed {
  overflow: hidden;
}

body.home-page .home-bg-fixed::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: clamp(260px, 24vw, 420px);
  pointer-events: none;
  content: '';
  background: linear-gradient(
    180deg,
    rgba(247, 249, 255, 0) 0%,
    rgba(247, 249, 255, 0.58) 58%,
    #f7f9ff 100%
  );
}

@media (max-width: 767px) {
  body.home-page .home-bg-fixed::after {
    height: 360px;
    background: linear-gradient(
      180deg,
      rgba(247, 249, 255, 0) 0%,
      rgba(247, 249, 255, 0.7) 62%,
      #f7f9ff 100%
    );
  }
}

/* Flatten the small-screen CTA into one continuous surface.  The source SVG
   is shaped for the wide desktop banner; when it is stretched into a short
   phone/tablet card, its transparent edges and grid overlay read as hard
   horizontal color bands. */
@media (max-width: 820px) {
  body.home-page .voice-footer-container {
    background-color: transparent !important;
    background-image: linear-gradient(
      135deg,
      #6428ff 0%,
      #5138fb 54%,
      #2d64ee 100%
    ) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
  }

  body.home-page .voice-footer-container::before,
  body.home-page .voice-footer-container::after {
    display: none !important;
  }
}

/* Keep homepage tags in the same color system as the cases page.  The broad
   homepage polish rule above intentionally gives every tag a quiet blue base;
   these semantic variants must come last so sub-industry and call-count tags
   retain their distinct indigo and amber treatments. */
body.home-page .demo-card__tag {
  border-color: transparent !important;
  background: rgba(43, 88, 249, 0.08) !important;
  color: #2b58f9 !important;
}

body.home-page .demo-card__tag--sub {
  background: rgba(99, 102, 241, 0.06) !important;
  color: #6366f1 !important;
}

body.home-page .demo-card__tag--calls {
  background: rgba(245, 158, 11, 0.08) !important;
  color: #d97706 !important;
}

/* Mobile interaction and loading pass ---------------------------------------
   Keep horizontal rails discoverable without turning them into a vertical
   scroll trap.  All primary touch targets use the 44px minimum recommended by
   the UI review, while the visual proportions of the existing controls stay
   unchanged. */
@media (max-width: 767px) {
  body.home-page .home-bg-video {
    display: none !important;
  }

  body.home-page .home-bg-fixed {
    background:
      radial-gradient(ellipse 80% 34% at 8% 8%, rgba(180, 213, 240, 0.52), transparent 72%),
      radial-gradient(ellipse 72% 34% at 92% 20%, rgba(188, 181, 255, 0.38), transparent 72%),
      linear-gradient(180deg, #e9f1f8 0%, #f2f6fa 48%, #f7f9ff 100%) !important;
  }

  body.home-page header button[aria-label="Toggle navigation menu"] {
    min-width: 44px;
    min-height: 44px;
  }

  body.home-page .demo-cards-header__more {
    min-height: 44px;
  }

  body.home-page .demo-card__btn,
  body.home-page .industry-tabs-nav-arrow,
  body.home-page .customer-service-action {
    min-height: 44px;
  }

  body.home-page .customer-service-action {
    width: 44px;
    min-width: 44px;
  }

  body.home-page .industry-tabs-nav-arrow {
    width: 44px;
    min-width: 44px;
  }

  body.home-page .back-to-top {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }

  body.home-page .demo-cards-grid {
    scroll-padding-inline: 16px;
  }

  body.home-page .demo-card {
    scroll-snap-align: start;
  }

  body.home-page .demo-card:focus-visible {
    outline: 3px solid var(--home-focus);
    outline-offset: 4px;
  }

  body.home-page .demo-cards-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 0;
    color: #71809a;
    font-size: 12px;
    line-height: 18px;
  }
}

@media (min-width: 768px) {
  body.home-page .demo-cards-swipe-hint {
    display: none;
  }
}

/* A calm, consistent floor rhythm: content enters with a short fade and each
   section has enough scroll breathing room for the sticky header. */
body.home-page :is(.demo-cards-section, .product-cards-section,
  .industry-tabs-section, .statistics-scale-section, .partner-carousel-section,
  .news-section, .voice-footer-section) {
  scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .demo-cards-swipe-hint {
    transition: none !important;
  }
}

/* Homepage reference refinement: one quiet visual language for the solution,
   proof and news floors. The restraint here is deliberate: color is reserved
   for the active state, key figures and the primary action. */
body.home-page {
  --homepage-ink: #182335;
  --homepage-muted: #708097;
  --homepage-canvas: #f5f5f7;
  --homepage-teal: rgb(8, 127, 145);
}

/* Industry solution: a single white canvas with structural, not pill-like tabs. */
body.home-page .industry-tabs-section {
  background: var(--homepage-canvas) !important;
  padding-block: clamp(72px, 8vw, 128px) !important;
}

body.home-page .industry-detail-card {
  overflow: hidden;
  padding: 0 clamp(24px, 3.2vw, 56px) clamp(30px, 3vw, 52px) !important;
  border: 1px solid rgba(25, 36, 54, 0.06) !important;
  border-radius: 30px !important;
  background: #fff !important;
  box-shadow: 0 18px 48px rgba(29, 39, 57, 0.08) !important;
  backdrop-filter: none !important;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

@media (hover: hover) {
  body.home-page .industry-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(29, 39, 57, 0.1) !important;
  }
}

body.home-page .industry-detail-inner {
  gap: 0 !important;
}

body.home-page .industry-tabs-nav-shell {
  width: 90% !important;
  max-width: 1220px !important;
  margin-inline: auto !important;
}

body.home-page .industry-tabs-nav {
  width: 100% !important;
  border-bottom: 1px solid #e5e9ef !important;
  scrollbar-width: none;
}

body.home-page .industry-tabs-nav::-webkit-scrollbar {
  display: none;
}

body.home-page .industry-tab-btn {
  position: relative;
  flex: 1 0 0 !important;
  min-width: 156px !important;
  min-height: 72px;
  padding: 0 24px !important;
  border: 0 !important;
  border-right: 1px solid #e2e6eb !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #929dac !important;
  font-size: clamp(16px, 1.25vw, 20px) !important;
  font-weight: 650 !important;
  letter-spacing: -0.02em;
  transition: color 200ms ease, background-color 200ms ease;
}

body.home-page .industry-tab-btn:first-child {
  border-left: 1px solid #e2e6eb !important;
}

body.home-page .industry-tab-btn + .industry-tab-btn::before {
  display: none !important;
}

body.home-page .industry-tab-btn::after {
  position: absolute;
  right: 35%;
  bottom: -1px;
  left: 35%;
  height: 3px;
  border-radius: 3px;
  background: #315cd5;
  content: '';
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 200ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .industry-tab-btn.is-active {
  color: var(--homepage-ink) !important;
  font-weight: 760 !important;
}

body.home-page .industry-tab-btn.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

body.home-page .industry-tabs-nav-arrow {
  display: none !important;
}

body.home-page .industry-tabs-nav-shell[data-has-overflow='true'] .industry-tabs-nav-arrow {
  display: inline-flex !important;
}

body.home-page .industry-detail-body {
  display: grid !important;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(36px, 6vw, 88px) !important;
  padding: clamp(36px, 4vw, 60px) 0 0 !important;
}

body.home-page .industry-detail-image {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 1 / 1.06;
  max-height: 480px;
  border-radius: 18px !important;
  object-fit: cover !important;
  box-shadow: none !important;
}

body.home-page .industry-detail-content {
  min-width: 0;
  padding: 0 !important;
}

body.home-page .industry-detail-title {
  color: var(--homepage-ink) !important;
  font-size: clamp(30px, 2.3vw, 42px) !important;
  font-weight: 760 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.045em !important;
}

body.home-page .industry-detail-sub {
  max-width: 900px;
  margin-top: 22px !important;
  color: #66768b !important;
  font-size: clamp(15px, 1.08vw, 18px) !important;
  line-height: 1.72 !important;
}

body.home-page .industry-scenes {
  display: flex !important;
  flex-wrap: wrap;
  gap: 16px 26px !important;
  margin-top: clamp(26px, 3vw, 42px) !important;
}

body.home-page .industry-scene-item {
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #334155 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

body.home-page .industry-scene-item img {
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #f3f5f8;
}

body.home-page .industry-bottom-logo {
  display: flex !important;
  align-items: center;
  gap: 18px !important;
  width: 100% !important;
  margin-top: clamp(28px, 3.2vw, 46px) !important;
  padding: 10px 14px !important;
  border: 0 !important;
  border-radius: 24px !important;
  background: #f4f5f7 !important;
}

body.home-page .industry-bottom-logo-item {
  display: flex !important;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 44px;
  padding: 8px 14px !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: #fff !important;
}

body.home-page .industry-bottom-logo-item img {
  width: 100% !important;
  max-width: 116px;
  height: 100% !important;
  object-fit: contain;
}

body.home-page .industry-detail-actions {
  justify-content: flex-end !important;
  gap: 14px !important;
  margin-top: 28px !important;
}

body.home-page .industry-detail-actions :is(.btn-outline, .btn-primary) {
  min-width: 126px;
  min-height: 50px;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

body.home-page .industry-detail-actions .btn-outline {
  border-color: #d9e0e8 !important;
  background: #fff !important;
  color: #445166 !important;
}

body.home-page .industry-detail-actions .btn-primary {
  border-color: #3f91ef !important;
  background: #3f91ef !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.home-page .industry-detail-actions :is(.btn-outline, .btn-primary)::after {
  display: none !important;
}

/* Data proof: use a high-contrast band and let the figures, not cards, lead. */
body.home-page .statistics-scale-section {
  position: relative;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #050607 !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.home-page .statistics-scale-section::before,
body.home-page .statistics-scale-section::after {
  display: none !important;
}

body.home-page .statistics-scale-inner {
  position: relative;
  min-height: 300px;
  padding: 44px 120px 44px clamp(20px, 4vw, 64px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.home-page .statistics-scale-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px 20px !important;
}

body.home-page .statistics-scale-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
  transition: none !important;
}

@media (hover: hover) {
  body.home-page .statistics-scale-item:hover {
    transform: none !important;
  }
}

body.home-page .statistics-scale-item .stat-number {
  color: var(--homepage-teal) !important;
  font-size: clamp(38px, 3.8vw, 64px) !important;
  font-weight: 760 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
}

body.home-page .statistics-scale-item .stat-label {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

body.home-page .statistics-scale-image {
  position: absolute !important;
  right: clamp(20px, 6vw, 64px) !important;
  bottom: 0 !important;
  width: auto !important;
  max-width: 350px !important;
  height: 360px !important;
  object-fit: contain;
  object-position: bottom right;
  filter: none !important;
  z-index: 0;
  pointer-events: none;
}

/* News: equal cards and a stable image rhythm make scanning effortless. */
body.home-page .news-section {
  padding-block: clamp(76px, 9vw, 136px) !important;
  background: var(--homepage-canvas) !important;
}

body.home-page .news-section__title {
  margin: 0 auto clamp(34px, 4vw, 58px) !important;
  padding: 0 !important;
  border: 0 !important;
  color: #15171b !important;
  font-size: clamp(32px, 3.2vw, 52px) !important;
  font-weight: 760 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.05em !important;
  text-align: center !important;
}

body.home-page .news-section__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 32px) !important;
}

body.home-page .news-section__grid > div:first-child {
  grid-row: auto !important;
}

body.home-page .news-section__grid > div {
  min-width: 0;
}

body.home-page .news-section__grid .news-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden;
  border: 1px solid rgba(26, 34, 48, 0.06) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(23, 31, 46, 0.07) !important;
  transform: none !important;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease !important;
}

body.home-page .news-section__grid .news-card__image-wrap {
  aspect-ratio: 16 / 9;
  height: auto !important;
  overflow: hidden;
}

body.home-page .news-section__grid .news-card__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .news-section__grid .news-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 28px !important;
}

body.home-page .news-section__grid .news-card__title {
  margin: 0 !important;
  color: #24272d !important;
  font-size: clamp(18px, 1.4vw, 23px) !important;
  font-weight: 720 !important;
  line-height: 1.32 !important;
  letter-spacing: -0.025em !important;
}

body.home-page .news-section__grid .news-card__desc {
  display: -webkit-box;
  overflow: hidden;
  margin: 16px 0 0 !important;
  color: #78808d !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (hover: hover) {
  body.home-page .news-section__grid .news-card:hover {
    box-shadow: 0 16px 34px rgba(23, 31, 46, 0.12) !important;
    transform: translateY(-4px) !important;
  }

  body.home-page .news-section__grid .news-card:hover .news-card__image {
    transform: scale(1.035);
  }
}

@media (max-width: 767px) {
  body.home-page .industry-tabs-section {
    padding-block: 56px !important;
  }

  body.home-page .industry-detail-card {
    padding: 0 18px 24px !important;
    border-radius: 22px !important;
  }

  body.home-page .industry-tabs-nav-shell {
    width: calc(100% + 36px) !important;
    margin-inline: -18px !important;
  }

  body.home-page .industry-tab-btn {
    flex: 0 0 auto !important;
    min-width: 132px !important;
    min-height: 58px;
    padding: 0 17px !important;
    font-size: 15px !important;
  }

  body.home-page .industry-detail-body {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding-top: 28px !important;
  }

  body.home-page .industry-detail-image {
    aspect-ratio: 16 / 11;
    max-height: none;
  }

  body.home-page .industry-detail-title {
    font-size: 29px !important;
  }

  body.home-page .industry-detail-sub {
    margin-top: 14px !important;
    font-size: 15px !important;
  }

  body.home-page .industry-scenes {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px !important;
    margin-top: 24px !important;
  }

  body.home-page .industry-scene-item {
    font-size: 14px !important;
  }

  body.home-page .industry-scene-item img {
    width: 36px !important;
    height: 36px !important;
  }

  body.home-page .industry-bottom-logo {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 10px !important;
    margin-top: 28px !important;
    border-radius: 16px !important;
    scrollbar-width: none;
  }

  body.home-page .industry-bottom-logo::-webkit-scrollbar {
    display: none;
  }

  body.home-page .industry-bottom-logo-item {
    flex: 0 0 104px;
    height: 38px;
  }

  body.home-page .industry-detail-actions {
    gap: 10px !important;
    margin-top: 22px !important;
  }

  body.home-page .industry-detail-actions :is(.btn-outline, .btn-primary) {
    flex: 1;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px !important;
    font-size: 14px !important;
  }

  body.home-page .statistics-scale-inner {
    min-height: 0;
    padding: 34px 18px 122px !important;
  }

  body.home-page .statistics-scale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px 18px !important;
  }

  body.home-page .statistics-scale-item .stat-number {
    font-size: clamp(32px, 10vw, 42px) !important;
  }

  body.home-page .statistics-scale-item .stat-label {
    margin-top: 7px !important;
    font-size: 12px !important;
  }

  body.home-page .statistics-scale-image {
    right: 12px !important;
    max-width: none !important;
    height: 132px !important;
    opacity: 0.9;
  }

  body.home-page .news-section {
    padding-block: 64px 76px !important;
  }

  body.home-page .news-section__title {
    margin-bottom: 32px !important;
    font-size: 32px !important;
  }

  body.home-page .news-section__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.home-page .news-section__grid .news-card__content {
    padding: 20px 20px 22px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page :is(.industry-detail-card, .statistics-scale-item, .news-section__grid .news-card, .news-card__image) {
    transition: opacity 180ms ease, color 180ms ease, background-color 180ms ease !important;
    transform: none !important;
  }
}

/* Defuse the older glass treatment that has a more specific selector in the
   legacy homepage stylesheet. The solution card should remain a solid canvas. */
body.home-page .industry-tabs-section .industry-detail-card {
  background-color: #fff !important;
  background-image: none !important;
  backdrop-filter: none !important;
}

/* Trial flow: every step shares one stable frame. Content can scroll inside
   its own area, while the action stays in the same bottom position. */
body.home-page .trial-modal-card {
  display: flex;
  flex-direction: column;
  width: 520px !important;
  height: 760px !important;
  max-height: 760px !important;
  overflow: hidden !important;
}

body.home-page .trial-modal-card > .trial-modal-step {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 0 4px 2px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.home-page .trial-modal-card > .trial-modal-step::-webkit-scrollbar {
  display: none;
}

body.home-page .trial-modal-card > .trial-modal-step.trial-loading {
  display: grid;
  align-content: center;
}

body.home-page .trial-modal-step > form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

body.home-page .trial-modal-step .trial-modal-submit,
body.home-page .trial-modal-step .trial-modal-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
}

body.home-page .trial-modal-step > form > .trial-modal-submit {
  margin-top: auto !important;
}

body.home-page .trial-modal-step .trial-modal-actions {
  margin-top: auto !important;
  padding-top: 14px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0), #f8faff 30%);
}

body.home-page .trial-modal-step--description .trial-examples {
  flex: 0 0 auto;
}

/* The keyword view trades the two-column density for four calm, full-width
   prompts. This keeps every input equally easy to scan without changing the
   modal or CTA position. */
body.home-page .trial-modal-step--description .trial-keyword-fields {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 0 !important;
}

body.home-page .trial-modal-step--description .trial-keyword-field {
  display: block;
}

body.home-page .trial-modal-step--description .trial-keyword-field .trial-modal-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 5px !important;
  color: #4d5a73;
}

body.home-page .trial-modal-step--description .trial-keyword-field .trial-modal-label span {
  margin-left: 6px;
}

body.home-page .trial-modal-step--description .trial-keyword-field .trial-modal-input {
  min-height: 48px;
}

body.home-page .trial-modal-step--description .trial-modal-textarea {
  min-height: 136px;
  resize: none;
}

@media (max-width: 560px) {
  body.home-page .trial-modal-backdrop {
    align-items: center !important;
  }

  body.home-page .trial-modal-card {
    width: 520px !important;
    height: 700px !important;
    max-height: 700px !important;
    padding: 34px 20px 22px !important;
    border-radius: 22px !important;
  }

  body.home-page .trial-modal-step--description .trial-keyword-field .trial-modal-input {
    min-height: 44px;
  }

body.home-page .trial-modal-step--description .trial-modal-textarea {
    min-height: 118px;
  }
}

/* Reference proportion pass: the solution card stays compact, while its
   information column has a single, clearly aligned baseline. */
body.home-page .industry-detail-card {
  padding-bottom: 32px !important;
}

body.home-page .industry-detail-body {
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: clamp(42px, 5vw, 76px) !important;
  height: 450px;
  padding-top: 30px !important;
}

body.home-page .industry-detail-image {
  height: 420px !important;
  max-height: 420px !important;
  aspect-ratio: auto;
  align-self: center;
}

body.home-page .industry-detail-content {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.home-page .industry-detail-title {
  font-size: clamp(29px, 2.05vw, 38px) !important;
}

body.home-page .industry-detail-sub {
  margin-top: 16px !important;
  line-height: 1.62 !important;
}

body.home-page .industry-scenes {
  flex-wrap: nowrap;
  gap: clamp(12px, 1.6vw, 24px) !important;
  margin-top: 22px !important;
}

body.home-page .industry-scenes-item {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #334155 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  white-space: nowrap;
}

body.home-page .industry-scenes-item img {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
}

body.home-page .industry-bottom-logo {
  margin-top: 24px !important;
}

body.home-page .industry-detail-actions {
  margin-top: auto !important;
  padding-top: 20px;
}

/* Statistics are a deliberately flat, full-bleed band. The portrait sits on
   the band edge so it reads as a foreground object rather than a ninth tile. */
body.home-page .statistics-scale-section {
  isolation: visible !important;
  z-index: 1;
  height: clamp(224px, 15vw, 292px);
  min-height: 0 !important;
  overflow: visible !important;
}

body.home-page .statistics-scale-inner {
  display: flex !important;
  align-items: center;
  height: 100%;
  min-height: 0 !important;
  padding: 28px clamp(310px, 29vw, 470px) 28px clamp(20px, 4vw, 64px) !important;
}

body.home-page .statistics-scale-grid {
  width: 100%;
  align-content: center;
  gap: 28px clamp(20px, 3.2vw, 54px) !important;
}

body.home-page .statistics-scale-item .stat-number__value,
body.home-page .statistics-scale-item .stat-number--single {
  color: var(--homepage-teal) !important;
  font-size: clamp(38px, 3vw, 56px) !important;
  font-weight: 760 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.06em !important;
}

body.home-page .statistics-scale-item .stat-number__unit {
  color: var(--homepage-teal) !important;
  font-size: clamp(20px, 1.5vw, 28px) !important;
  font-weight: 700 !important;
}

body.home-page .statistics-scale-label {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

body.home-page .statistics-scale-image {
  position: absolute !important;
  z-index: 2;
  right: clamp(20px, 8vw, 172px) !important;
  bottom: 0 !important;
  width: auto !important;
  max-width: none !important;
  height: clamp(316px, 24vw, 430px) !important;
  max-height: none !important;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.24)) !important;
  pointer-events: none;
}

@media (max-width: 767px) {
  body.home-page .industry-detail-body {
    height: auto;
  }

  body.home-page .industry-detail-image {
    height: auto !important;
    max-height: none !important;
  }

  body.home-page .industry-scenes {
    flex-wrap: wrap;
  }

  body.home-page .statistics-scale-section {
    height: auto;
    min-height: 340px !important;
    overflow: hidden !important;
  }

  body.home-page .statistics-scale-inner {
    min-height: 340px !important;
    padding: 32px 18px 118px !important;
  }

  body.home-page .statistics-scale-image {
    right: 8px !important;
    height: 170px !important;
  }
}

/* Keep every configured proof point in the statistics grid. The grid is
   allowed to create additional rows instead of hiding records after item 8. */
body.home-page .statistics-scale-inner {
  position: static !important;
  width: 90% !important;
  max-width: 1500px !important;
}

body.home-page .statistics-scale-image {
  right: clamp(48px, 10vw, 200px) !important;
  height: clamp(316px, 20vw, 365px) !important;
}

@media (max-width: 767px) {
  body.home-page .statistics-scale-inner {
    width: 100% !important;
  }

  body.home-page .statistics-scale-image {
    right: 8px !important;
    height: 170px !important;
  }
}

/* Stable home composition: switching industries changes only the content, not
   the card geometry. Reserve space for three lines of copy and a two-row task
   grid so the next floor never shifts. */
body.home-page .industry-tabs-container {
  width: 90% !important;
  max-width: 1280px !important;
  margin-inline: auto !important;
}

body.home-page .industry-detail-card {
  width: 100% !important;
  margin-inline: auto !important;
}

body.home-page .industry-detail-body {
  grid-template-columns: minmax(360px, 420px) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(42px, 5vw, 76px) !important;
  height: 530px !important;
  min-height: 530px !important;
  padding-top: 42px !important;
  overflow: visible;
}

body.home-page .industry-detail-image {
  width: 100% !important;
  height: 440px !important;
  max-height: 440px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
}

body.home-page .industry-detail-content {
  display: flex !important;
  flex-direction: column;
  align-content: initial;
  height: 440px;
  min-height: 0;
  overflow: visible;
}

body.home-page .industry-detail-title {
  display: -webkit-box;
  min-height: 2.32em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home-page .industry-detail-sub {
  display: -webkit-box;
  min-height: 5.1em;
  margin-top: 16px !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.home-page .industry-scenes {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 8px 14px !important;
  min-height: 76px;
  margin-top: 20px !important;
  overflow: hidden;
}

body.home-page .industry-scenes-item {
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  min-width: 0;
  overflow: hidden;
  font-size: 14px !important;
  line-height: 1.35 !important;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.home-page .industry-scenes-item img {
  flex: 0 0 34px;
  width: 34px !important;
  height: 34px !important;
}

body.home-page .industry-bottom-logo {
  margin-top: 12px !important;
}

body.home-page .industry-detail-actions {
  margin-top: auto !important;
  padding-top: 0 !important;
}

/* The proof band deliberately leaves breathing room after the solution card.
   Its portrait remains fully inside the band so it cannot visually collide
   with the floor above. */
body.home-page .statistics-scale-section {
  height: 420px !important;
  margin-top: clamp(96px, 8vw, 144px) !important;
  overflow: hidden !important;
}

body.home-page .statistics-scale-inner {
  width: 90% !important;
  max-width: 1440px !important;
  height: 420px !important;
  min-height: 420px !important;
  margin-inline: auto !important;
  padding: 34px 80px 34px 36px !important;
}

body.home-page .statistics-scale-grid {
  max-width: 940px;
  gap: 30px clamp(24px, 3vw, 52px) !important;
}

body.home-page .statistics-scale-image {
  right: max(24px, calc((100vw - 1440px) / 2)) !important;
  width: auto !important;
  height: 432px !important;
  max-height: none !important;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.24)) !important;
}

@media (max-width: 767px) {
  body.home-page .industry-detail-body {
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0 !important;
    gap: 24px !important;
    padding-top: 28px !important;
    overflow: visible;
  }

  body.home-page .industry-detail-image {
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 11 !important;
  }

  body.home-page .industry-detail-content {
    display: flex !important;
    height: auto;
    overflow: visible;
  }

  body.home-page .industry-detail-title,
  body.home-page .industry-detail-sub {
    min-height: 0;
  }

  body.home-page .industry-scenes {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .statistics-scale-section {
    height: auto !important;
    min-height: 360px !important;
    margin-top: 64px !important;
    overflow: hidden !important;
  }

  body.home-page .statistics-scale-inner {
    width: 100% !important;
    height: auto !important;
    min-height: 360px !important;
    padding: 34px 18px 136px !important;
  }

  body.home-page .statistics-scale-grid {
    max-width: none;
    gap: 28px 18px !important;
  }

  body.home-page .statistics-scale-image {
    right: 8px !important;
    height: 186px !important;
  }
}

/* Final reference composition: wide solution canvas, complete content, and a
   quiet white separation before the proof band. */
body.home-page .industry-tabs-section > .content-wrapper {
  width: 100% !important;
  max-width: none !important;
  padding-inline: 30px !important;
}

body.home-page .statistics-scale-section > .content-wrapper {
  width: 100% !important;
  max-width: none !important;
}

body.home-page .industry-tabs-container {
  width: 100% !important;
  max-width: none !important;
  margin-inline: auto !important;
}

body.home-page .industry-detail-card {
  overflow: visible !important;
  padding-inline: clamp(28px, 4.2vw, 86px) !important;
  padding-bottom: 34px !important;
}

body.home-page .industry-detail-body {
  grid-template-columns: minmax(400px, 495px) minmax(0, 1fr) !important;
  gap: clamp(48px, 5vw, 86px) !important;
  height: 530px !important;
  min-height: 530px !important;
  padding-top: 22px !important;
}

body.home-page .industry-detail-image {
  height: 494px !important;
  max-height: 494px !important;
  border-radius: 22px !important;
}

body.home-page .industry-detail-content {
  height: 494px !important;
  overflow: visible !important;
}

body.home-page .industry-detail-title {
  min-height: 1.18em;
  max-width: 100%;
  font-size: clamp(30px, 2.25vw, 44px) !important;
  line-height: 1.18 !important;
  -webkit-line-clamp: 2;
}

body.home-page .industry-detail-sub {
  min-height: 4.86em;
  margin-top: 24px !important;
  font-size: clamp(16px, 1.05vw, 20px) !important;
  line-height: 1.62 !important;
  -webkit-line-clamp: 3;
}

body.home-page .industry-scenes {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 26px !important;
  min-height: 48px;
  margin-top: 24px !important;
}

body.home-page .industry-scenes-item {
  gap: 10px !important;
  font-size: clamp(15px, 1.02vw, 19px) !important;
  white-space: nowrap;
}

body.home-page .industry-scenes-item img {
  flex-basis: 44px;
  width: 44px !important;
  height: 44px !important;
}

body.home-page .industry-bottom-logo {
  margin-top: 42px !important;
  padding: 10px 14px !important;
}

body.home-page .industry-bottom-logo-item {
  height: 58px !important;
}

body.home-page .industry-detail-actions {
  margin-top: auto !important;
  padding-top: 0 !important;
}

body.home-page .statistics-scale-section {
  height: 328px !important;
  min-height: 328px !important;
  margin-top: 144px !important;
  overflow: visible !important;
}

body.home-page .statistics-scale-inner {
  width: 100% !important;
  max-width: none !important;
  height: 328px !important;
  min-height: 328px !important;
  padding: 34px 200px 34px 36px !important;
}

body.home-page .statistics-scale-grid {
  max-width: 1280px !important;
  gap: 30px clamp(28px, 3.5vw, 72px) !important;
}

body.home-page .statistics-scale-image {
  right: clamp(28px, 4vw, 72px) !important;
  bottom: 0 !important;
  width: auto !important;
  height: 400px !important;
  max-height: none !important;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.24)) !important;
}

@media (max-width: 767px) {
  body.home-page .industry-tabs-container {
    width: 100% !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper,
  body.home-page .statistics-scale-section > .content-wrapper {
    padding-inline: 16px !important;
  }

  body.home-page .industry-detail-card {
    padding-inline: 18px !important;
  }

  body.home-page .industry-detail-body {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 28px !important;
  }

  body.home-page .industry-detail-image {
    height: auto !important;
    max-height: none !important;
  }

  body.home-page .industry-detail-content {
    height: auto !important;
  }

  body.home-page .industry-detail-title,
  body.home-page .industry-detail-sub {
    min-height: 0;
  }

  body.home-page .industry-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    margin-top: 20px !important;
  }

  body.home-page .industry-scenes-item {
    font-size: 14px !important;
  }

  body.home-page .industry-scenes-item img {
    flex-basis: 36px;
    width: 36px !important;
    height: 36px !important;
  }

  body.home-page .industry-bottom-logo {
    margin-top: 28px !important;
  }

  body.home-page .industry-bottom-logo-item {
    height: 42px !important;
  }

  body.home-page .statistics-scale-section {
    height: auto !important;
    min-height: 360px !important;
    margin-top: 72px !important;
    overflow: hidden !important;
  }

  body.home-page .statistics-scale-inner {
    width: 100% !important;
    height: auto !important;
    min-height: 360px !important;
    padding: 34px 18px 136px !important;
  }

  body.home-page .statistics-scale-image {
    right: 8px !important;
    height: 186px !important;
  }
}

/* Keep the three reference floors on the same desktop canvas as the rest of
   the homepage.  Their previous full-viewport positioning made fixed-size
   artwork and statistics drift apart when the browser zoom changed. */
@media (min-width: 768px) {
  body.home-page .industry-tabs-section > .content-wrapper,
  body.home-page .partner-carousel-section > .partner-carousel-heading {
    width: min(calc(100% - 48px), 1200px) !important;
    max-width: 1200px !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
  }

  body.home-page .industry-tabs-container,
  body.home-page .industry-tabs-nav-shell {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
  }

  body.home-page .statistics-scale-section > .statistics-scale-inner {
    position: relative !important;
    width: min(calc(100% - 48px), 1200px) !important;
    max-width: 1200px !important;
    margin-inline: auto !important;
  }

  body.home-page .statistics-scale-image {
    right: 28px !important;
  }

  body.home-page .statistics-scale-grid {
    width: 100% !important;
    max-width: 700px !important;
    margin-right: auto !important;
  }

  body.home-page .partner-carousel {
    width: min(calc(100% - 48px), 1200px) !important;
    max-width: 1200px !important;
    margin-inline: auto !important;
    overflow: hidden !important;
  }

  body.home-page .partner-carousel-row {
    display: block !important;
    width: 100% !important;
    min-height: 68px;
    overflow: hidden !important;
    white-space: nowrap;
  }

  body.home-page .partner-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    max-width: none !important;
  }

  /* Match the reference logo rail: one soft capsule with five equal white
     brand cells.  Reset the older absolute-image treatment so every logo is
     centered by the same flex geometry. */
  body.home-page .industry-bottom-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: clamp(10px, 1.5vw, 24px) !important;
    width: 100% !important;
    height: 60px !important;
    margin-top: 32px !important;
    padding: 8px 10px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f1f2f4 !important;
    overflow: hidden !important;
  }

  body.home-page .industry-bottom-logo-item {
    display: flex !important;
    flex: 1 1 0 !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    height: 44px !important;
    padding: 0 10px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 1px 2px rgba(30, 45, 70, 0.03);
    overflow: hidden !important;
  }

  body.home-page .industry-bottom-logo-item img {
    position: static !important;
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 24px !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Keep long scene labels readable.  The previous single-line ellipsis was
   applied to the whole item, so labels such as “订单催付 & 物流通知” lost
   their ending when the detail column became narrower. */
@media (min-width: 768px) {
  body.home-page .industry-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: start !important;
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item {
    display: flex !important;
    align-items: flex-start !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
  }

  body.home-page .industry-scenes-item img {
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
  }

  body.home-page .industry-scenes-item span {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    line-height: 1.4 !important;
  }
}

@media (max-width: 767px) {
  body.home-page .industry-scenes {
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item {
    align-items: flex-start !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
  }

  body.home-page .industry-scenes-item span {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    line-height: 1.4 !important;
  }
}

/* Stats must grow with their data. A fixed band works for two rows, but
   clips a third row and makes long labels collide with the portrait. */
@media (min-width: 768px) {
  body.home-page .statistics-scale-section {
    height: auto !important;
    min-height: 328px !important;
    overflow: visible !important;
  }

  body.home-page .statistics-scale-inner {
    height: auto !important;
    min-height: 328px !important;
  }

  body.home-page .statistics-scale-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    grid-auto-rows: minmax(76px, auto) !important;
    align-content: center !important;
    max-width: 700px !important;
    gap: 30px clamp(20px, 3vw, 48px) !important;
  }

  body.home-page .statistics-scale-item,
  body.home-page .statistics-scale-item:nth-child(n + 9) {
    display: flex !important;
    min-width: 0 !important;
    min-height: 76px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  body.home-page .statistics-scale-item .stat-number {
    justify-content: flex-start !important;
    max-width: 100% !important;
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number__unit,
  body.home-page .statistics-scale-item .stat-number--single {
    white-space: nowrap !important;
  }

  body.home-page .statistics-scale-label {
    max-width: 100% !important;
    min-height: 2.5em !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.home-page .statistics-scale-inner {
    padding: 30px 300px 30px 28px !important;
  }

  body.home-page .statistics-scale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 520px !important;
  }

  body.home-page .statistics-scale-image {
    right: 20px !important;
    height: 320px !important;
  }
}

@media (max-width: 767px) {
  body.home-page .statistics-scale-section {
    height: auto !important;
    min-height: 360px !important;
  }

  body.home-page .statistics-scale-inner {
    height: auto !important;
    min-height: 360px !important;
  }

  body.home-page .statistics-scale-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    grid-auto-rows: minmax(68px, auto) !important;
    max-width: none !important;
    align-content: start !important;
    gap: 24px 18px !important;
  }

  body.home-page .statistics-scale-item,
  body.home-page .statistics-scale-item:nth-child(n + 9) {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 68px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-item .stat-number,
  body.home-page .statistics-scale-label {
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-item .stat-number {
    justify-content: center !important;
  }

  body.home-page .statistics-scale-label {
    min-height: 2.5em !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

/* The logo files include transparent canvas around the actual marks. Scale
   the image inside each equal cell so the visible brand is legible without
   changing the rail geometry or stretching the source artwork. */
@media (min-width: 768px) {
  body.home-page .industry-bottom-logo-item img {
    max-width: 100% !important;
    max-height: 36px !important;
    transform: scale(1.35);
    transform-origin: center;
  }
}

@media (max-width: 767px) {
  body.home-page .industry-bottom-logo-item img {
    max-width: 100% !important;
    max-height: 30px !important;
    transform: scale(1.18);
    transform-origin: center;
  }
}

/* Keep the active marker centered on the tab itself. Using percentages from
   the tab edges made the marker drift when the tab text or padding changed. */
@media (min-width: 768px) {
  body.home-page .industry-tab-btn.is-active::after {
    right: auto !important;
    left: 50% !important;
    width: 60px !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 767px) {
  body.home-page .industry-tab-btn.is-active::after {
    right: auto !important;
    left: 50% !important;
    width: 48px !important;
    transform: translateX(-50%) !important;
  }
}

/* Let the solution details grow with the number of scenes. In particular,
   the fifth scene must push the partner rail down instead of painting over it. */
@media (min-width: 768px) {
  body.home-page .industry-detail-body {
    height: auto !important;
    min-height: 530px !important;
  }

  body.home-page .industry-detail-content {
    height: auto !important;
    min-height: 494px !important;
  }

  body.home-page .industry-scenes {
    height: auto !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
    align-content: start !important;
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item {
    flex: 0 0 auto !important;
    min-height: 36px !important;
  }

  body.home-page .industry-bottom-logo {
    flex: 0 0 60px !important;
    margin-top: 48px !important;
  }

  body.home-page .industry-detail-actions {
    flex: 0 0 auto !important;
  }
}

@media (max-width: 767px) {
  body.home-page .industry-scenes {
    height: auto !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
    align-content: start !important;
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item {
    flex: 0 0 auto !important;
  }

  body.home-page .industry-bottom-logo {
    flex: 0 0 60px !important;
    margin-top: 32px !important;
  }
}

/* Give each proof point room to breathe. The earlier negative tracking made
   values such as “2000+家” visually run into the next column. */
@media (min-width: 768px) {
  body.home-page .statistics-scale-grid {
    column-gap: clamp(52px, 4vw, 88px) !important;
    row-gap: 34px !important;
  }

  body.home-page .statistics-scale-item .stat-number {
    gap: 8px !important;
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number__unit,
  body.home-page .statistics-scale-item .stat-number--single {
    letter-spacing: 0.02em !important;
  }

  body.home-page .statistics-scale-label {
    letter-spacing: 0.02em !important;
  }
}

@media (max-width: 767px) {
  body.home-page .statistics-scale-grid {
    column-gap: 24px !important;
  }

  body.home-page .statistics-scale-item .stat-number {
    gap: 6px !important;
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number__unit,
  body.home-page .statistics-scale-item .stat-number--single {
    letter-spacing: 0.01em !important;
  }
}

/* Desktop reference canvas: keep the solution card compact and stable while
   leaving enough room for a third scene row inside the fixed composition. */
@media (min-width: 768px) {
  body.home-page .industry-tabs-section > .content-wrapper,
  body.home-page .industry-tabs-container {
    width: min(1200px, calc(100vw - 48px)) !important;
    max-width: 1200px !important;
    margin-inline: auto !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper {
    padding-inline: 0 !important;
  }

  body.home-page .industry-detail-card {
    width: 100% !important;
    max-width: 1200px !important;
    height: 700px !important;
    max-height: 700px !important;
    margin-inline: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 24px clamp(42px, 4.2vw, 64px) 30px !important;
  }

  body.home-page .industry-detail-inner {
    height: 100% !important;
    gap: 18px !important;
  }

  body.home-page .industry-detail-body {
    height: 530px !important;
    min-height: 530px !important;
    padding-top: 0 !important;
  }

  body.home-page .industry-detail-content {
    height: 494px !important;
    min-height: 494px !important;
  }

  body.home-page .industry-scenes {
    min-height: 0 !important;
    margin-top: 18px !important;
    row-gap: 12px !important;
  }

  body.home-page .industry-bottom-logo {
    flex: 0 0 72px !important;
    height: 72px !important;
    margin-top: 24px !important;
    padding: 8px 12px !important;
  }

  body.home-page .industry-bottom-logo-item {
    height: 56px !important;
  }

  body.home-page .industry-bottom-logo-item img {
    max-height: 48px !important;
    transform: scale(1.35);
  }
}

@media (max-width: 767px) {
  body.home-page .industry-detail-card {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }
}

/* Final fixed coordinates for the desktop solution floor. */
@media (min-width: 768px) {
  body.home-page .industry-tabs-section {
    padding-bottom: 72px !important;
  }

  body.home-page .industry-detail-card {
    height: 720px !important;
    max-height: 720px !important;
    padding-bottom: 48px !important;
  }

  body.home-page .industry-detail-content {
    position: relative !important;
  }

  body.home-page .industry-bottom-logo {
    position: absolute !important;
    right: 0 !important;
    bottom: 64px !important;
    left: 0 !important;
    margin: 0 !important;
    z-index: 2;
  }

  body.home-page .industry-detail-actions {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 3;
  }

  body.home-page .statistics-scale-grid {
    width: 830px !important;
    max-width: none !important;
    grid-template-columns: repeat(4, 170px) !important;
    column-gap: 50px !important;
  }

  body.home-page .statistics-scale-item {
    width: 170px !important;
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number--single {
    font-size: 52px !important;
  }

  body.home-page .statistics-scale-item .stat-number__unit {
    font-size: 24px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.home-page .statistics-scale-grid {
    width: 390px !important;
    grid-template-columns: repeat(2, 170px) !important;
    column-gap: 50px !important;
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number--single {
    font-size: 44px !important;
  }
}

@media (max-width: 767px) {
  body.home-page .industry-tabs-section {
    padding-bottom: 48px !important;
  }

  body.home-page .industry-detail-content {
    position: relative !important;
  }
}

/* Reserve a complete third scene row before the fixed partner rail. The
   extra row uses the open space in the card instead of pushing into logos. */
@media (min-width: 768px) {
  body.home-page .industry-tabs-section {
    padding-bottom: 88px !important;
  }

  body.home-page .industry-detail-card {
    height: 800px !important;
    max-height: 800px !important;
  }

  body.home-page .industry-detail-body {
    height: 630px !important;
    min-height: 630px !important;
    align-items: flex-start !important;
  }

  body.home-page .industry-detail-content {
    height: 574px !important;
    min-height: 574px !important;
  }

  body.home-page .industry-scenes {
    min-height: 132px !important;
    grid-auto-rows: minmax(36px, auto) !important;
  }

  body.home-page .industry-bottom-logo {
    top: 420px !important;
    bottom: auto !important;
  }
}

/* Final reference composition: a fixed desktop design canvas. The reference
   uses a 1000px solution card, so keep these coordinates stable at desktop
   zoom levels instead of allowing the fluid layout to reflow each floor. */
@media (min-width: 768px) {
  body.home-page .industry-tabs-section {
    padding-top: 96px !important;
    padding-bottom: 80px !important;
    background: #f5f5f7 !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper,
  body.home-page .industry-tabs-container {
    width: 1000px !important;
    max-width: none !important;
    margin-inline: auto !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper {
    padding-inline: 0 !important;
  }

  body.home-page .industry-tabs-heading {
    display: block !important;
    margin: 0 0 48px !important;
    text-align: center !important;
  }

  body.home-page .industry-tabs-heading__title {
    max-width: 1000px !important;
    margin: 0 !important;
    color: #17191d !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    line-height: 1.16 !important;
    letter-spacing: -0.035em !important;
    text-align: center !important;
    white-space: pre-line !important;
  }

  body.home-page .industry-detail-card {
    width: 1000px !important;
    max-width: none !important;
    height: 380px !important;
    max-height: 380px !important;
    box-sizing: border-box !important;
    padding: 16px 32px 22px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 14px 30px rgba(36, 52, 78, 0.08) !important;
  }

  body.home-page .industry-detail-inner {
    display: flex !important;
    height: 100% !important;
    padding: 0 !important;
    gap: 26px !important;
  }

  body.home-page .industry-tabs-nav-shell {
    display: block !important;
    flex: 0 0 42px !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
  }

  body.home-page .industry-tabs-nav-arrow {
    display: none !important;
  }

  body.home-page .industry-tabs-nav {
    width: 71% !important;
    height: 42px !important;
    margin-inline: auto !important;
    overflow: hidden !important;
    border-bottom-color: rgba(83, 100, 124, 0.18) !important;
  }

  body.home-page .industry-tab-btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
  }

  body.home-page .industry-tab-btn + .industry-tab-btn::before {
    top: 0 !important;
    bottom: 0 !important;
  }

  body.home-page .industry-tab-btn.is-active::after {
    right: auto !important;
    bottom: -1px !important;
    left: 50% !important;
    width: 32px !important;
    transform: translateX(-50%) !important;
  }

  body.home-page .industry-detail-body {
    display: grid !important;
    grid-template-columns: 274px minmax(0, 1fr) !important;
    gap: 48px !important;
    align-items: start !important;
    height: 274px !important;
    min-height: 274px !important;
    padding: 0 !important;
  }

  body.home-page .industry-detail-image {
    width: 274px !important;
    height: 274px !important;
    max-width: none !important;
    max-height: 274px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.home-page .industry-detail-content {
    position: relative !important;
    display: flex !important;
    height: 274px !important;
    min-height: 274px !important;
    min-width: 0 !important;
    overflow: visible !important;
    gap: 0 !important;
  }

  body.home-page .industry-detail-title {
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    color: #182235 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.home-page .industry-detail-sub {
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 12px 0 0 !important;
    color: #596b84 !important;
    font-size: 12.5px !important;
    line-height: 1.6 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
  }

  body.home-page .industry-scenes {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: 32px !important;
    gap: 8px 10px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 10px 0 0 !important;
    align-content: start !important;
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 0 !important;
    color: #35445b !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item img {
    flex: 0 0 24px !important;
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
  }

  body.home-page .industry-scenes-item span {
    min-width: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }

  body.home-page .industry-bottom-logo {
    position: absolute !important;
    right: 0 !important;
    bottom: 42px !important;
    left: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
    height: 44px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 6px 8px !important;
    gap: 8px !important;
    border-radius: 999px !important;
    background: #f1f2f4 !important;
    overflow: visible !important;
  }

  body.home-page .industry-bottom-logo-item {
    display: grid !important;
    flex: 1 1 0 !important;
    width: auto !important;
    height: 32px !important;
    min-width: 0 !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  body.home-page .industry-bottom-logo-item img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 28px !important;
    transform: scale(1.45) !important;
    transform-origin: center !important;
    filter: none !important;
    opacity: 1 !important;
  }

  body.home-page .industry-detail-actions {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.home-page .industry-detail-actions .btn-outline,
  body.home-page .industry-detail-actions .btn-primary {
    min-width: 76px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 30px !important;
  }

  body.home-page .statistics-scale-section {
    height: auto !important;
    min-height: 182px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #000 !important;
  }

  body.home-page .statistics-scale-section::before {
    display: none !important;
  }

  body.home-page .statistics-scale-inner {
    position: relative !important;
    display: block !important;
    width: 1200px !important;
    max-width: none !important;
    min-height: 182px !important;
    box-sizing: border-box !important;
    margin-inline: auto !important;
    padding: 24px 300px 18px 64px !important;
  }

  body.home-page .statistics-scale-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 140px) !important;
    grid-auto-rows: minmax(58px, auto) !important;
    width: 650px !important;
    max-width: none !important;
    align-content: start !important;
    gap: 20px 30px !important;
  }

  body.home-page .statistics-scale-item {
    display: block !important;
    width: 140px !important;
    min-width: 0 !important;
    min-height: 58px !important;
    text-align: left !important;
  }

  body.home-page .statistics-scale-item .stat-number {
    display: flex !important;
    align-items: baseline !important;
    gap: 4px !important;
    min-height: 36px !important;
    white-space: nowrap !important;
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number--single {
    color: #00b6ca !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.01em !important;
  }

  body.home-page .statistics-scale-item .stat-number__unit {
    color: #00b6ca !important;
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: 0.01em !important;
  }

  body.home-page .statistics-scale-label {
    max-width: 140px !important;
    min-height: 2.4em !important;
    margin-top: 6px !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.02em !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.home-page .statistics-scale-image {
    position: absolute !important;
    right: 24px !important;
    bottom: 0 !important;
    z-index: 2 !important;
    width: auto !important;
    height: 210px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: right bottom !important;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28)) !important;
  }
}

/* Same-scale reference pass: the comparison capture renders the desktop
   canvas at roughly 80%, so the reference geometry maps to a 1260px card.
   Keep the floor compact above the fold and anchor every child to the card. */
@media (min-width: 768px) {
  body.home-page .industry-tabs-section {
    padding-top: 28px !important;
    padding-bottom: 100px !important;
    background: #f5f5f7 !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper,
  body.home-page .industry-tabs-container {
    width: 1260px !important;
    max-width: none !important;
    margin-inline: auto !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper {
    padding-inline: 0 !important;
  }

  body.home-page .industry-tabs-heading {
    display: none !important;
  }

  body.home-page .industry-detail-card {
    width: 1260px !important;
    max-width: none !important;
    height: 476px !important;
    max-height: 476px !important;
    box-sizing: border-box !important;
    padding: 24px 42px 26px !important;
    border-radius: 22px !important;
  }

  body.home-page .industry-detail-inner {
    height: 100% !important;
    gap: 28px !important;
  }

  body.home-page .industry-tabs-nav-shell {
    flex-basis: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
  }

  body.home-page .industry-tabs-nav {
    height: 54px !important;
  }

  body.home-page .industry-tab-btn {
    min-height: 54px !important;
    font-size: 15px !important;
  }

  body.home-page .industry-tab-btn.is-active::after {
    width: 38px !important;
  }

  body.home-page .industry-detail-body {
    grid-template-columns: 344px minmax(0, 1fr) !important;
    gap: 60px !important;
    height: 344px !important;
    min-height: 344px !important;
  }

  body.home-page .industry-detail-image {
    width: 344px !important;
    height: 344px !important;
    max-height: 344px !important;
    border-radius: 16px !important;
  }

  body.home-page .industry-detail-content {
    height: 344px !important;
    min-height: 344px !important;
  }

  body.home-page .industry-detail-title {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }

  body.home-page .industry-detail-sub {
    margin-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  body.home-page .industry-scenes {
    gap: 8px 18px !important;
    margin-top: 12px !important;
  }

  body.home-page .industry-scenes-item {
    min-height: 34px !important;
    font-size: 13px !important;
  }

  body.home-page .industry-scenes-item img {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
  }

  body.home-page .industry-bottom-logo {
    bottom: 68px !important;
    height: 56px !important;
    padding: 8px 10px !important;
    gap: 10px !important;
    z-index: 3 !important;
  }

  body.home-page .industry-bottom-logo-item {
    height: 40px !important;
    padding-inline: 8px !important;
  }

  body.home-page .industry-bottom-logo-item img {
    max-height: 36px !important;
  }

  body.home-page .industry-detail-actions .btn-outline,
  body.home-page .industry-detail-actions .btn-primary {
    min-width: 96px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding-inline: 16px !important;
    font-size: 14px !important;
    line-height: 40px !important;
  }

  body.home-page .statistics-scale-section {
    min-height: 230px !important;
  }

  body.home-page .statistics-scale-inner {
    min-height: 230px !important;
    padding: 28px 120px 18px 64px !important;
  }

  body.home-page .statistics-scale-grid {
    grid-auto-rows: minmax(72px, auto) !important;
    gap: 26px 30px !important;
  }

  body.home-page .statistics-scale-item {
    min-height: 72px !important;
  }

  body.home-page .statistics-scale-item .stat-number__value,
  body.home-page .statistics-scale-item .stat-number--single {
    font-size: 42px !important;
  }

  body.home-page .statistics-scale-item .stat-number__unit {
    font-size: 20px !important;
  }

  body.home-page .statistics-scale-label {
    font-size: 13px !important;
  }

  body.home-page .statistics-scale-image {
    height: 270px !important;
  }
}

/* Final visibility and type pass: clear the stale absolute top coordinate
   from the third-scene experiment, then give units and labels their own
   visual hierarchy. */
@media (min-width: 768px) {
  body.home-page .industry-bottom-logo {
    top: auto !important;
    right: 0 !important;
    bottom: 68px !important;
    left: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 8 !important;
  }

  body.home-page .industry-bottom-logo-item {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    overflow: visible !important;
  }

  body.home-page .industry-bottom-logo-item img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    object-fit: contain !important;
    transform: none !important;
  }

  body.home-page .statistics-scale-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-item .stat-number {
    display: flex !important;
    align-items: baseline !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-item .stat-number__unit {
    flex: 0 0 auto !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
  }

  body.home-page .statistics-scale-label {
    display: block !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-image {
    height: 300px !important;
  }
}

/* Continuous page surface: neutral floors share one quiet canvas, while
   branded floors keep their own center background and only soften the edges. */
body.home-page {
  --home-flow-surface: #f6f7fb;
  --home-flow-edge: #edf2ff;
}

body.home-page :is(.demo-cards-section, .product-cards-section,
  .industry-tabs-section, .news-section, .voice-footer-section) {
  background: var(--home-flow-surface) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.6),
    inset 0 -1px rgba(218, 226, 245, 0.22);
}

body.home-page :is(.demo-cards-section, .product-cards-section,
  .industry-tabs-section, .news-section, .voice-footer-section)::before {
  background: linear-gradient(180deg, rgba(237, 242, 255, 0.72) 0%,
      rgba(246, 247, 251, 0) 18%, rgba(246, 247, 251, 0) 82%,
      rgba(237, 242, 255, 0.5) 100%) !important;
  opacity: 1 !important;
}

/* Preserve the partner floor's existing color identity; these two transparent
   edge layers only blend it into the shared neutral surface above and below. */
body.home-page .partner-carousel-section {
  background: linear-gradient(180deg, var(--home-flow-surface) 0%,
      rgba(246, 247, 251, 0) 13%, rgba(246, 247, 251, 0) 86%,
      var(--home-flow-surface) 100%),
    linear-gradient(135deg, #c9f2ff 0%, #e2e1ff 56%, #fff1c9 100%) !important;
}

/* Keep the black proof band black, but reduce the hard seam against its
   neighboring light floors with a restrained outer shadow. */
body.home-page .statistics-scale-section {
  box-shadow: 0 -24px 34px rgba(30, 47, 86, 0.08),
    0 24px 34px rgba(30, 47, 86, 0.12) !important;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page :is(.demo-cards-section, .product-cards-section,
    .industry-tabs-section, .partner-carousel-section, .news-section,
    .voice-footer-section, .statistics-scale-section) {
    scroll-behavior: auto !important;
  }
}

/* Final reference pass: give the neutral floors a soft, continuous atmosphere
   and restore the partner wall's earlier breathing room.  The hero, partner
   gradient, statistics band, CTA artwork and footer artwork remain on their
   own existing surfaces. */
body.home-page main {
  background:
    radial-gradient(circle at 50% 4%, rgba(216, 226, 255, 0.26), transparent 34%),
    linear-gradient(180deg, #f0f3fc 0%, #f8f9fc 42%, #f2f5fb 100%) !important;
}

body.home-page :is(.demo-cards-section, .product-cards-section,
  .industry-tabs-section, .news-section, .voice-footer-section) {
  background:
    linear-gradient(180deg, rgba(235, 241, 255, 0.5) 0%,
      rgba(246, 247, 251, 0.96) 28%, rgba(242, 245, 252, 0.96) 100%) !important;
}

body.home-page :is(.demo-cards-section, .product-cards-section,
  .industry-tabs-section, .news-section, .voice-footer-section)::before {
  background: linear-gradient(180deg, rgba(220, 230, 255, 0.44) 0%,
      rgba(246, 247, 251, 0) 21%, rgba(246, 247, 251, 0) 78%,
      rgba(222, 232, 255, 0.3) 100%) !important;
}

@media (min-width: 768px) {
  body.home-page .partner-carousel-section {
    min-height: 456px !important;
    padding-top: 72px !important;
    padding-bottom: 84px !important;
  }

  body.home-page .partner-carousel-heading {
    padding-bottom: 36px !important;
  }

  body.home-page .partner-carousel {
    min-height: 218px !important;
    padding: 8px 0 !important;
    gap: 14px !important;
  }

  body.home-page .partner-carousel-row {
    min-height: 70px !important;
  }
}

/* Floor rhythm pass: keep the same content widths, but make each module read
   as a deliberate stop in the page journey.  The branded artwork surfaces
   are untouched; only the breathing room and hairline boundaries move. */
@media (min-width: 768px) {
  body.home-page .demo-cards-section {
    padding-top: 64px !important;
    padding-bottom: 88px !important;
  }

  body.home-page .demo-cards-header {
    margin-bottom: 36px !important;
  }

  body.home-page .product-cards-section {
    padding-top: 72px !important;
    padding-bottom: 88px !important;
  }

  body.home-page .product-cards-heading {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
  }

  body.home-page .industry-tabs-section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  body.home-page .statistics-scale-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body.home-page .partner-carousel-section {
    border-top: 1px solid rgba(153, 170, 205, 0.16);
    border-bottom: 1px solid rgba(153, 170, 205, 0.16);
  }

  body.home-page .news-section {
    padding-top: 80px !important;
    padding-bottom: 72px !important;
  }

  body.home-page .news-section__title {
    margin-bottom: 40px !important;
  }

  body.home-page .voice-footer-section {
    padding-top: 56px !important;
  }
}

@media (max-width: 767px) {
  body.home-page .demo-cards-section,
  body.home-page .product-cards-section,
  body.home-page .industry-tabs-section,
  body.home-page .news-section {
    padding-top: 64px !important;
    padding-bottom: 72px !important;
  }

  body.home-page .demo-cards-header,
  body.home-page .product-cards-heading {
    margin-bottom: 28px !important;
  }

  body.home-page .partner-carousel-section {
    min-height: 0 !important;
    padding-top: 72px !important;
    padding-bottom: 76px !important;
  }

  body.home-page .news-section__title {
    margin-bottom: 32px !important;
  }

  body.home-page .voice-footer-section {
    padding-top: 48px !important;
  }
}

/* Align an orphan metric when the configured data contains a ninth item.
   Grid auto-placement otherwise leaves that item at the far-left edge of a
   new row, which is especially noticeable beside the centered partner wall. */
@media (min-width: 1200px) {
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    text-align: center !important;
  }
}

/* Keep a partial final stats row on the same four-column axis as the rows
   above. The row belongs to the stats grid, so it must not be shifted toward
   the page center when the number of items is not divisible by four. */
@media (min-width: 1200px) {
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1),
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 1),
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 2),
  body.home-page .statistics-scale-item:nth-last-child(3):nth-child(4n + 1),
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 2),
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 3) {
    left: 0 !important;
    inset-inline-start: 0 !important;
  }
}

/* Mobile industry card: return every part to normal document flow so the
   image, copy, scenes, logos and actions all fit inside the card. */
@media (max-width: 767px) {
  body.home-page .industry-tabs-section {
    padding: 48px 0 56px !important;
    overflow: visible !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper,
  body.home-page .industry-tabs-container,
  body.home-page .industry-detail-card {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper {
    padding-inline: 16px !important;
  }

  body.home-page .industry-tabs-container {
    overflow: visible !important;
  }

  body.home-page .industry-detail-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 16px 24px !important;
    border-radius: 20px !important;
  }

  body.home-page .industry-detail-inner {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    gap: 0 !important;
  }

  body.home-page .industry-tabs-nav-shell {
    flex: 0 0 auto !important;
    width: calc(100% + 32px) !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 -16px !important;
    overflow: hidden !important;
  }

  body.home-page .industry-tabs-nav {
    width: 100% !important;
    max-width: none !important;
    height: 58px !important;
    min-height: 58px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  body.home-page .industry-detail-body {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-items: stretch !important;
    gap: 20px !important;
    padding: 24px 0 0 !important;
    overflow: visible !important;
  }

  body.home-page .industry-detail-image {
    display: block !important;
    grid-column: 1 !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    border-radius: 16px !important;
  }

  body.home-page .industry-detail-content {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    gap: 0 !important;
    position: static !important;
  }

  body.home-page .industry-detail-title {
    margin: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 24px !important;
    line-height: 1.28 !important;
  }

  body.home-page .industry-detail-sub {
    margin: 12px 0 0 !important;
    max-width: 100% !important;
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  body.home-page .industry-scenes {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 20px 0 0 !important;
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    min-height: 34px !important;
    white-space: normal !important;
    overflow: visible !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  body.home-page .industry-scenes-item span {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.home-page .industry-bottom-logo {
    position: static !important;
    display: flex !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 60px !important;
    min-height: 60px !important;
    margin: 24px 0 0 !important;
    padding: 8px !important;
    gap: 6px !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    border-radius: 16px !important;
  }

  body.home-page .industry-bottom-logo-item {
    position: static !important;
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 8px !important;
  }

  body.home-page .industry-bottom-logo-item img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    transform: none !important;
    object-fit: contain !important;
  }

  body.home-page .industry-detail-actions {
    position: static !important;
    display: flex !important;
    width: 100% !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  body.home-page .industry-detail-actions :is(.btn-outline, .btn-primary) {
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    padding-inline: 10px !important;
    font-size: 14px !important;
    line-height: 44px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px), (max-width: 767px) {
  body.home-page .statistics-scale-item:last-child:nth-child(2n + 1) {
    display: grid !important;
    justify-items: center !important;
    align-content: start !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-item:last-child:nth-child(2n + 1) .stat-number,
  body.home-page .statistics-scale-item:last-child:nth-child(2n + 1) .statistics-scale-label {
    width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px), (max-width: 767px) {
  body.home-page .statistics-scale-item:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    text-align: center !important;
  }
}

/* Let the partner wall breathe across the same broad canvas as the page. The
   track still owns its max-content width and keeps its marquee loop; only the
   visible viewport and its edge fade are widened. */
@media (min-width: 768px) {
  body.home-page .partner-carousel-section > .partner-carousel-heading,
  body.home-page .partner-carousel {
    width: min(calc(100% - 64px), 1600px) !important;
    max-width: 1600px !important;
  }

  body.home-page .partner-carousel-row {
    width: 100% !important;
  }
}

/* The stats grid intentionally leaves room for the portrait on the right,
   so centering the orphan inside that grid still leaves it left of the page
   axis. Move only the final ninth metric to the shared page center. */
@media (min-width: 1200px) {
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1) {
    position: relative !important;
    left: 211px !important;
    transform: none !important;
  }

  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1),
  body.home-page .statistics-scale-item:last-child:nth-child(2n + 1) {
    display: grid !important;
    justify-items: center !important;
    align-content: start !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1) .stat-number,
  body.home-page .statistics-scale-item:last-child:nth-child(2n + 1) .stat-number,
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1) .statistics-scale-label,
  body.home-page .statistics-scale-item:last-child:nth-child(2n + 1) .statistics-scale-label {
    width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body.home-page .partner-carousel-section > .partner-carousel-heading,
  body.home-page .partner-carousel {
    width: min(calc(100% - 48px), 1920px) !important;
    max-width: 1920px !important;
  }
}

/* Stable tail-row rules for any future stat count. Desktop keeps four fixed
   columns; a partial final row is centered as a group instead of starting at
   column one. The same 211px axis correction keeps that group aligned with
   the page-centered partner heading while the portrait keeps its reserved
   right-side space. */
@media (min-width: 1200px) {
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    left: 211px !important;
  }

  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 1) {
    grid-column: 2 !important;
    left: 211px !important;
  }

  body.home-page .statistics-scale-item:last-child:nth-child(4n + 2) {
    grid-column: 3 !important;
    left: 211px !important;
  }

  body.home-page .statistics-scale-item:nth-last-child(3):nth-child(4n + 1) {
    grid-column: 1 !important;
    left: 211px !important;
  }

  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 2) {
    grid-column: 2 !important;
    left: 211px !important;
  }

  body.home-page .statistics-scale-item:last-child:nth-child(4n + 3) {
    grid-column: 3 !important;
    left: 211px !important;
  }

  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 1),
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 2),
  body.home-page .statistics-scale-item:nth-last-child(3):nth-child(4n + 1),
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 2),
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 3) {
    position: relative !important;
    display: grid !important;
    justify-items: center !important;
    align-content: start !important;
    text-align: center !important;
  }

  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 1) .stat-number,
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 2) .stat-number,
  body.home-page .statistics-scale-item:nth-last-child(3):nth-child(4n + 1) .stat-number,
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 2) .stat-number,
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 3) .stat-number,
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 1) .statistics-scale-label,
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 2) .statistics-scale-label,
  body.home-page .statistics-scale-item:nth-last-child(3):nth-child(4n + 1) .statistics-scale-label,
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 2) .statistics-scale-label,
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 3) .statistics-scale-label {
    width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body.home-page .partner-carousel-section > .partner-carousel-heading,
  body.home-page .partner-carousel {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Final alignment guard: the stats remainder is positioned in the stats
   grid, never against the viewport/page center. */
@media (min-width: 1200px) {
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 1),
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 1),
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 2),
  body.home-page .statistics-scale-item:nth-last-child(3):nth-child(4n + 1),
  body.home-page .statistics-scale-item:nth-last-child(2):nth-child(4n + 2),
  body.home-page .statistics-scale-item:last-child:nth-child(4n + 3) {
    left: 0 !important;
    inset-inline-start: 0 !important;
  }
}

/* Mobile industry card: restore normal flow so no fixed desktop dimension can
   push the image off-canvas or hide the copy below a large blank area. */
@media (max-width: 767px) {
  body.home-page .industry-tabs-section {
    padding: 48px 0 56px !important;
    overflow: visible !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper,
  body.home-page .industry-tabs-container,
  body.home-page .industry-detail-card {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
  }

  body.home-page .industry-tabs-section > .content-wrapper {
    padding-inline: 16px !important;
  }

  body.home-page .industry-tabs-container {
    overflow: visible !important;
  }

  body.home-page .industry-detail-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 16px 24px !important;
    border-radius: 20px !important;
  }

  body.home-page .industry-detail-inner {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    gap: 0 !important;
  }

  body.home-page .industry-tabs-nav-shell {
    flex: 0 0 auto !important;
    width: calc(100% + 32px) !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 -16px !important;
    overflow: hidden !important;
  }

  body.home-page .industry-tabs-nav {
    width: 100% !important;
    max-width: none !important;
    height: 58px !important;
    min-height: 58px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  body.home-page .industry-detail-body {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-items: stretch !important;
    gap: 20px !important;
    padding: 24px 0 0 !important;
    overflow: visible !important;
  }

  body.home-page .industry-detail-image {
    display: block !important;
    grid-column: 1 !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    border-radius: 16px !important;
  }

  body.home-page .industry-detail-content {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    gap: 0 !important;
    position: static !important;
  }

  body.home-page .industry-detail-title {
    margin: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 24px !important;
    line-height: 1.28 !important;
  }

  body.home-page .industry-detail-sub {
    margin: 12px 0 0 !important;
    max-width: 100% !important;
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  body.home-page .industry-scenes {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 20px 0 0 !important;
    overflow: visible !important;
  }

  body.home-page .industry-scenes-item {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    min-height: 34px !important;
    white-space: normal !important;
    overflow: visible !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  body.home-page .industry-scenes-item span {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.home-page .industry-bottom-logo {
    position: static !important;
    display: flex !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 60px !important;
    min-height: 60px !important;
    margin: 24px 0 0 !important;
    padding: 8px !important;
    gap: 6px !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    border-radius: 16px !important;
  }

  body.home-page .industry-bottom-logo-item {
    position: static !important;
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 8px !important;
  }

  body.home-page .industry-bottom-logo-item img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    transform: none !important;
    object-fit: contain !important;
  }

  body.home-page .industry-detail-actions {
    position: static !important;
    display: flex !important;
    width: 100% !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  body.home-page .industry-detail-actions :is(.btn-outline, .btn-primary) {
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    padding-inline: 10px !important;
    font-size: 14px !important;
    line-height: 44px !important;
  }
}

/* ============================================================
   Hero premium pass
   1) 加宽文案栏、收敛标题字号 → 两行平衡断行，告别参差三行
   2) 入场编排：eyebrow → 标题 → 副标 → CTA → 数据条 依次浮现，
      挂 .swiper-slide-active，切页自动重播（对 loop 克隆稳健）
   3) 插画容器极轻浮动，增加「活」的质感
   全部尊重 prefers-reduced-motion
   ============================================================ */
@media (min-width: 768px) {
  body.home-page .hero-banner-slide-inner > .grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.92fr);
  }

  body.home-page .hero-banner-slide-inner h1 {
    font-size: clamp(2.4rem, 3.3vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }
}

body.home-page .hero-banner-rail-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes hero-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes hero-settle {
    from { opacity: 0; transform: scale(0.96) translateY(14px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  body.home-page .swiper-slide-active .hero-banner-slide-inner > .grid > div:first-child::before {
    animation: hero-fade 0.7s ease both;
  }
  body.home-page .swiper-slide-active .hero-banner-slide-inner h1 {
    animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
  }
  body.home-page .swiper-slide-active .hero-banner-slide-inner .text-base {
    animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  }
  body.home-page .swiper-slide-active .hero-banner-slide-inner .btn-primary {
    animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
  }
  body.home-page .swiper-slide-active .hero-banner-rail {
    animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
  }
  body.home-page .swiper-slide-active .hero-banner-image {
    animation: hero-settle 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }
}

/* ============================================================
   Hero premium pass 2
   - 标题改为 blur+rise 揭示，比纯位移更有质感
   - 数据条合并为单条玻璃栏 + 发丝分隔线（展示内容不变）
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-title-reveal {
    from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
  body.home-page .swiper-slide-active .hero-banner-slide-inner h1 {
    animation: hero-title-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
  }
}

@media (min-width: 768px) {
  body.home-page .hero-banner-rail {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    width: auto;
    margin-top: 28px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 12px 26px rgba(62, 88, 123, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  body.home-page .hero-banner-rail-card {
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 12px;
    padding: 10px 18px;
  }

  body.home-page .hero-banner-rail-card + .hero-banner-rail-card {
    border-left: 1px solid rgba(96, 117, 138, 0.16);
    border-radius: 0 12px 12px 0;
  }
}

/* ============================================================
   Hero premium pass 3
   - 去掉插画上下浮动（用户反馈）
   - 右下空位补一条沉底能力/信任信息行（沿用现有文案词，不新增夸大内容）
   ============================================================ */
@media (min-width: 768px) {
  body.home-page .hero-banner-slide-inner > .grid > div:first-child::after {
    content: '合规外呼  ·  双向加密防监听  ·  智能路由  ·  全国号码池';
    margin-top: 36px;
    color: #8494a7;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.home-page .swiper-slide-active .hero-banner-slide-inner > .grid > div:first-child::after {
    animation: hero-fade 0.8s ease 0.55s both;
  }
}

/* ============================================================
   Apple refinement — 克制背景 / 大而紧的标题 / 干净材质 / 即时按压
   参考 apple.com：留白 + 大字号负字距 + 干净表面 + 按压反馈
   ============================================================ */

/* 1) 背景降噪：去掉粒子与光 streak，柔化 blob，让首屏干净 */
body.home-page .hero-particle,
body.home-page .hero-light-streak {
  display: none;
}
body.home-page .hero-blob {
  opacity: 0.14;
  filter: blur(90px);
}
body.home-page .hero-bg-grid {
  opacity: 0.5;
}
body.home-page .home-bg-video {
  opacity: 0.5;
}

/* 2) 标题更大更紧（Apple 光学纪律），副标/eyebrow 用 Apple 灰 */
@media (min-width: 768px) {
  body.home-page .hero-banner-slide-inner h1 {
    font-size: clamp(2.75rem, 4.2vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 700;
    font-optical-sizing: auto;
  }
  body.home-page .hero-banner-slide-inner .text-base {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.6;
    color: #6e6e73;
  }
  body.home-page .hero-banner-slide-inner > .grid > div:first-child::before {
    color: #6e6e73;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
  }
}

/* 3) 即时按压反馈（pointer-down 就有回应） */
body.home-page .btn-primary,
body.home-page .btn-outline,
body.home-page .btn-white {
  transition: transform 120ms ease, background-color 200ms ease,
    box-shadow 200ms ease, color 200ms ease;
}
body.home-page .btn-primary:active,
body.home-page .btn-outline:active,
body.home-page .btn-white:active {
  transform: scale(0.97);
}

/* 4) 媒体卡：去掉橙/蓝色斑与发光，改为干净浅面 + 柔和投影 */
body.home-page .hero-banner-media {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
body.home-page .hero-banner-media::before {
  display: none;
}

/* 5) 数据条更轻：弱化玻璃、收紧投影 */
@media (min-width: 768px) {
  body.home-page .hero-banner-rail {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(62, 88, 123, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

/* ============================================================
   Hero pass 4 — 图文对换：标题/文案在左，插画在右（更贴近苹果常规构图）
   ============================================================ */
@media (min-width: 768px) {
  body.home-page .hero-banner-slide-inner > .grid {
    grid-template-areas: 'hero-copy hero-media';
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  }
}

/* ============================================================
   Hero pass 5 — 修复信任行被旧 content:none!important 屏蔽；收紧媒体卡空边
   ============================================================ */
@media (min-width: 768px) {
  body.home-page .hero-banner-slide-inner > .grid > div:first-child::after {
    content: '合规外呼  ·  双向加密防监听  ·  智能路由  ·  全国号码池' !important;
    display: block !important;
    width: auto;
    max-width: 100%;
    margin-top: 34px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    white-space: nowrap;
    color: #8494a7;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  body.home-page .hero-banner-slide-inner > .grid > .hero-banner-media {
    align-self: center;
    min-height: 0;
  }
  body.home-page .hero-banner-media .hero-banner-image {
    height: clamp(320px, 33vw, 470px);
    max-height: none;
  }
}

/* ============================================================
   试用弹窗：图形验证码合并到输入框同一行（左输入、右验证码）
   覆盖此前「强制堆叠」的 !important 规则
   ============================================================ */
body.home-page .trial-captcha-row {
  grid-template-columns: minmax(0, 1fr) 160px !important;
  align-items: stretch;
  gap: 10px;
}

body.home-page .trial-captcha-svg {
  width: 160px !important;
  min-width: 0 !important;
  height: 49px !important;
  min-height: 49px;
  border-radius: 12px;
}

/* 验证码 SVG 固有 130x40、内层 image 固定尺寸且无 viewBox，
   需把 svg 与内层 image 同时拉到 100% 才能嵌满框且不变形 */
body.home-page .trial-captcha-svg svg,
body.home-page .trial-captcha-svg svg image {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================
   试用弹窗 step1（关键词模式）：加大纵向节奏，把「下一步」顶下去，
   与「一句话输入」模式的按钮位置接近
   ============================================================ */
body.home-page .trial-keyword-fields {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

body.home-page .trial-keyword-field .trial-modal-label {
  margin-bottom: 6px;
}

body.home-page .trial-keyword-field .trial-modal-input {
  min-height: 52px;
  padding: 14px 16px;
}

/* ============================================================
   试用弹窗 step1：两种输入模式共用同一「下一步」且位置固定。
   表单设为固定最小高度的纵向 flex，按钮 margin-top:auto 钉底，
   使一句话 / 关键词两种模式的按钮 Y 完全一致
   ============================================================ */
@media (min-width: 560px) {
  body.home-page .trial-modal-card [x-show="step === 1"] form {
    display: flex;
    flex-direction: column;
    min-height: 440px;
  }
  body.home-page .trial-modal-card [x-show="step === 1"] form .trial-modal-submit {
    margin-top: auto;
  }
}
