:root {
  --black: #0d0e10;
  --graphite: #17191c;
  --ink: #111317;
  --muted: #6b737c;
  --paper: #f4f5f5;
  --white: #ffffff;
  --line: #dcdfe1;
  --blue: #1389ff;
  --orange: #ff7a1a;
  --shadow: 0 28px 80px rgba(13, 14, 16, 0.2);
  --surface-soft: #f7f8f6;
  --surface-metal: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(230, 234, 236, 0.78) 56%, rgba(247, 248, 246, 0.96));
  --surface-metal-border: rgba(13, 14, 16, 0.11);
  --surface-dark-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)), rgba(8, 10, 12, 0.84);
  --surface-dark-border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

section[id],
main[id] {
  scroll-margin-top: 82px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding: 0 clamp(16px, 4vw, 52px);
  color: var(--white);
  background: rgba(11, 12, 14, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.nav-cta,
.header-actions,
.language-control {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  gap: 8px;
  width: max-content;
  font-weight: 800;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.brand::after {
  content: none;
}

.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(202px, 17.28vw, 269px);
  height: 37px;
  object-fit: contain;
  padding: 0;
  filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--black);
  background: var(--white);
  border-radius: 5px;
}

.desktop-nav {
  gap: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.6px;
  font-weight: 650;
  flex-wrap: nowrap;
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav a:hover,
.nav-cta:hover {
  color: var(--white);
}

.header-actions {
  justify-self: end;
  gap: 12px;
}

.language-control {
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.language-control span {
  text-transform: uppercase;
}

.language-select {
  height: 38px;
  min-width: 118px;
  padding: 0 34px 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.8) 50%) calc(100% - 17px) 17px / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 50%, transparent 50%) calc(100% - 13px) 17px / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.08);
  appearance: none;
  cursor: pointer;
}

.language-select option {
  color: var(--ink);
  background: var(--white);
}

.nav-cta {
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.6px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

@media (max-width: 1360px) {
  .site-header {
    gap: 12px;
    padding-inline: clamp(16px, 2.6vw, 34px);
  }

  .desktop-nav {
    gap: 10px;
    font-size: 14px;
  }

  .brand-logo {
    width: clamp(190px, 15.6vw, 220px);
  }

  .header-actions {
    gap: 8px;
  }

  .desktop-language span {
    display: none;
  }

  .language-select {
    min-width: 106px;
    padding-inline: 10px 30px;
  }
}

.mobile-nav {
  position: fixed;
  z-index: 29;
  inset: 68px 0 auto 0;
  display: none;
  padding: 18px 24px 26px;
  color: var(--white);
  background: rgba(13, 14, 16, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav-group {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-group:last-of-type {
  border-bottom: 0;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
}

.mobile-main-link {
  color: var(--white);
  font-size: 18px;
  font-weight: 860;
}

.mobile-subnav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px 0 4px;
}

.mobile-sub-link {
  min-height: 42px;
  padding: 10px 11px !important;
  color: rgba(241, 245, 249, 0.78);
  font-size: 13px !important;
  font-weight: 720 !important;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow-wrap: anywhere;
}

.mobile-language {
  display: none;
  align-items: stretch;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-language .language-select {
  flex: 1;
  min-width: 0;
}

.campaign-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after,
.feature-media::after,
.sub-hero.visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -20%;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, rgba(19, 137, 255, 0.16) 50%, rgba(255, 122, 26, 0.12) 58%, transparent 72%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.1), transparent 24%);
  mix-blend-mode: screen;
  transform: translate3d(-16%, 0, 0) rotate(0.001deg);
  animation: liquidLight 12s ease-in-out infinite alternate;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.84;
  transform: scale(1.04);
  will-change: transform, filter;
  animation: heroPulse 6.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.hero-media::before,
.feature-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.56) 44%, rgba(8, 9, 11, 0.1)),
    linear-gradient(0deg, rgba(8, 9, 11, 0.62), rgba(8, 9, 11, 0.04) 48%);
}

.glyph-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, #000 54%, transparent 92%);
  animation: gridFlow 16s linear infinite;
}

.signal-rail {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 6vw, 84px);
  bottom: clamp(22px, 5vh, 54px);
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 8px;
  width: min(520px, calc(100vw - 36px));
}

.signal-rail span {
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.signal-rail span:nth-child(3) {
  color: var(--blue);
}

.signal-rail span:nth-child(4) {
  color: var(--orange);
}

.hero-copy-block {
  position: relative;
  z-index: 4;
  width: min(1040px, calc(100% - 40px));
  margin: 0 0 clamp(92px, 16vh, 148px) clamp(20px, 7vw, 92px);
}

.release-label,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.campaign-hero h1 {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(46px, 6.7vw, 96px);
  line-height: 0.95;
  font-weight: 900;
}

.campaign-line {
  max-width: 880px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.34;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.text-link:hover,
.product-card:hover {
  transform: translateY(-1px);
}

.button.light {
  color: var(--black);
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--black);
}

.button.full {
  width: 100%;
}

.editorial-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: clamp(82px, 8vw, 142px) max(32px, calc((100vw - 1920px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(315deg, rgba(19, 137, 255, 0.2), transparent 32%),
    linear-gradient(165deg, #07080a 0%, #15181d 48%, #050607 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.editorial-strip::before,
.editorial-strip::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.editorial-strip::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.46));
}

.editorial-strip::after {
  left: -16%;
  right: -16%;
  top: 50%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 241, 246, 0.4), rgba(19, 137, 255, 0.8), transparent);
  box-shadow: 0 0 34px rgba(19, 137, 255, 0.5);
  transform: rotate(-8deg);
  opacity: 0.72;
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.editorial-strip .section-kicker {
  color: #8fc9ff;
}

.strip-copy {
  display: grid;
  align-content: start;
}

.editorial-strip h2 {
  display: grid;
  gap: 10px;
  margin: 0;
  max-width: 620px;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.86;
  font-weight: 950;
}

.editorial-strip h2 span {
  color: rgba(255, 255, 255, 0.96);
}

.editorial-strip h2 strong {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, #ffffff 0%, #d7dde2 30%, #8f989f 58%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 18px 54px rgba(255, 255, 255, 0.14);
}

.offer-mark {
  width: max-content;
  margin-top: clamp(28px, 5vw, 62px);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-system {
  display: grid;
  gap: 22px;
}

.offer-lead {
  margin: 0;
  color: rgba(232, 237, 242, 0.78);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.58;
}

.offer-card-stack {
  display: grid;
  gap: 10px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 12, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--orange));
}

.offer-card span {
  color: #9ccfff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 24px 0 10px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
}

.offer-card p {
  margin: 0;
  color: rgba(232, 237, 242, 0.68);
  line-height: 1.55;
}

.offer-data-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.12);
}

.offer-data-rail span {
  min-width: 0;
  padding: 16px;
  color: rgba(235, 241, 246, 0.72);
  background: rgba(6, 7, 9, 0.74);
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.offer-data-rail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.shop-head h2,
.strategy-band h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1;
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.feature-panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.feature-media img,
.feature-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  will-change: transform, filter;
  animation: imageFloat 18s ease-in-out infinite alternate;
}

.feature-content {
  align-self: center;
  width: min(580px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(66px, 9vw, 112px) 0;
}

.feature-content h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
}

.memory-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.memory-points li {
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 17px;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  margin-top: 32px;
  padding-bottom: 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  font-weight: 900;
  transition: transform 180ms ease;
}

.feature-automation {
  background:
    linear-gradient(135deg, rgba(19, 137, 255, 0.16), transparent 35%),
    linear-gradient(315deg, rgba(255, 122, 26, 0.16), transparent 34%),
    var(--graphite);
}

.automation-visual {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 44%, rgba(19, 137, 255, 0.26), transparent 38%),
    radial-gradient(circle at 82% 72%, rgba(255, 122, 26, 0.22), transparent 32%);
}

.automation-burst {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(900px, 120%);
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: 0.94;
  filter: saturate(1.18) contrast(1.1);
  animation: automationBurstFloat 18s ease-in-out infinite alternate;
}

.automation-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 172px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 8%, rgba(67, 181, 255, 0.82) 18%, rgba(19, 137, 255, 0.18) 52%, transparent 72%);
  transform: translate(-50%, -50%);
  filter: blur(0.3px);
  box-shadow: 0 0 80px rgba(19, 137, 255, 0.45);
  animation: automationCorePulse 2.8s ease-in-out infinite;
}

.workflow-board {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(520px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: 32px 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.workflow-board span {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.workflow-board span:nth-child(3) {
  border-color: rgba(19, 137, 255, 0.52);
  color: #c7e4ff;
}

.workflow-board span:nth-child(5) {
  border-color: rgba(255, 122, 26, 0.58);
}

.shop-section,
.strategy-band,
.contact-band,
.site-footer {
  width: min(1920px, calc(100% - 64px));
  margin: 0 auto;
}

.shop-section {
  padding: clamp(78px, 10vw, 128px) 0;
}

.shop-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 310px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 16px 42px rgba(13, 14, 16, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card::before,
.detail-card::before,
.catalog-grid article::before,
.strategy-map article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(19, 137, 255, 0.08) 45%, rgba(255, 122, 26, 0.08) 55%, transparent 72%);
  transform: translateX(-120%);
  animation: cardSheen 9s ease-in-out infinite;
}

.product-card > *,
.detail-card > *,
.catalog-grid article > *,
.strategy-map article > * {
  position: relative;
  z-index: 1;
}

.product-card:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 22px 54px rgba(13, 14, 16, 0.12);
}

.product-type {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 52px 0 0;
  font-size: 26px;
  line-height: 1.08;
}

.product-card p {
  margin: 12px 0 28px;
  color: var(--muted);
  line-height: 1.55;
}

.product-card a {
  font-weight: 900;
}

.strategy-band {
  padding: clamp(78px, 10vw, 128px) 0;
  border-top: 1px solid var(--line);
}

.strategy-band h2 {
  width: min(760px, 100%);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.strategy-grid article {
  padding: 22px;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.strategy-grid span {
  color: var(--orange);
  font-weight: 950;
}

.strategy-grid h3 {
  margin: 42px 0 12px;
  font-size: 24px;
}

.strategy-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
  padding: clamp(78px, 10vw, 128px) 0;
  border-top: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.lead-form,
.assistant-panel,
.market-scan-card {
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
}

.lead-form,
.market-scan-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 46px rgba(13, 14, 16, 0.08);
}

.market-scan-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(19, 137, 255, 0.32), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(255, 122, 26, 0.24), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #07090c;
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.market-scan-card::after {
  content: "";
  position: absolute;
  inset: auto -24% 26% -24%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), rgba(19, 137, 255, 0.84), transparent);
  box-shadow: 0 0 34px rgba(19, 137, 255, 0.52);
  transform: rotate(-7deg);
}

.market-scan-card > * {
  position: relative;
  z-index: 1;
}

.market-scan-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
}

.market-scan-copy p:not(.release-label) {
  margin: 14px 0 0;
  color: rgba(235, 241, 246, 0.74);
  line-height: 1.58;
}

.market-scan-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.market-scan-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.market-scan-form input,
.market-scan-form select,
.assistant-form input {
  width: 100%;
  border: 1px solid rgba(13, 14, 16, 0.13);
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.market-scan-form input,
.market-scan-form select {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.market-scan-form select option {
  color: var(--white);
  background: #101317;
}

.market-scan-form .button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(19, 137, 255, 0.96), rgba(255, 122, 26, 0.86)),
    var(--blue);
  box-shadow: 0 14px 38px rgba(19, 137, 255, 0.24);
}

.market-scan-form .button.light:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 48px rgba(255, 122, 26, 0.22);
}

.lead-form input,
.lead-form select,
.market-scan-form input,
.market-scan-form select {
  height: 46px;
  padding: 0 12px;
}

.market-scan-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.market-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
}

.market-pipeline span {
  padding: 10px 8px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(6, 7, 9, 0.74);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.market-pipeline span.is-active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(19, 137, 255, 0.84), rgba(255, 122, 26, 0.72));
}

.market-report-output {
  display: block;
  min-height: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.48;
}

.market-report-output:not(:empty) {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.market-report-output strong {
  color: var(--white);
}

.market-report-output ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.lead-form textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
}

.form-output {
  min-height: 22px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1.28fr) minmax(310px, 0.52fr) minmax(300px, 0.5fr);
  align-items: start;
  gap: clamp(34px, 4.6vw, 78px);
  padding: clamp(54px, 6.2vw, 84px) clamp(28px, 3.4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px 8px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(19, 137, 255, 0.18), transparent 26%),
    radial-gradient(circle at 74% 24%, rgba(255, 122, 26, 0.1), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #050608;
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
  box-shadow: 0 -26px 90px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.09) 48%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%);
  opacity: 0.78;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-company > strong {
  display: block;
  color: #f6f8fa;
  font-size: clamp(27px, 2vw, 38px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p {
  margin: 13px 0 0;
  color: rgba(235, 241, 246, 0.68);
  max-width: 760px;
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.68;
}

.site-footer .footer-legal {
  color: #ffffff;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 850;
}

.footer-entity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.footer-entity div:first-child {
  grid-column: span 2;
}

.footer-entity div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.024)),
    rgba(8, 10, 12, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-entity dt {
  margin: 0 0 7px;
  color: rgba(235, 241, 246, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-entity dd {
  min-width: 0;
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 880;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-network {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-network > span {
  color: rgba(235, 241, 246, 0.62);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 14px 18px;
  justify-items: start;
  align-content: start;
  color: rgba(235, 241, 246, 0.72);
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 720;
}

.site-footer nav::before {
  content: "Site routes";
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(235, 241, 246, 0.52);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer nav a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

.site-footer nav a:hover {
  color: #ffffff;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 900;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.social-grid.compact {
  width: min(390px, 100%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
}

.social-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(13, 14, 16, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.58);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link-button {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(19, 137, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(19, 137, 255, 0.12), rgba(255, 122, 26, 0.12)),
    rgba(255, 255, 255, 0.72);
}

.social-icon {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-reddit {
  background: #ff4500;
}

.social-youtube {
  background: #ff0033;
}

.social-linkedin {
  background: #0a66c2;
}

.social-facebook {
  background: #1877f2;
}

.social-x,
.social-douyin,
.social-tiktok {
  background: #050608;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 74%, #515bd4);
}

.social-xiaohongshu {
  background: #ff2442;
}

.social-wechat-channels {
  background: #07c160;
}

.social-link strong,
.social-link small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.social-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-grid.compact .social-link {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 6px;
  padding: 9px;
  border-color: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(8, 10, 12, 0.68);
}

.social-grid.compact .social-icon {
  width: 44px;
  font-size: 12px;
}

.social-grid.compact .social-icon svg {
  width: 24px;
  height: 24px;
}

.social-grid.compact .social-link span:last-child {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.qr-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.qr-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(170, 182, 192, 0.2), transparent 32%),
    rgba(2, 3, 5, 0.78);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.qr-modal__panel {
  position: relative;
  width: min(92vw, 470px);
  max-height: min(86vh, 720px);
  display: grid;
  gap: 14px;
  padding: clamp(12px, 2.4vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(8, 10, 12, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.qr-modal.open .qr-modal__panel {
  transform: translateY(0) scale(1);
}

.qr-modal__panel img {
  width: 100%;
  max-height: calc(86vh - 112px);
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.qr-modal__panel p {
  margin: 0;
  color: rgba(235, 239, 243, 0.86);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

.qr-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(188, 196, 204, 0.86));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

#home {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(19, 137, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 42%, rgba(255, 122, 26, 0.12), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #030405;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

#home .shop-section,
#home .strategy-band,
#home .contact-band,
#home > .seo-faq-section,
#home .site-footer {
  position: relative;
  color: var(--white);
  border-top-color: rgba(255, 255, 255, 0.14);
}

#home .shop-section::before,
#home .strategy-band::before,
#home .contact-band::before,
#home > .seo-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 34%, rgba(255, 255, 255, 0.04) 62%, transparent),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.09), transparent 36%);
  opacity: 0.52;
}

#home .shop-section > *,
#home .strategy-band > *,
#home .contact-band > *,
#home > .seo-faq-section > *,
#home .site-footer > * {
  position: relative;
  z-index: 1;
}

#home .shop-head h2,
#home .strategy-band h2,
#home .contact-copy h2,
#home > .seo-faq-section h2 {
  color: transparent;
  background: linear-gradient(92deg, #ffffff, #e7edf2 42%, #8a939c 76%, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
}

#home .shop-head .section-kicker,
#home .strategy-band .section-kicker,
#home .contact-copy .release-label,
#home > .seo-faq-section .section-kicker {
  color: #7ddcff;
}

#home .product-card,
#home .strategy-grid article,
#home .lead-form,
#home .seo-faq-grid article,
#home .social-link,
#home .footer-entity div {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)),
    rgba(8, 10, 12, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 24px 78px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

#home .product-card:hover,
#home .strategy-grid article:hover,
#home .social-link:hover {
  border-color: rgba(19, 137, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 30px 92px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 122, 26, 0.12);
}

#home .product-card h3,
#home .strategy-grid h3,
#home .seo-faq-grid h3,
#home .footer-company > strong,
#home .site-footer .footer-legal,
#home .footer-entity dd,
#home .social-link strong {
  color: #f6f8fa;
}

#home .product-card p,
#home .strategy-grid p,
#home .contact-copy p,
#home .seo-faq-grid p,
#home .site-footer p,
#home .site-footer nav,
#home .footer-network > span,
#home .footer-entity dt,
#home .social-link small {
  color: rgba(235, 241, 246, 0.68);
}

#home .product-type {
  color: #7ddcff;
}

#home .product-card a,
#home .contact-lines a {
  color: #ffffff;
}

#home .strategy-grid span {
  color: var(--orange);
}

#home .lead-form label {
  color: rgba(255, 255, 255, 0.88);
}

#home .lead-form input,
#home .lead-form select,
#home .lead-form textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#home .lead-form input::placeholder,
#home .lead-form textarea::placeholder {
  color: rgba(235, 241, 246, 0.45);
}

#home .lead-form select option {
  color: var(--white);
  background: #101317;
}

#home .lead-form .button.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 137, 255, 0.96), rgba(255, 122, 26, 0.86)),
    var(--blue);
  box-shadow: 0 14px 38px rgba(19, 137, 255, 0.24);
}

#home .form-output {
  color: rgba(235, 241, 246, 0.82);
}

#home .site-footer {
  padding-top: 54px;
  border-top-color: rgba(255, 255, 255, 0.14);
}

.whatsapp-link {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 6px;
  color: var(--white);
  background: #1fa855;
}

.subpage {
  width: min(1920px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 68px;
}

.sub-hero {
  min-height: 72svh;
  display: grid;
  align-content: end;
  padding: clamp(92px, 12vw, 150px) 0 clamp(64px, 9vw, 108px);
  border-bottom: 1px solid var(--line);
}

.sub-hero.compact {
  min-height: 52svh;
}

.sub-hero.visual {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.sub-hero.visual > * {
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.94;
}

.sub-hero p:not(.release-label) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.sub-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  will-change: transform, filter;
  animation: imageFloat 20s ease-in-out infinite alternate;
}

.detail-grid,
.catalog-grid,
.strategy-map {
  display: grid;
  gap: 14px;
  padding: clamp(54px, 8vw, 92px) 0;
}

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

.detail-card,
.catalog-grid article,
.strategy-map article {
  position: relative;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
  overflow: hidden;
}

.detail-card span,
.catalog-grid span,
.strategy-map span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-card h2,
.catalog-grid h2,
.strategy-map h2,
.conversion-panel h2,
.process-section h2 {
  margin: 44px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
}

.detail-card p,
.catalog-grid p,
.strategy-map p,
.conversion-panel p,
.process-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
}

.conversion-panel {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

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

.catalog-grid article {
  display: grid;
  align-content: space-between;
  min-height: 320px;
}

.catalog-grid h2 {
  font-size: 26px;
}

.catalog-grid a {
  margin-top: 28px;
  font-weight: 950;
}

.case-section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(72px, 8vw, 128px) max(32px, calc((100vw - 1920px) / 2));
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.044) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(0, 200, 117, 0.16), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(19, 137, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #08090b 0%, #15181c 48%, #2d3136 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.case-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 32%, rgba(255, 255, 255, 0.05) 62%, transparent),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.14), transparent 34%);
  opacity: 0.72;
}

.case-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, #00c875, #0aae72, #00c875);
  box-shadow: 0 0 34px rgba(0, 200, 117, 0.26);
}

.case-section-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  margin-bottom: 28px;
}

.case-section-head h2 {
  margin: 0;
  max-width: 940px;
  color: rgba(246, 248, 249, 0.96);
  background: none;
  overflow-wrap: anywhere;
  font-size: clamp(38px, 4.4vw, 72px);
  line-height: 1;
}

.case-section-head h2 strong {
  color: #00c875;
  font-weight: 950;
}

.case-grid,
.case-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.case-motion-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  margin: 36px 0 22px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.case-motion-marquee span {
  flex: 0 0 auto;
  padding: 14px 42px 14px 0;
  color: rgba(235, 241, 246, 0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  animation: caseMotionMarquee 28s linear infinite;
}

.case-subhead {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 24px 0 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.case-subhead.all {
  margin-top: 54px;
}

.case-subhead span {
  color: rgba(246, 248, 249, 0.94);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-subhead p {
  max-width: 520px;
  margin: 0;
  color: rgba(235, 241, 246, 0.66);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.case-motion-rail {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  min-height: clamp(520px, 58vw, 700px);
  padding: 10px 0 30px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(0, 158, 116, 0.7) rgba(13, 14, 16, 0.08);
  cursor: grab;
}

.case-rail-shell {
  position: relative;
  z-index: 1;
  --case-rail-control-space: clamp(54px, 6vw, 78px);
  --case-rail-arrow-size: clamp(42px, 5vw, 58px);
  padding-inline: var(--case-rail-control-space);
}

.case-rail-shell::before,
.case-rail-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 26px;
  width: var(--case-rail-control-space, 72px);
  pointer-events: none;
}

.case-rail-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.96), rgba(8, 9, 11, 0));
}

.case-rail-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 9, 11, 0.96), rgba(8, 9, 11, 0));
}

.case-rail-arrow {
  position: absolute;
  z-index: 4;
  top: min(40%, 180px);
  display: grid;
  place-items: center;
  width: var(--case-rail-arrow-size, 58px);
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(13, 14, 16, 0.22);
  border-radius: 999px;
  color: #101315;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(13, 14, 16, 0.16);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0.82;
  transform: translateY(-50%);
  transition: opacity 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.case-rail-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.case-rail-arrow-prev {
  left: max(4px, calc((var(--case-rail-control-space, 72px) - var(--case-rail-arrow-size, 58px)) / 2));
}

.case-rail-arrow-prev::before {
  transform: translateX(3px) rotate(-45deg);
}

.case-rail-arrow-next {
  right: max(4px, calc((var(--case-rail-control-space, 72px) - var(--case-rail-arrow-size, 58px)) / 2));
}

.case-rail-arrow-next::before {
  transform: translateX(-3px) rotate(135deg);
}

.case-rail-arrow:hover,
.case-rail-arrow:focus-visible {
  opacity: 1;
  border-color: rgba(0, 158, 116, 0.58);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) scale(1.04);
}

.case-rail-arrow:disabled {
  opacity: 0.24;
  cursor: default;
}

.case-motion-rail.is-auto-gliding .case-card {
  animation: caseCardPulse 2.8s ease-in-out infinite;
  animation-delay: calc(var(--case-index, 0) * -0.18s);
}

.case-motion-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.case-motion-rail::-webkit-scrollbar {
  height: 8px;
}

.case-motion-rail::-webkit-scrollbar-track {
  background: rgba(13, 14, 16, 0.08);
}

.case-motion-rail::-webkit-scrollbar-thumb {
  background: rgba(0, 158, 116, 0.7);
  border-radius: 999px;
}

.case-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(13, 14, 16, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #eef1f3;
}

.case-motion-rail .case-card {
  flex: 0 0 clamp(280px, 31vw, 430px);
  align-self: start;
  min-height: 520px;
  border-color: rgba(13, 14, 16, 0.12);
  background: #eef1f3;
  scroll-snap-align: start;
  box-shadow: 0 18px 42px rgba(13, 14, 16, 0.12);
  transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
}

.case-motion-rail .case-card:nth-child(2n) {
  margin-top: 58px;
}

.case-motion-rail .case-card:nth-child(3n) {
  margin-top: 28px;
}

.case-motion-rail .case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 78px rgba(13, 14, 16, 0.18), 0 0 0 1px rgba(0, 158, 116, 0.14);
}

.case-library-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 8px;
}

.case-library-grid .case-card {
  min-height: 100%;
  border-color: rgba(13, 14, 16, 0.1);
  background: #eef1f3;
  box-shadow: 0 12px 32px rgba(13, 14, 16, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.case-library-grid .case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 158, 116, 0.42);
  box-shadow: 0 24px 64px rgba(13, 14, 16, 0.16), 0 0 0 1px rgba(0, 158, 116, 0.12);
}

.case-search-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(22px, 3.6vw, 58px);
  margin-top: clamp(54px, 7vw, 96px);
  padding: clamp(28px, 3.6vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 0 0, rgba(0, 200, 117, 0.22), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(19, 137, 255, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #090b0d;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.case-search-map > div:first-child {
  position: sticky;
  top: 110px;
  align-self: start;
}

.case-search-map span {
  color: #7ddcff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-search-map h3 {
  margin: 26px 0 18px;
  font-size: clamp(36px, 4vw, 68px);
  line-height: 0.98;
}

.case-search-map p {
  max-width: 520px;
  margin: 0;
  color: rgba(235, 241, 246, 0.72);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.72;
}

.case-search-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.case-search-chip-grid a {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.case-search-chip-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 117, 0.48);
  background:
    linear-gradient(135deg, rgba(0, 200, 117, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.06);
}

.case-search-chip-grid strong {
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.12;
}

.case-search-chip-grid span,
.case-search-chip-grid small {
  overflow: hidden;
  color: rgba(235, 241, 246, 0.62);
  line-height: 1.34;
}

.case-search-chip-grid span {
  text-transform: none;
}

.case-search-chip-grid small {
  display: -webkit-box;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-card a {
  display: grid;
  min-height: 100%;
}

.case-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9ecec;
}

.case-thumb-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 28px);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.82), rgba(70, 76, 82, 0.52)),
    rgba(9, 11, 13, 0.62);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.case-thumb-label strong,
.case-thumb-label span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-thumb-label strong {
  font-size: clamp(18px, 1.35vw, 28px);
  font-weight: 950;
  line-height: 1.02;
}

.case-thumb-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(11px, 0.74vw, 14px);
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.case-motion-rail .case-thumb {
  aspect-ratio: 16 / 10;
}

.case-library-grid .case-thumb {
  aspect-ratio: 16 / 9.4;
}

.case-thumb img,
.case-detail-media img,
.case-media-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(224, 228, 230, 0.94)),
    #eef0f0;
}

.case-section .case-thumb img {
  object-fit: cover;
  background: #edf0ef;
}

.case-thumb video,
.case-detail-media video,
.case-media-grid video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-thumb img,
.case-thumb video {
  transition: transform 420ms ease, filter 420ms ease;
}

.case-motion-rail .case-thumb img,
.case-motion-rail .case-thumb video {
  animation: caseImageMotion 12s ease-in-out infinite alternate;
  animation-delay: calc(var(--case-index, 0) * -1.4s);
}

.case-card:hover .case-thumb img,
.case-card:hover .case-thumb video {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.case-card:hover .case-thumb-label {
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.9), rgba(92, 98, 106, 0.62)),
    rgba(9, 11, 13, 0.72);
}

.case-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: rgba(13, 14, 16, 0.08);
}

.case-progress span {
  display: block;
  height: 100%;
  background: #00c875;
  box-shadow: 0 0 18px rgba(0, 200, 117, 0.36);
}

.case-card-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}

.case-motion-rail .case-card-copy {
  min-height: 270px;
  padding: 22px;
  background: #eef1f3;
}

.case-library-grid .case-card-copy {
  min-height: 250px;
  gap: 12px;
  padding: 18px;
  background: #eef1f3;
}

.case-project-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.case-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 28%),
    #101315;
  font-size: 17px;
  font-weight: 950;
}

.case-title-block {
  min-width: 0;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #008c68;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.case-badge::before {
  content: "";
  width: 13px;
  aspect-ratio: 1;
  border: 3px solid #00c875;
  border-radius: 4px;
  transform: rotate(45deg);
}

.case-title-block small {
  display: block;
  margin-top: 5px;
  color: rgba(13, 14, 16, 0.58);
  font-size: 13px;
  line-height: 1.2;
}

.case-cn-title {
  margin: 7px 0 0;
  color: #101315;
  font-size: clamp(17px, 1.05vw, 21px);
  font-weight: 950;
  line-height: 1.12;
}

.case-bookmark {
  position: relative;
  width: 16px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid rgba(13, 14, 16, 0.58);
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}

.case-bookmark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(13, 14, 16, 0.58);
  border-bottom: 2px solid rgba(13, 14, 16, 0.58);
  background: #eef1f3;
  transform: translateX(-50%) rotate(45deg);
}

.case-meta span,
.case-media-grid figcaption {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-card-copy h3 {
  margin: 6px 0 0;
  color: #090b0d;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.08;
}

.case-library-grid .case-card-copy h3 {
  font-size: clamp(18px, 1.18vw, 23px);
  line-height: 1.12;
}

.case-card-copy p {
  margin: 0;
  color: rgba(13, 14, 16, 0.68);
  font-size: 16px;
  line-height: 1.54;
}

.case-card-copy .case-cn-intro {
  padding-top: 2px;
  color: rgba(13, 14, 16, 0.86);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 760;
  line-height: 1.48;
}

.case-card-copy .case-en-intro {
  color: rgba(13, 14, 16, 0.6);
  font-size: clamp(13px, 0.82vw, 16px);
  line-height: 1.48;
}

.case-library-grid .case-card-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.case-library-grid .case-card-copy .case-cn-intro {
  min-height: 66px;
  -webkit-line-clamp: 3;
}

.case-library-grid .case-card-copy .case-en-intro {
  min-height: 58px;
  -webkit-line-clamp: 3;
}

.case-project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  align-items: center;
  margin-top: auto;
  padding-top: 3px;
  color: rgba(13, 14, 16, 0.76);
  font-size: 13px;
  line-height: 1.25;
}

.case-project-stats strong {
  font-weight: 950;
}

.case-clock {
  position: relative;
  width: 16px;
  aspect-ratio: 1;
  border: 2px solid rgba(13, 14, 16, 0.62);
  border-radius: 999px;
}

.case-clock::before,
.case-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 5px;
  background: rgba(13, 14, 16, 0.62);
  transform-origin: 50% 0;
}

.case-clock::before {
  transform: translate(-50%, -85%);
}

.case-clock::after {
  transform: translate(-50%, -15%) rotate(90deg);
}

.case-detail {
  width: min(1920px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 68px;
}

.case-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: calc(100svh - 68px);
  padding: clamp(42px, 6vw, 82px) 0;
}

.case-detail-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
}

.case-detail-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.94;
}

.case-detail-copy > p,
.case-story p {
  color: var(--muted);
  line-height: 1.7;
}

.case-meta {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.case-meta strong {
  font-size: 24px;
}

.case-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.case-bilingual-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(46px, 7vw, 82px) 0;
  border-top: 1px solid var(--line);
}

.case-bilingual-intro article {
  min-height: 320px;
  padding: clamp(24px, 2.4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 80px rgba(0, 0, 0, 0.22);
}

.case-bilingual-intro span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-bilingual-intro h2 {
  margin: clamp(34px, 4vw, 56px) 0 18px;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1;
}

.case-bilingual-intro p {
  margin: 0;
  color: rgba(235, 241, 246, 0.72);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.62;
}

.case-story h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.98;
}

.case-highlights {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.case-highlights li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.case-gallery {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.case-media-grid figure {
  margin: 0;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.case-media-grid figure > div {
  aspect-ratio: 4 / 3;
  background: var(--black);
}

.case-media-grid .case-long-figure {
  grid-column: 1 / -1;
  padding: clamp(10px, 1.4vw, 18px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 8% 0%, rgba(19, 137, 255, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    #08090b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 90px rgba(0, 0, 0, 0.28);
}

.case-media-grid .case-long-figure > div {
  aspect-ratio: auto;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    #111316;
}

.case-media-grid img.case-long-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: 50% 0;
  background: #f3f4f2;
}

.case-source-figure {
  grid-column: 1 / -1;
}

.case-source-link {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(13, 14, 16, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 228, 232, 0.92)),
    #f4f5f5;
}

.case-source-link span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-source-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.15;
}

.case-media-grid figcaption {
  padding: 14px;
  color: var(--ink);
  line-height: 1.45;
  text-transform: none;
}

.process-section {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.process-section h2 {
  margin-top: 0;
}

.process-section ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.process-section li {
  padding: 24px;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.process-section span {
  color: var(--orange);
  font-weight: 950;
}

.process-section strong {
  display: block;
  margin: 42px 0 12px;
  font-size: 24px;
}

.workflow-detail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(54px, 8vw, 92px) 0;
}

.workflow-detail div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: var(--graphite);
  font-size: 22px;
  font-weight: 950;
}

.workflow-detail span {
  display: block;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.strategy-map {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trade-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.trade-video {
  display: grid;
  gap: 12px;
}

.trade-video video,
.trade-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: var(--black);
}

.trade-video p,
.trade-copy p,
.trade-deals p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trade-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 6vw, 92px);
  line-height: 0.95;
}

.trade-deals {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

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

.trade-deal-card {
  overflow: hidden;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.trade-deal-card a {
  display: block;
  height: 100%;
}

.trade-deal-media {
  aspect-ratio: 4 / 3;
  background: var(--black);
}

.trade-deal-media img,
.trade-deal-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trade-deal-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.trade-deal-copy > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trade-deal-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.trade-deal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.trade-deal-copy dl {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
}

.trade-deal-copy dl div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.trade-deal-copy dt,
.trade-deal-copy dd {
  margin: 0;
}

.trade-deal-copy dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-deal-copy dd {
  font-weight: 850;
}

.case-study-section,
.seo-faq-section {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.case-study-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 52px);
}

.case-study-head h2,
.seo-faq-section h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(38px, 5.5vw, 86px);
  line-height: 0.96;
}

.case-study-head p:not(.section-kicker) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.growth-case-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015) 38%),
    var(--graphite);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.growth-case-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.growth-case-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--black);
}

.growth-case-media img,
.growth-case-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.growth-case-card:hover .growth-case-media img,
.growth-case-card:hover .growth-case-media video {
  transform: scale(1.08);
  filter: contrast(1.08) saturate(1.08);
}

.growth-case-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.growth-case-kicker,
.growth-case-tags span {
  color: #c8d0d8;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-case-copy > strong {
  width: max-content;
  color: var(--orange);
  font-size: 44px;
  line-height: 0.9;
}

.growth-case-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.04;
}

.growth-case-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.growth-case-copy dl {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
}

.growth-case-copy dl div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.growth-case-copy dt,
.growth-case-copy dd {
  margin: 0;
}

.growth-case-copy dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.growth-case-copy dd {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 780;
}

.growth-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.growth-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.growth-case-tags.large {
  margin-top: 24px;
}

.growth-case-tags.large span {
  color: var(--ink);
  border-color: var(--surface-metal-border);
  background: var(--surface-metal);
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.seo-faq-grid:has(article:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-faq-grid article {
  padding: clamp(24px, 2.3vw, 36px);
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.seo-faq-grid h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(22px, 1.9vw, 34px);
  line-height: 1.12;
}

.seo-faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.65;
}

.motion-subpage .seo-faq-section {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.motion-subpage .seo-faq-grid article {
  position: relative;
  min-height: clamp(230px, 18vw, 330px);
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(19, 137, 255, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.026)),
    #080a0d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 70px rgba(0, 0, 0, 0.28);
}

.motion-subpage .seo-faq-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), rgba(255, 255, 255, 0.78), var(--orange));
}

.motion-subpage .seo-faq-grid h3 {
  max-width: 860px;
  margin-bottom: clamp(18px, 2vw, 28px);
  color: #f6f8fa;
  font-size: clamp(26px, 2.25vw, 42px);
  line-height: 1.02;
}

.motion-subpage .seo-faq-grid p {
  max-width: 880px;
  color: rgba(235, 241, 246, 0.74);
  font-size: clamp(18px, 1.18vw, 22px);
  line-height: 1.58;
}

.geo-audience-section,
.geo-question-section,
.geo-service-section,
.geo-facts-section {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.geo-profile-grid,
.geo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.geo-profile-card,
.geo-service-grid article {
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--graphite);
}

.geo-profile-card span,
.geo-question-list span,
.geo-service-grid span,
.geo-facts-section dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-profile-card h2,
.geo-question-list h2,
.geo-service-grid h2,
.geo-facts-section h2 {
  margin: 12px 0 16px;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.04;
}

.geo-profile-card p,
.geo-service-grid p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.62;
}

.geo-profile-card .memory-points {
  margin-top: 22px;
}

.geo-question-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.geo-question-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.42fr) minmax(0, 0.34fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.geo-question-list h2 {
  margin-top: 0;
}

.geo-question-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.geo-service-grid article {
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 122, 26, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    var(--graphite);
}

.geo-service-grid a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--orange);
  font-weight: 900;
}

.geo-facts-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
}

.geo-facts-section dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.geo-facts-section dl div {
  padding: 22px;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.geo-facts-section dd {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 850;
  line-height: 1.2;
}

.crowdfunding-intro,
.crowdfunding-deliverables,
.crowdfunding-roadmap,
.crowdfunding-risks,
.crowdfunding-question-section {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.crowdfunding-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.crowdfunding-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 7vw, 106px);
  line-height: 0.9;
}

.crowdfunding-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.crowdfunding-stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.crowdfunding-stage-grid article {
  min-height: 280px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    var(--graphite);
}

.crowdfunding-stage-grid span {
  color: var(--orange);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.crowdfunding-stage-grid h2 {
  margin: 44px 0 14px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

.crowdfunding-stage-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.58;
}

.crowdfunding-risks {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
}

.crowdfunding-risks h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.95;
}

.crowdfunding-risks ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crowdfunding-risks li {
  padding: 22px;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.crowdfunding-risks strong {
  display: block;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.crowdfunding-risks p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.china-build-intro,
.china-build-differentiators,
.china-build-supply,
.china-build-path,
.china-build-question-section {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.china-build-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.china-build-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 7vw, 108px);
  line-height: 0.88;
}

.china-build-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.supply-node-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.supply-node-card {
  display: grid;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(19, 137, 255, 0.28), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    var(--graphite);
}

.supply-node-card span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supply-node-card h2 {
  margin: 56px 0 14px;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.02;
}

.supply-node-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.62;
}

.supply-node-card strong {
  align-self: end;
  margin-top: 26px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.planning-intro,
.planning-command,
.planning-modules,
.planning-stages,
.planning-verticals,
.planning-deliverables,
.planning-question-section {
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.planning-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.planning-intro h2 {
  margin: 12px 0 0;
  color: transparent;
  background: linear-gradient(92deg, #ffffff, #d9dde0 48%, #7f878f 72%, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(42px, 7vw, 108px);
  line-height: 0.88;
}

.planning-intro > p {
  margin: 0;
  color: rgba(235, 241, 246, 0.74);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.planning-command {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.planning-command h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 78px);
  line-height: 0.95;
}

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

.planning-command-grid span {
  min-height: 124px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 950;
  text-align: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(19, 137, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.018)),
    #08090b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.planning-command-grid span:nth-child(2n) {
  background:
    radial-gradient(circle at 20% 82%, rgba(255, 122, 26, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    #111316;
}

.planning-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.planning-module-card {
  position: relative;
  min-height: 540px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.018)),
    #050608;
}

.planning-module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 64px);
  opacity: 0.42;
  transform: translateX(-100%);
  animation: cardSheen 10s ease-in-out infinite;
}

.planning-module-card > * {
  position: relative;
  z-index: 1;
}

.planning-module-card > span,
.planning-vertical-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.planning-module-card h2 {
  margin: 52px 0 14px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
}

.planning-module-card p {
  margin: 0;
  color: rgba(235, 241, 246, 0.72);
  line-height: 1.62;
}

.planning-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.planning-mini-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.planning-mini-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
}

.planning-mini-grid .memory-points {
  margin: 0;
}

.planning-mini-grid .memory-points li {
  color: rgba(235, 241, 246, 0.72);
  font-size: 14px;
}

.planning-module-card em {
  display: block;
  margin-top: 24px;
  color: #f2f5f7;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.45;
}

.planning-verticals {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
}

.planning-verticals h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.95;
}

.planning-vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.planning-vertical-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    #090b0d;
}

.planning-vertical-grid h2 {
  margin: 38px 0 12px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.02;
}

.planning-vertical-grid p {
  margin: 0;
  color: rgba(235, 241, 246, 0.68);
  line-height: 1.58;
}

.planning-vertical-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.45;
}

#home > .seo-faq-section {
  width: min(1920px, calc(100% - 64px));
  margin-inline: auto;
}

.growth-case-detail .case-detail-media img {
  object-fit: cover;
}

.workflow-visual-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.workflow-visual-showcase h2 {
  margin: 12px 0 18px;
  color: transparent;
  background: linear-gradient(92deg, #ffffff, #d9dde0 48%, #8b939c 74%, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 68px);
  line-height: 1;
  text-wrap: balance;
}

.workflow-visual-showcase p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(235, 241, 246, 0.7);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.workflow-visual-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(19, 137, 255, 0.22), transparent 34%),
    #050608;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.workflow-visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.13) 46%, transparent 68%);
  transform: translateX(-120%);
  animation: cardSheen 9s ease-in-out infinite;
}

.workflow-visual-media img,
.workflow-visual-media video,
.motion-subpage .sub-hero.visual img,
.trade-video img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.motion-subpage .sub-hero.visual img {
  background:
    radial-gradient(circle at 76% 16%, rgba(19, 137, 255, 0.2), transparent 34%),
    #050608;
}

.case-motion-rail .case-card,
.case-library-grid .case-card,
.case-motion-rail .case-card-copy,
.case-library-grid .case-card-copy {
  background:
    linear-gradient(145deg, rgba(248, 250, 250, 0.96), rgba(224, 229, 233, 0.9) 58%, rgba(245, 247, 248, 0.98)),
    #eef1f3;
}

.case-bookmark::after {
  background: #eef1f3;
}

.case-source-link,
.case-disclaimer {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 122, 26, 0.16), transparent 28%),
    var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 70px rgba(0, 0, 0, 0.24);
}

.case-source-link strong {
  color: #f4f7fa;
}

.case-media-grid .case-long-figure {
  background:
    radial-gradient(circle at 8% 0%, rgba(19, 137, 255, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    #08090b;
}

.case-media-grid .case-long-figure > div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    #111316;
}

.case-disclaimer {
  padding: 16px 18px;
  color: var(--ink);
  border-left: 4px solid var(--orange);
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.growth-output-story {
  align-items: start;
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 clamp(54px, 8vw, 92px);
}

.contact-directory article {
  padding: 24px;
  border: 1px solid var(--surface-metal-border);
  border-radius: 8px;
  background: var(--surface-metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(13, 14, 16, 0.055);
}

.contact-directory span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-directory a {
  display: block;
  margin-top: 34px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-band.standalone {
  width: 100%;
  padding-top: clamp(54px, 8vw, 92px);
}

.motion-subpage,
.case-detail {
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding-top: 68px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 4%, rgba(19, 137, 255, 0.18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #030405;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.motion-subpage .sub-hero,
.motion-subpage .motion-card-rail,
.motion-subpage .conversion-panel,
.motion-subpage .process-section,
.motion-subpage .trade-showcase,
.motion-subpage .trade-deals,
.motion-subpage .workflow-visual-showcase,
.motion-subpage .automation-learning-section,
.motion-subpage .crawler-playbook-section,
.motion-subpage .data-cleaning-section,
.motion-subpage .automation-glossary-section,
.motion-subpage .case-study-section,
.motion-subpage .seo-faq-section,
.motion-subpage .geo-audience-section,
.motion-subpage .geo-question-section,
.motion-subpage .geo-service-section,
.motion-subpage .geo-facts-section,
.motion-subpage .crowdfunding-intro,
.motion-subpage .crowdfunding-deliverables,
.motion-subpage .crowdfunding-roadmap,
.motion-subpage .crowdfunding-risks,
.motion-subpage .crowdfunding-question-section,
.motion-subpage .china-build-intro,
.motion-subpage .china-build-differentiators,
.motion-subpage .china-build-supply,
.motion-subpage .china-build-path,
.motion-subpage .china-build-question-section,
.motion-subpage .planning-intro,
.motion-subpage .planning-command,
.motion-subpage .planning-modules,
.motion-subpage .planning-stages,
.motion-subpage .planning-verticals,
.motion-subpage .planning-deliverables,
.motion-subpage .planning-question-section,
.motion-subpage .contact-band.standalone,
.case-detail > section {
  width: min(1920px, calc(100% - 64px));
  margin-inline: auto;
}

.motion-subpage .sub-hero {
  position: relative;
  min-height: calc(100svh - 68px);
  align-content: end;
  padding: clamp(88px, 8vw, 128px) 0 clamp(46px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.motion-subpage .sub-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 137, 255, 0.8), transparent 46%, rgba(255, 122, 26, 0.64));
}

.motion-subpage .sub-hero h1 {
  max-width: 1080px;
  color: transparent;
  background: linear-gradient(92deg, #ffffff, #e7edf2 44%, #8c949b 78%, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(52px, 6.8vw, 104px);
  line-height: 0.92;
  text-wrap: balance;
}

.motion-subpage .sub-hero p:not(.release-label),
.case-detail-copy > p,
.case-story p {
  color: rgba(235, 241, 246, 0.72);
}

.motion-subpage .sub-hero.visual {
  overflow: hidden;
}

.motion-subpage .sub-hero.visual img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--black);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.subpage-motion-strip {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.subpage-motion-strip span {
  flex: 0 0 auto;
  padding: 14px 44px 14px 0;
  color: rgba(235, 241, 246, 0.58);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  animation: caseMotionMarquee 28s linear infinite;
}

.motion-subpage .motion-card-rail {
  display: flex;
  grid-template-columns: none;
  gap: 1px;
  padding: clamp(38px, 6vw, 76px) 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.46) rgba(255, 255, 255, 0.08);
  cursor: grab;
}

.motion-subpage .motion-card-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.motion-subpage .motion-card-rail::-webkit-scrollbar {
  height: 8px;
}

.motion-subpage .motion-card-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.motion-subpage .motion-card-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.motion-subpage .motion-card-rail > article,
.motion-subpage .motion-card-rail > div {
  flex: 0 0 clamp(280px, 30vw, 420px);
  min-height: 360px;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 12, 0.82);
  box-shadow: none;
}

.motion-subpage .motion-card-rail > article:nth-child(2n),
.motion-subpage .motion-card-rail > div:nth-child(2n) {
  margin-top: 34px;
}

.motion-subpage .motion-card-rail > article:nth-child(3n),
.motion-subpage .motion-card-rail > div:nth-child(3n) {
  margin-top: 16px;
}

.motion-subpage .detail-card,
.motion-subpage .catalog-grid article,
.motion-subpage .strategy-map article,
.motion-subpage .contact-directory article,
.motion-subpage .trade-deal-card {
  background: var(--surface-dark-glass);
  border-color: var(--surface-dark-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 80px rgba(0, 0, 0, 0.22);
}

.motion-subpage .detail-card h2,
.motion-subpage .catalog-grid h2,
.motion-subpage .strategy-map h2,
.motion-subpage .contact-directory a,
.motion-subpage .trade-deal-copy h3,
.motion-subpage .workflow-detail div {
  color: var(--white);
}

.motion-subpage .detail-card p,
.motion-subpage .catalog-grid p,
.motion-subpage .strategy-map p,
.motion-subpage .trade-deal-copy p,
.motion-subpage .trade-video p,
.motion-subpage .trade-copy p,
.motion-subpage .trade-deals p,
.motion-subpage .conversion-panel p,
.motion-subpage .process-section p {
  color: rgba(235, 241, 246, 0.68);
}

.motion-subpage .detail-card li {
  color: rgba(255, 255, 255, 0.84);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.motion-subpage .workflow-detail div {
  display: grid;
  align-content: space-between;
  font-size: clamp(24px, 3vw, 40px);
}

.motion-subpage .detail-card,
.motion-subpage .workflow-detail div,
.motion-subpage .automation-learn-card,
.motion-subpage .crawler-playbook-grid article,
.motion-subpage .data-cleaning-grid article {
  overflow-wrap: anywhere;
}

.motion-subpage .conversion-panel,
.motion-subpage .process-section,
.motion-subpage .trade-showcase,
.motion-subpage .trade-deals {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.motion-subpage .process-section li {
  color: var(--white);
  background: var(--surface-dark-glass);
  border-color: var(--surface-dark-border);
}

.motion-subpage .button.dark {
  color: var(--black);
  background: var(--surface-metal);
}

.motion-subpage .contact-band.standalone {
  color: var(--white);
}

.motion-subpage .contact-band.standalone .lead-form {
  color: var(--white);
  border-color: var(--surface-dark-border);
  background: var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 24px 80px rgba(0, 0, 0, 0.28);
}

.motion-subpage .contact-band.standalone .lead-form label {
  color: rgba(235, 241, 246, 0.86);
}

.motion-subpage .contact-band.standalone .lead-form input,
.motion-subpage .contact-band.standalone .lead-form select,
.motion-subpage .contact-band.standalone .lead-form textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.motion-subpage .contact-band.standalone .lead-form select option {
  color: var(--ink);
  background: var(--surface-soft);
}

.case-detail {
  padding-inline: 0;
}

.case-detail-hero,
.case-bilingual-intro,
.case-story,
.case-gallery,
.case-detail .seo-faq-section,
.case-detail .conversion-panel {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.case-detail-media {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.4);
}

.case-highlights li {
  color: rgba(255, 255, 255, 0.86);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.case-media-grid figure {
  color: var(--white);
  background: rgba(8, 10, 12, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
}

.case-media-grid figcaption {
  color: rgba(255, 255, 255, 0.78);
}

.case-detail .seo-faq-grid article {
  color: var(--white);
  border-color: var(--surface-dark-border);
  background:
    radial-gradient(circle at 82% 12%, rgba(19, 137, 255, 0.22), transparent 32%),
    var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 80px rgba(0, 0, 0, 0.22);
}

.case-detail .seo-faq-grid h3 {
  color: #f6f8fa;
}

.case-detail .seo-faq-grid p {
  color: rgba(235, 241, 246, 0.72);
}

.assistant-widget {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
}

.assistant-toggle {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 16px 40px rgba(13, 14, 16, 0.28);
  font-weight: 950;
  cursor: pointer;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: none;
  width: min(360px, calc(100vw - 40px));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.assistant-panel.open {
  display: block;
}

.assistant-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: var(--black);
}

.assistant-close {
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.assistant-log {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
  padding: 14px;
  background: rgba(247, 248, 246, 0.86);
}

.assistant-log p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 7px;
  background: var(--surface-metal);
  color: var(--ink);
  line-height: 1.45;
}

.assistant-log p.user {
  background: rgba(19, 137, 255, 0.13);
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 12px;
  background: rgba(247, 248, 246, 0.88);
  border-top: 1px solid var(--surface-metal-border);
}

.assistant-form input {
  height: 42px;
  padding: 0 12px;
}

.assistant-form button {
  border: 0;
  border-radius: 5px;
  color: var(--white);
  background: var(--black);
  cursor: pointer;
}

@keyframes imageDrift {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
    filter: saturate(1) contrast(1);
  }
  45% {
    transform: scale(1.075) translate3d(-1.6%, 0.8%, 0);
    filter: saturate(1.06) contrast(1.04);
  }
  100% {
    transform: scale(1.1) translate3d(1.2%, -0.8%, 0);
    filter: saturate(1.02) contrast(1.02);
  }
}

@keyframes heroPulse {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
    filter: saturate(1) contrast(1) brightness(0.96);
  }
  18% {
    transform: scale(1.075) translate3d(0, -0.9%, 0);
    filter: saturate(1.06) contrast(1.04) brightness(1.03);
  }
  34% {
    transform: scale(1.052) translate3d(0.35%, 0.25%, 0);
    filter: saturate(1.02) contrast(1.02) brightness(0.98);
  }
  58% {
    transform: scale(1.09) translate3d(-0.45%, -0.65%, 0);
    filter: saturate(1.07) contrast(1.05) brightness(1.04);
  }
  100% {
    transform: scale(1.04) translate3d(0, 0, 0);
    filter: saturate(1) contrast(1) brightness(0.96);
  }
}

@keyframes imageFloat {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
    filter: saturate(1) contrast(1);
  }
  50% {
    transform: scale(1.07) translate3d(1.4%, -1%, 0);
    filter: saturate(1.08) contrast(1.03);
  }
  100% {
    transform: scale(1.045) translate3d(-1.2%, 1.2%, 0);
    filter: saturate(1.03) contrast(1.02);
  }
}

@keyframes liquidLight {
  0% {
    transform: translate3d(-18%, 4%, 0) skewX(-8deg);
    opacity: 0.2;
  }
  45% {
    opacity: 0.52;
  }
  100% {
    transform: translate3d(18%, -4%, 0) skewX(-8deg);
    opacity: 0.32;
  }
}

@keyframes gridFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 72px 72px;
  }
}

@keyframes cardSheen {
  0%,
  72% {
    transform: translateX(-120%);
    opacity: 0;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes logoGlassFlow {
  0%,
  62% {
    transform: translateX(-70%) skewX(-10deg);
    opacity: 0;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(70%) skewX(-10deg);
    opacity: 0;
  }
}

@keyframes automationBurstFloat {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(-1deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08) rotate(1.4deg);
  }
}

@keyframes automationCorePulse {
  0%,
  100% {
    opacity: 0.74;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes caseMotionMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes caseImageMotion {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
    filter: saturate(1) contrast(1);
  }
  52% {
    transform: scale(1.09) translate3d(-1.6%, 0.8%, 0);
    filter: saturate(1.12) contrast(1.05);
  }
  100% {
    transform: scale(1.05) translate3d(1.2%, -1.1%, 0);
    filter: saturate(1.04) contrast(1.02);
  }
}

@keyframes caseCardPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(7px);
  }
}

@media (max-width: 1020px) {
  .product-grid,
  .case-grid,
  .case-media-grid,
  .trade-deal-grid,
  .case-study-grid,
  .seo-faq-grid,
  .seo-faq-grid:has(article:nth-child(2):last-child),
  .geo-profile-grid,
  .geo-service-grid,
  .crowdfunding-stage-grid,
  .crowdfunding-risks ol,
  .supply-node-grid,
  .planning-module-grid,
  .planning-command-grid,
  .planning-vertical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-library-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-inline: 24px;
  }

  .site-footer nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
  }

  .social-grid.compact {
    width: min(460px, 100%);
  }

  .footer-entity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-entity div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-language {
    display: flex;
  }

  .editorial-strip,
  .feature-panel,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-data-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel {
    min-height: auto;
  }

  .feature-content {
    padding: 70px 0;
  }

  .feature-automation .feature-content {
    order: 1;
  }

  .automation-visual {
    order: 2;
    min-height: 560px;
  }

  .workflow-board {
    order: 2;
    margin-bottom: 70px;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero.visual,
  .detail-grid,
  .catalog-grid,
  .process-section ol,
  .workflow-detail,
  .strategy-map,
  .contact-directory,
  .case-section-head,
  .case-study-head,
  .case-detail-hero,
  .case-bilingual-intro,
  .case-story,
  .case-search-map,
  .workflow-visual-showcase,
  .trade-showcase,
  .geo-question-list article,
  .geo-facts-section,
  .crowdfunding-intro,
  .crowdfunding-risks,
  .china-build-intro,
  .planning-intro,
  .planning-command,
  .planning-verticals {
    grid-template-columns: 1fr;
  }

  .case-detail-hero {
    min-height: auto;
  }

  .case-section {
    width: 100%;
    margin-left: 0;
  }

  .case-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-search-map > div:first-child {
    position: static;
  }

  .case-subhead {
    align-items: start;
  }

  .contact-copy {
    position: static;
  }
}

/* Language QA hardening: prevent translated CJK and long GEO questions from overflowing cards */
[data-no-translate],
.notranslate {
  unicode-bidi: isolate;
}

:where(.motion-subpage, .page-answers, .site-footer, #home, .page-contact) :where(h1, h2, h3, p, li, a, span, strong, small, summary, dd) {
  min-width: 0;
}

:where(.motion-subpage, .page-answers) :where(
  .sub-hero,
  .crowdfunding-intro,
  .crowdfunding-risks,
  .china-build-intro,
  .planning-intro,
  .planning-command,
  .planning-verticals,
  .geo-question-list article,
  .geo-profile-card,
  .geo-service-grid article,
  .seo-faq-grid article,
  .planning-module-card,
  .planning-vertical-grid article,
  .automation-learn-card,
  .crawler-playbook-grid article,
  .data-cleaning-grid article,
  .automation-glossary-list details
) {
  min-width: 0;
  overflow: hidden;
}

:where(.motion-subpage, .page-answers) :where(
  .crowdfunding-intro h2,
  .crowdfunding-risks h2,
  .china-build-intro h2,
  .planning-intro h2,
  .planning-command h2,
  .planning-verticals h2,
  .case-section-head h2,
  .geo-question-list h2,
  .geo-profile-card h2,
  .geo-service-grid h2,
  .seo-faq-grid h3,
  .planning-module-card h2,
  .planning-vertical-grid h2,
  .automation-learning-head h2,
  .crawler-playbook-section h2,
  .data-cleaning-section h2,
  .automation-glossary-section h2,
  .automation-learn-card h2,
  .crawler-playbook-grid h3,
  .data-cleaning-grid h3,
  .automation-glossary-list summary
) {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  line-break: strict;
}

html[lang="zh"] :where(.motion-subpage, .page-answers) :where(h1, h2, h3, summary),
html[lang="ja"] :where(.motion-subpage, .page-answers) :where(h1, h2, h3, summary),
html[lang="ko"] :where(.motion-subpage, .page-answers) :where(h1, h2, h3, summary) {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  text-wrap: balance;
}

html[lang="zh"] :where(.crowdfunding-intro h2, .china-build-intro h2, .planning-intro h2),
html[lang="ja"] :where(.crowdfunding-intro h2, .china-build-intro h2, .planning-intro h2),
html[lang="ko"] :where(.crowdfunding-intro h2, .china-build-intro h2, .planning-intro h2) {
  font-size: clamp(38px, 4.4vw, 72px) !important;
  line-height: 1.16 !important;
}

html[lang="zh"] :where(.crowdfunding-risks h2, .planning-command h2, .planning-verticals h2),
html[lang="ja"] :where(.crowdfunding-risks h2, .planning-command h2, .planning-verticals h2),
html[lang="ko"] :where(.crowdfunding-risks h2, .planning-command h2, .planning-verticals h2) {
  font-size: clamp(32px, 3.6vw, 56px) !important;
  line-height: 1.16 !important;
}

html[lang="zh"] :where(.geo-question-list h2, .seo-faq-grid h3, .page-answers .geo-question-list h2, .page-answers .compact-answer-grid h3),
html[lang="ja"] :where(.geo-question-list h2, .seo-faq-grid h3, .page-answers .geo-question-list h2, .page-answers .compact-answer-grid h3),
html[lang="ko"] :where(.geo-question-list h2, .seo-faq-grid h3, .page-answers .geo-question-list h2, .page-answers .compact-answer-grid h3) {
  font-size: clamp(19px, 1.45vw, 28px) !important;
  line-height: 1.28 !important;
}

.motion-subpage .geo-question-list article {
  grid-template-columns: minmax(120px, 0.2fr) minmax(0, 0.38fr) minmax(0, 0.42fr);
}

.motion-subpage .geo-question-list p,
.motion-subpage .seo-faq-grid p,
.page-answers .geo-answer-body p,
.page-answers .answer-index-item p {
  overflow-wrap: anywhere;
}

.social-link strong,
#home .social-link strong,
.site-footer .social-link strong {
  color: inherit;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: normal;
  word-break: normal;
}

.social-link small,
#home .social-link small,
.site-footer .social-link small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .motion-subpage .geo-question-list article {
    grid-template-columns: minmax(110px, 0.22fr) minmax(0, 0.78fr);
  }

  .motion-subpage .geo-question-list article > p,
  .motion-subpage .geo-question-list article .geo-answer-body {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .motion-subpage .geo-question-list article,
  .motion-subpage .crowdfunding-intro,
  .motion-subpage .crowdfunding-risks,
  .motion-subpage .china-build-intro,
  .motion-subpage .planning-intro,
  .motion-subpage .planning-command,
  .motion-subpage .planning-verticals {
    grid-template-columns: 1fr !important;
  }

  .motion-subpage .geo-question-list article > p,
  .motion-subpage .geo-question-list article .geo-answer-body {
    grid-column: auto;
  }

  html[lang="zh"] :where(.crowdfunding-intro h2, .china-build-intro h2, .planning-intro h2),
  html[lang="ja"] :where(.crowdfunding-intro h2, .china-build-intro h2, .planning-intro h2),
  html[lang="ko"] :where(.crowdfunding-intro h2, .china-build-intro h2, .planning-intro h2) {
    font-size: clamp(34px, 9vw, 52px) !important;
  }
}

/* Mobile home hero language guard */
#home .hero-copy-block {
  max-width: calc(100vw - 32px);
  overflow: hidden;
}

#home .campaign-hero h1,
#home .campaign-line,
#home .release-label {
  overflow-wrap: anywhere;
  word-break: normal;
}

html[lang="zh"] #home .campaign-hero h1,
html[lang="ja"] #home .campaign-hero h1,
html[lang="ko"] #home .campaign-hero h1 {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  line-break: strict;
}

@media (max-width: 760px) {
  #home .hero-copy-block {
    width: calc(100% - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-inline: 16px !important;
    margin-bottom: clamp(82px, 12vh, 112px) !important;
  }

  html[lang="zh"] #home .campaign-hero h1,
  html[lang="ja"] #home .campaign-hero h1,
  html[lang="ko"] #home .campaign-hero h1 {
    font-size: clamp(36px, 9.6vw, 50px) !important;
    line-height: 1.14 !important;
    text-wrap: balance;
  }

  html[lang="zh"] #home .release-label,
  html[lang="ja"] #home .release-label,
  html[lang="ko"] #home .release-label {
    max-width: 100%;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand-logo {
    width: 168px;
    height: 37px;
    padding: 0;
  }

  .mobile-nav {
    inset: 64px 0 auto 0;
  }

  .campaign-hero {
    min-height: 96svh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-copy-block {
    width: calc(100% - 32px);
    margin: 0 auto 92px;
  }

  .campaign-hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .campaign-line {
    font-size: 18px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .signal-rail {
    display: none;
  }

  .editorial-strip,
  .shop-section,
  .strategy-band,
  .contact-band,
  .site-footer {
    width: calc(100% - 32px);
  }

  .site-footer {
    padding: 34px 18px 42px;
    gap: 26px;
  }

  .footer-company > strong {
    font-size: 28px;
  }

  .site-footer p {
    font-size: 13px;
    line-height: 1.58;
  }

  .footer-entity,
  .site-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-entity div:first-child {
    grid-column: span 2;
  }

  .footer-entity div {
    padding: 13px 14px;
  }

  .social-grid.compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
  }

  .social-grid.compact .social-link {
    padding: 7px;
  }

  .social-grid.compact .social-icon {
    width: 38px;
  }

  .editorial-strip {
    width: 100%;
    padding: 62px 16px;
  }

  .editorial-strip h2 {
    font-size: 46px;
  }

  .offer-card h3 {
    font-size: 24px;
  }

  .offer-data-rail {
    grid-template-columns: 1fr;
  }

  .market-scan-row {
    grid-template-columns: 1fr;
  }

  .automation-visual {
    min-height: 480px;
  }

  .automation-burst {
    width: 760px;
  }

  .case-section {
    padding: 58px 16px;
  }

  .case-section-head h2 {
    font-size: 46px;
  }

  .case-subhead {
    display: grid;
    gap: 8px;
  }

  .case-subhead p {
    max-width: none;
    text-align: left;
  }

  .case-motion-rail {
    min-height: 560px;
  }

  .case-motion-rail .case-card {
    flex-basis: min(86vw, 360px);
    min-height: 470px;
  }

  .case-motion-rail .case-card:nth-child(2n),
  .case-motion-rail .case-card:nth-child(3n) {
    margin-top: 22px;
  }

  .case-library-grid {
    grid-template-columns: 1fr;
  }

  .case-search-map {
    padding: 22px;
  }

  .case-search-chip-grid {
    grid-template-columns: 1fr;
  }

  .case-thumb-label {
    left: 10px;
    right: 10px;
    bottom: 12px;
    padding: 10px 12px;
  }

  .case-library-grid .case-thumb {
    aspect-ratio: 4 / 3;
  }

  .case-library-grid .case-card-copy {
    min-height: auto;
  }

  .motion-subpage .sub-hero,
  .motion-subpage .motion-card-rail,
  .motion-subpage .conversion-panel,
  .motion-subpage .process-section,
  .motion-subpage .trade-showcase,
  .motion-subpage .trade-deals,
  .motion-subpage .case-study-section,
  .motion-subpage .seo-faq-section,
  .motion-subpage .geo-audience-section,
  .motion-subpage .geo-question-section,
  .motion-subpage .geo-service-section,
  .motion-subpage .geo-facts-section,
  .motion-subpage .crowdfunding-intro,
  .motion-subpage .crowdfunding-deliverables,
  .motion-subpage .crowdfunding-roadmap,
  .motion-subpage .crowdfunding-risks,
  .motion-subpage .crowdfunding-question-section,
  .motion-subpage .china-build-intro,
  .motion-subpage .china-build-differentiators,
  .motion-subpage .china-build-supply,
  .motion-subpage .china-build-path,
  .motion-subpage .china-build-question-section,
  .motion-subpage .planning-intro,
  .motion-subpage .planning-command,
  .motion-subpage .planning-modules,
  .motion-subpage .planning-stages,
  .motion-subpage .planning-verticals,
  .motion-subpage .planning-deliverables,
  .motion-subpage .planning-question-section,
  .motion-subpage .contact-band.standalone,
  .case-detail > section {
    width: calc(100% - 32px);
  }

  .motion-subpage .sub-hero h1 {
    font-size: 48px;
    line-height: 0.92;
  }

  .motion-subpage .motion-card-rail > article,
  .motion-subpage .motion-card-rail > div {
    flex-basis: min(86vw, 360px);
    min-height: 320px;
  }

  .motion-subpage .motion-card-rail > article:nth-child(2n),
  .motion-subpage .motion-card-rail > div:nth-child(2n),
  .motion-subpage .motion-card-rail > article:nth-child(3n),
  .motion-subpage .motion-card-rail > div:nth-child(3n) {
    margin-top: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 250px;
  }

  .feature-content h2,
  .shop-head h2,
  .strategy-band h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  #home > .seo-faq-section {
    width: calc(100% - 32px);
  }

  .site-footer nav {
    justify-content: start;
  }

  .footer-entity {
    grid-template-columns: 1fr;
  }

  .assistant-widget {
    right: 14px;
    bottom: 14px;
  }

  .subpage {
    width: calc(100% - 32px);
  }

  .case-detail {
    width: calc(100% - 32px);
  }

  .case-grid,
  .case-media-grid,
  .trade-deal-grid,
  .case-study-grid,
  .seo-faq-grid,
  .seo-faq-grid:has(article:nth-child(2):last-child),
  .geo-profile-grid,
  .geo-service-grid,
  .crowdfunding-stage-grid,
  .crowdfunding-risks ol,
  .supply-node-grid,
  .planning-module-grid,
  .planning-command-grid,
  .planning-mini-grid,
  .planning-vertical-grid,
  .geo-facts-section dl {
    grid-template-columns: 1fr;
  }

  .sub-hero h1 {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img {
    animation-duration: 6.8s !important;
    animation-iteration-count: infinite !important;
  }

  .case-motion-rail.is-auto-gliding .case-card {
    animation-duration: 2.8s !important;
    animation-iteration-count: infinite !important;
  }
}


/* Hexastruct footer full-bleed and contact command page */
.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.page-contact {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 68px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, 0.08), transparent 23%, rgba(255, 255, 255, 0.045) 58%, transparent 78%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 122px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, #040506 0%, #0b0d10 46%, #15191d 100%);
}

.page-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(125, 220, 255, 0.11) 38%, transparent 39%),
    linear-gradient(112deg, transparent 0%, transparent 58%, rgba(255, 255, 255, 0.12) 58.5%, transparent 61%);
  opacity: 0.8;
}

.page-contact > section {
  position: relative;
  z-index: 1;
}

.contact-workbench,
.contact-route-panel,
.page-contact > .seo-faq-section {
  width: min(1920px, calc(100% - 64px));
  margin-inline: auto;
}

.contact-workbench {
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.64fr);
  gap: clamp(28px, 4.8vw, 82px);
  align-items: center;
  padding: clamp(72px, 7.4vw, 122px) 0 clamp(48px, 5.2vw, 84px);
}

.contact-identity-panel {
  display: grid;
  gap: clamp(22px, 2.5vw, 34px);
  max-width: 1160px;
}

.contact-identity-panel h1 {
  margin: 0;
  max-width: 1120px;
  color: transparent;
  background: linear-gradient(92deg, #ffffff 0%, #f2f5f7 34%, #9aa2aa 68%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(58px, 7.4vw, 142px);
  line-height: 0.88;
}

.contact-identity-panel > p:not(.section-kicker) {
  max-width: 850px;
  margin: 0;
  color: rgba(235, 241, 246, 0.72);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-action.primary {
  color: #050608;
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(120deg, #ffffff, #c9d1d8 56%, #ffffff);
}

.contact-action:hover {
  color: #ffffff;
  border-color: rgba(125, 220, 255, 0.66);
}

.contact-action.primary:hover {
  color: #050608;
}

.contact-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.12);
}

.contact-signal-grid span {
  min-height: 128px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  color: rgba(235, 241, 246, 0.7);
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(6, 7, 9, 0.8);
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.45;
}

.contact-signal-grid strong,
.contact-route-card span,
.contact-panel-top span {
  color: #7ddcff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-lead-panel {
  position: relative;
  display: grid;
  align-self: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 9, 11, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 36px 110px rgba(0, 0, 0, 0.38);
}

.contact-lead-panel::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 220, 255, 0.9), rgba(255, 255, 255, 0.34), transparent);
}

.contact-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-panel-top strong {
  color: #ffffff;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.2;
  text-align: right;
}

.contact-lead-panel .lead-form {
  color: var(--white);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 18px 4px 4px;
  gap: 14px;
}

.contact-lead-panel .lead-form label {
  color: rgba(235, 241, 246, 0.86);
}

.contact-lead-panel .lead-form input,
.contact-lead-panel .lead-form select,
.contact-lead-panel .lead-form textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-lead-panel .lead-form input::placeholder,
.contact-lead-panel .lead-form textarea::placeholder {
  color: rgba(235, 241, 246, 0.46);
}

.contact-lead-panel .lead-form select option {
  color: var(--white);
  background: #101317;
}

.contact-lead-panel .lead-form textarea {
  min-height: 104px;
}

.contact-lead-panel .lead-form .button.dark {
  color: #050608;
  background: linear-gradient(120deg, #ffffff, #bfc8d0 54%, #ffffff);
  box-shadow: 0 14px 38px rgba(125, 220, 255, 0.16);
}

.contact-lead-panel .form-output {
  color: rgba(235, 241, 246, 0.74);
}

.contact-route-panel {
  padding: clamp(44px, 5vw, 76px) 0 clamp(66px, 7vw, 108px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-route-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: start;
  margin-bottom: clamp(24px, 3vw, 42px);
}

.contact-route-head h2,
.page-contact .seo-faq-section h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(92deg, #ffffff, #dce1e5 45%, #8d969f 78%, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(34px, 4.6vw, 82px);
  line-height: 0.95;
}

.contact-route-head p:not(.section-kicker) {
  max-width: 880px;
  margin: 18px 0 0;
  color: rgba(235, 241, 246, 0.68);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.contact-route-card {
  min-height: 238px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.024)),
    rgba(8, 10, 12, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 80px rgba(0, 0, 0, 0.2);
}

.contact-route-card.primary {
  background:
    linear-gradient(145deg, rgba(125, 220, 255, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 12, 0.9);
}

.contact-route-card a {
  color: #ffffff;
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 950;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.contact-route-card p {
  margin: 0;
  color: rgba(235, 241, 246, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.page-contact > .seo-faq-section {
  padding: clamp(50px, 6vw, 92px) 0;
  border-top-color: rgba(255, 255, 255, 0.14);
}

.page-contact .seo-faq-grid article {
  min-height: 210px;
  border-color: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.024)),
    rgba(8, 10, 12, 0.82);
}

@media (max-width: 1180px) {
  .contact-workbench {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-lead-panel {
    max-width: 760px;
  }

  .contact-signal-grid,
  .contact-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-workbench,
  .contact-route-panel,
  .page-contact > .seo-faq-section {
    width: calc(100% - 32px);
  }

  .contact-workbench {
    padding: 54px 0 38px;
    gap: 28px;
  }

  .contact-identity-panel h1 {
    font-size: clamp(44px, 15vw, 68px);
    line-height: 0.92;
  }

  .contact-actions,
  .contact-route-head,
  .contact-signal-grid,
  .contact-route-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
  }

  .contact-signal-grid span {
    min-height: 104px;
  }

  .contact-lead-panel {
    padding: 12px;
  }

  .contact-panel-top {
    display: grid;
    padding: 16px;
  }

  .contact-panel-top strong {
    text-align: left;
  }

  .contact-route-card {
    min-height: 190px;
    padding: 20px;
  }

  .site-footer {
    width: 100%;
  }
}

/* Contact mobile hardening */
.page-contact *,
.page-contact *::before,
.page-contact *::after {
  box-sizing: border-box;
}

.contact-identity-panel,
.contact-lead-panel,
.contact-signal-grid,
.contact-route-panel,
.contact-route-head,
.contact-route-card,
.contact-workbench .lead-form {
  min-width: 0;
  max-width: 100%;
}

.contact-identity-panel > p:not(.section-kicker),
.contact-signal-grid span,
.contact-route-card p,
.contact-route-card a {
  overflow-wrap: break-word;
}

@media (max-width: 760px) {
  .contact-identity-panel {
    gap: 18px;
  }

  .contact-identity-panel h1 {
    font-size: clamp(42px, 12.5vw, 52px);
    line-height: 0.94;
  }

  .contact-identity-panel > p:not(.section-kicker) {
    font-size: 17px;
    line-height: 1.48;
  }

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

  .contact-signal-grid span {
    min-height: 92px;
    padding: 12px;
    gap: 10px;
    font-size: 12px;
    line-height: 1.36;
  }

  .contact-route-grid {
    grid-template-columns: 1fr;
  }
}

/* Automation education system: crawler, data cleaning, scoring, routing */
.detail-card-link {
  display: inline-flex;
  width: max-content;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.automation-learning-section,
.crawler-playbook-section,
.data-cleaning-section,
.automation-glossary-section {
  padding: clamp(58px, 8vw, 108px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.automation-learning-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 62px);
  align-items: end;
  margin-bottom: 26px;
}

.automation-learning-head h2,
.crawler-playbook-section h2,
.data-cleaning-section h2,
.automation-glossary-section h2 {
  margin: 10px 0 0;
  color: transparent;
  background: linear-gradient(92deg, #fff, #dfe5ea 48%, #7f8790 76%, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(34px, 4.2vw, 72px);
  line-height: 1;
  text-wrap: balance;
}

.automation-learning-head > p:not(.section-kicker),
.crawler-playbook-section .case-study-head p,
.data-cleaning-section .case-study-head p {
  margin: 0;
  color: rgba(235, 241, 246, 0.7);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.62;
}

.automation-learning-grid,
.crawler-playbook-grid,
.data-cleaning-grid {
  display: grid;
  gap: 14px;
}

.automation-learning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crawler-playbook-grid,
.data-cleaning-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.automation-learn-card,
.crawler-playbook-grid article,
.data-cleaning-grid article {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(57, 167, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #080a0d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 26px 78px rgba(0, 0, 0, 0.22);
}

.automation-learn-card::after,
.crawler-playbook-grid article::after,
.data-cleaning-grid article::after {
  content: "";
  position: absolute;
  inset: auto -20% -44% 18%;
  height: 190px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(57, 167, 255, 0.16), rgba(255, 122, 26, 0.22));
  transform: rotate(-8deg);
  opacity: 0.46;
}

.automation-learn-card span,
.crawler-playbook-grid span,
.data-cleaning-grid span {
  position: relative;
  z-index: 1;
  color: #aeb8c2;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.automation-learn-card h2,
.crawler-playbook-grid h3,
.data-cleaning-grid h3 {
  position: relative;
  z-index: 1;
  margin: 34px 0 16px;
  color: #fff;
  font-size: clamp(22px, 2.05vw, 34px);
  line-height: 1.08;
  text-wrap: balance;
}

.automation-learn-card p,
.crawler-playbook-grid p,
.data-cleaning-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(235, 241, 246, 0.7);
  line-height: 1.62;
}

.automation-learn-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.automation-learn-list li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.46;
}

.crawler-playbook-grid article {
  min-height: 300px;
}

.crawler-playbook-grid strong,
.data-cleaning-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 24px;
  color: #ffb36e;
  font-size: 13px;
  line-height: 1.5;
}

.data-cleaning-grid article {
  min-height: 360px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    #07090c;
}

.data-cleaning-grid span + p {
  margin-top: 10px;
}

.automation-glossary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.automation-glossary-list details {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 12, 0.86);
}

.automation-glossary-list summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 0.72fr);
  gap: 18px;
  padding: 22px;
  color: rgba(235, 241, 246, 0.75);
  line-height: 1.5;
}

.automation-glossary-list summary span {
  color: #fff;
  font-weight: 950;
}

.automation-glossary-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(235, 241, 246, 0.68);
  line-height: 1.62;
}

@media (max-width: 1180px) {
  .automation-learning-grid,
  .crawler-playbook-grid,
  .data-cleaning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .automation-learning-head {
    grid-template-columns: 1fr;
  }

  .automation-learning-grid,
  .crawler-playbook-grid,
  .data-cleaning-grid,
  .automation-glossary-list {
    grid-template-columns: 1fr;
  }

  .automation-learn-card,
  .crawler-playbook-grid article,
  .data-cleaning-grid article {
    min-height: 0;
  }

  .automation-glossary-list summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .contact-workbench,
  .contact-route-panel,
  .page-contact > .seo-faq-section {
    width: calc(100% - 24px);
  }

  .contact-identity-panel h1 {
    font-size: clamp(40px, 11.8vw, 48px);
  }

  .contact-action {
    min-height: 50px;
  }
}
/* Contact mobile headline fit */
@media (max-width: 760px) {
  .contact-identity-panel h1 {
    max-width: 12ch;
    overflow-wrap: normal;
  }
}

@media (max-width: 430px) {
  .contact-identity-panel h1 {
    max-width: 11.5ch;
    font-size: clamp(38px, 10.8vw, 44px);
  }
}
/* Contact extra-small viewport polish */
@media (max-width: 430px) {
  .contact-workbench,
  .contact-route-panel,
  .page-contact > .seo-faq-section {
    width: calc(100% - 32px);
  }

  .contact-identity-panel > p:not(.section-kicker) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.48;
  }

  .contact-actions,
  .contact-action,
  .contact-signal-grid,
  .contact-signal-grid span,
  .contact-lead-panel,
  .contact-route-grid,
  .contact-route-card {
    width: 100%;
  }

  .contact-signal-grid {
    grid-template-columns: 1fr;
  }

  .contact-signal-grid span {
    min-height: auto;
    padding: 13px 14px;
  }

  .contact-route-head h2,
  .page-contact .seo-faq-section h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1;
  }
}
/* Contact mobile overflow final lock */
@media (max-width: 760px) {
  .page-contact {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .contact-workbench,
  .contact-route-panel,
  .page-contact > .seo-faq-section {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contact-identity-panel,
  .contact-identity-panel > *,
  .contact-actions,
  .contact-action,
  .contact-signal-grid,
  .contact-signal-grid span,
  .contact-lead-panel,
  .contact-lead-panel .lead-form,
  .contact-route-head,
  .contact-route-head > *,
  .contact-route-grid,
  .contact-route-card {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .contact-identity-panel h1 {
    width: 100% !important;
    max-width: 11.5ch !important;
    font-size: clamp(38px, 10.8vw, 44px) !important;
    line-height: 0.96 !important;
    overflow-wrap: normal !important;
  }

  .contact-identity-panel > p:not(.section-kicker),
  .contact-signal-grid span,
  .contact-route-head p,
  .contact-route-card p,
  .contact-route-card a {
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .contact-signal-grid,
  .contact-route-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-signal-grid span {
    min-height: auto !important;
    padding: 13px 14px !important;
  }
}
/* Mobile visual polish pass */
@media (max-width: 760px) {
  .motion-subpage:not(.page-contact),
  .case-detail {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    overflow-x: hidden !important;
  }

  .motion-subpage:not(.page-contact) .sub-hero,
  .motion-subpage:not(.page-contact) .motion-card-rail,
  .motion-subpage:not(.page-contact) .conversion-panel,
  .motion-subpage:not(.page-contact) .process-section,
  .motion-subpage:not(.page-contact) .trade-showcase,
  .motion-subpage:not(.page-contact) .trade-deals,
  .motion-subpage:not(.page-contact) .workflow-visual-showcase,
  .motion-subpage:not(.page-contact) .automation-learning-section,
  .motion-subpage:not(.page-contact) .crawler-playbook-section,
  .motion-subpage:not(.page-contact) .data-cleaning-section,
  .motion-subpage:not(.page-contact) .automation-glossary-section,
  .motion-subpage:not(.page-contact) .case-study-section,
  .motion-subpage:not(.page-contact) .seo-faq-section,
  .motion-subpage:not(.page-contact) .geo-audience-section,
  .motion-subpage:not(.page-contact) .geo-question-section,
  .motion-subpage:not(.page-contact) .geo-service-section,
  .motion-subpage:not(.page-contact) .geo-facts-section,
  .motion-subpage:not(.page-contact) .crowdfunding-intro,
  .motion-subpage:not(.page-contact) .crowdfunding-deliverables,
  .motion-subpage:not(.page-contact) .crowdfunding-roadmap,
  .motion-subpage:not(.page-contact) .crowdfunding-risks,
  .motion-subpage:not(.page-contact) .crowdfunding-question-section,
  .motion-subpage:not(.page-contact) .china-build-intro,
  .motion-subpage:not(.page-contact) .china-build-differentiators,
  .motion-subpage:not(.page-contact) .china-build-supply,
  .motion-subpage:not(.page-contact) .china-build-path,
  .motion-subpage:not(.page-contact) .china-build-question-section,
  .motion-subpage:not(.page-contact) .planning-intro,
  .motion-subpage:not(.page-contact) .planning-command,
  .motion-subpage:not(.page-contact) .planning-modules,
  .motion-subpage:not(.page-contact) .planning-stages,
  .motion-subpage:not(.page-contact) .planning-verticals,
  .motion-subpage:not(.page-contact) .planning-deliverables,
  .motion-subpage:not(.page-contact) .planning-question-section,
  .case-detail > section {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .motion-subpage:not(.page-contact) .sub-hero {
    min-height: auto;
    padding-top: clamp(128px, 22vw, 160px);
  }

  .motion-subpage:not(.page-contact) .sub-hero h1,
  .case-detail h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .social-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .social-grid.compact .social-link strong,
  .social-grid.compact .social-link small {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .social-grid.compact .social-link {
    min-height: 108px;
    align-content: center;
  }
}

/* Mobile social link text fit */
@media (max-width: 760px) {
  .social-link strong,
  .social-link small,
  #home .social-link strong,
  #home .social-link small,
  .site-footer .social-link strong,
  .site-footer .social-link small {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.22 !important;
  }

  .social-link {
    min-width: 0 !important;
  }
}

/* Mobile finish pass: readable, full-bleed, touch-friendly */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
    background: #030405;
  }

  .site-header {
    min-height: 60px !important;
    padding-inline: 16px !important;
  }

  .brand-logo {
    width: clamp(150px, 47vw, 178px) !important;
    height: 34px !important;
  }

  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-nav {
    inset: 60px 0 auto 0 !important;
    max-height: calc(100svh - 60px);
    overflow-y: auto;
  }

  .campaign-hero {
    min-height: 100svh !important;
    align-items: end;
  }

  .hero-media img {
    object-position: 58% center !important;
    transform: scale(1.02);
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(8, 9, 11, 0.9), rgba(8, 9, 11, 0.5) 50%, rgba(8, 9, 11, 0.12)),
      linear-gradient(0deg, rgba(8, 9, 11, 0.76), rgba(8, 9, 11, 0.12) 54%);
  }

  .hero-copy-block {
    width: calc(100% - 32px) !important;
    margin: 0 auto clamp(92px, 14svh, 132px) !important;
  }

  .campaign-hero h1 {
    max-width: 9ch;
    font-size: clamp(42px, 12.5vw, 56px) !important;
    line-height: 1.02 !important;
    text-wrap: balance;
  }

  html[lang="zh"] .campaign-hero h1,
  html[lang="ja"] .campaign-hero h1,
  html[lang="ko"] .campaign-hero h1 {
    max-width: 10ch;
    font-size: clamp(38px, 11.1vw, 50px) !important;
    line-height: 1.08 !important;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .campaign-line {
    max-width: 20rem;
    font-size: clamp(18px, 5vw, 22px) !important;
    line-height: 1.5 !important;
    text-wrap: pretty;
  }

  html[lang="zh"] .campaign-line,
  html[lang="ja"] .campaign-line,
  html[lang="ko"] .campaign-line {
    font-size: clamp(17px, 4.7vw, 21px) !important;
    line-height: 1.58 !important;
  }

  .hero-actions {
    gap: 10px !important;
    margin-top: 28px !important;
  }

  .button {
    min-height: 52px;
    border-radius: 8px;
  }

  .editorial-strip,
  .shop-section,
  .strategy-band,
  .contact-band,
  #home > .seo-faq-section {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: 16px !important;
  }

  .shop-head,
  .strategy-band,
  .contact-band {
    gap: 22px;
  }

  .market-scan-card {
    padding: 20px !important;
    overflow: hidden !important;
    border-radius: 10px;
  }

  .editorial-strip::after {
    left: 0 !important;
    right: 0 !important;
  }

  .market-scan-card::after {
    left: 0 !important;
    right: 0 !important;
    transform: rotate(-7deg) scaleX(0.92);
  }

  .market-scan-copy h3 {
    font-size: clamp(26px, 8.8vw, 34px) !important;
    line-height: 1.02 !important;
  }

  .market-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .market-pipeline span {
    min-height: 42px;
    display: grid;
    place-items: center;
    white-space: normal;
    line-height: 1.18;
  }

  .automation-visual {
    min-height: 390px !important;
    overflow: hidden;
  }

  .automation-burst {
    left: 50%;
    width: min(640px, 156vw) !important;
    max-width: none;
    transform: translateX(-50%);
  }

  .motion-subpage:not(.page-contact) {
    background: #030405 !important;
  }

  .motion-subpage:not(.page-contact) .sub-hero {
    min-height: auto !important;
    padding-top: clamp(104px, 26vw, 138px) !important;
    padding-bottom: clamp(42px, 12vw, 68px) !important;
  }

  .motion-subpage .sub-hero h1,
  .sub-hero h1 {
    font-size: clamp(38px, 12vw, 56px) !important;
    line-height: 0.98 !important;
    text-wrap: balance;
  }

  html[lang="zh"] .motion-subpage .sub-hero h1,
  html[lang="ja"] .motion-subpage .sub-hero h1,
  html[lang="ko"] .motion-subpage .sub-hero h1,
  html[lang="zh"] .sub-hero h1,
  html[lang="ja"] .sub-hero h1,
  html[lang="ko"] .sub-hero h1 {
    font-size: clamp(36px, 10.8vw, 50px) !important;
    line-height: 1.08 !important;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .motion-subpage .sub-hero p:not(.release-label),
  .sub-hero p:not(.release-label) {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(17px, 5vw, 21px) !important;
    line-height: 1.55 !important;
    text-wrap: pretty;
  }

  .subpage-motion-strip,
  .case-motion-marquee {
    height: 38px;
    align-items: center;
    overflow: hidden !important;
  }

  .subpage-motion-strip span,
  .case-motion-marquee span {
    padding-block: 10px !important;
    font-size: 11px !important;
  }

  .case-section {
    padding: 50px 16px !important;
  }

  .case-section-head h2 {
    font-size: clamp(36px, 11vw, 48px) !important;
    line-height: 1 !important;
  }

  .case-rail-shell {
    --case-rail-control-space: 44px;
    --case-rail-arrow-size: 42px;
    padding-inline: 44px !important;
  }

  .case-rail-arrow {
    top: 190px !important;
    opacity: 0.72;
    background: rgba(245, 248, 249, 0.76);
  }

  .case-motion-rail {
    min-height: 0 !important;
    padding: 8px 0 24px !important;
    gap: 12px;
    scrollbar-width: thin;
  }

  .case-motion-rail .case-card {
    flex-basis: min(78vw, 320px) !important;
    min-height: 0 !important;
  }

  .case-motion-rail .case-card:nth-child(2n),
  .case-motion-rail .case-card:nth-child(3n) {
    margin-top: 18px !important;
  }

  .case-motion-rail .case-thumb {
    aspect-ratio: 16 / 11 !important;
  }

  .case-thumb-label {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    max-width: calc(100% - 20px) !important;
    padding: 9px 10px !important;
  }

  .case-thumb-label strong {
    font-size: clamp(17px, 5.5vw, 22px) !important;
    line-height: 1.08 !important;
  }

  .case-thumb-label span {
    font-size: 10px !important;
  }

  .case-motion-rail .case-card-copy,
  .case-library-grid .case-card-copy {
    min-height: auto !important;
    gap: 10px !important;
    padding: 16px !important;
  }

  .case-project-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .case-avatar {
    width: 34px;
    font-size: 14px;
  }

  .case-bookmark {
    display: none;
  }

  .case-card-copy h3 {
    font-size: clamp(20px, 6.8vw, 27px) !important;
    line-height: 1.08 !important;
  }

  .case-card-copy .case-cn-intro,
  .case-card-copy .case-en-intro,
  .case-card-copy p {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .case-motion-rail .case-card-copy .case-en-intro {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .case-project-stats {
    font-size: 12px;
  }

  .case-search-map {
    margin-top: 42px !important;
    padding: 20px !important;
  }

  .case-search-map h3 {
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  .case-detail {
    width: 100% !important;
    max-width: none !important;
    padding-top: 60px;
    overflow-x: hidden;
  }

  .case-detail > section {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
  }

  .case-detail-hero {
    gap: 28px !important;
    padding-top: 52px !important;
  }

  .case-detail-copy h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: 1 !important;
    text-wrap: balance;
  }

  html[lang="zh"] .case-detail-copy h1,
  html[lang="ja"] .case-detail-copy h1,
  html[lang="ko"] .case-detail-copy h1 {
    font-size: clamp(34px, 10.2vw, 48px) !important;
    line-height: 1.08 !important;
    word-break: keep-all;
  }

  .case-detail-copy > p,
  .case-story p {
    font-size: 16px;
    line-height: 1.62;
  }

  .site-footer {
    width: 100% !important;
    margin: 0 !important;
    padding: 38px 16px calc(44px + env(safe-area-inset-bottom)) !important;
    border-radius: 0 !important;
  }

  .footer-company > strong {
    font-size: clamp(25px, 7.8vw, 32px) !important;
  }

  .footer-entity,
  .site-footer nav {
    grid-template-columns: 1fr !important;
  }

  .footer-entity div:first-child {
    grid-column: auto !important;
  }

  .social-grid,
  .social-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .social-grid .social-link,
  .social-grid.compact .social-link {
    grid-template-columns: 1fr !important;
    justify-items: center;
    min-height: 104px !important;
    padding: 10px 8px !important;
    text-align: center;
  }

  .social-icon,
  .social-grid.compact .social-icon {
    width: 42px !important;
  }

  .assistant-widget {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
  }

  .assistant-toggle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    font-size: 18px;
    opacity: 0.88;
  }

  .assistant-panel {
    right: 0;
    bottom: 62px !important;
    width: min(340px, calc(100vw - 24px)) !important;
    max-height: min(520px, calc(100svh - 92px));
  }

  .assistant-log {
    max-height: 220px !important;
  }
}

@media (max-width: 380px) {
  .campaign-hero h1 {
    font-size: clamp(38px, 11.4vw, 46px) !important;
  }

  html[lang="zh"] .campaign-hero h1,
  html[lang="ja"] .campaign-hero h1,
  html[lang="ko"] .campaign-hero h1 {
    font-size: clamp(34px, 10.2vw, 42px) !important;
  }

  .motion-subpage .sub-hero h1,
  .sub-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px) !important;
  }

  .case-rail-shell {
    --case-rail-control-space: 38px;
    --case-rail-arrow-size: 38px;
    padding-inline: 38px !important;
  }

  .case-motion-rail .case-card {
    flex-basis: min(76vw, 288px) !important;
  }
}

/* Polish pass: clearer social cards and mobile case rail affordance */
.social-link {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.social-link strong {
  font-size: clamp(14px, 0.9vw, 16px);
  letter-spacing: 0;
}

.social-link small {
  color: rgba(95, 106, 118, 0.92);
  font-size: 11px;
  letter-spacing: 0;
}

.social-grid.compact .social-link {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 38px rgba(0, 0, 0, 0.24);
}

.case-rail-shell::before,
.case-rail-shell::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(38px, 6vw, 82px);
}

.case-rail-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(4, 5, 6, 0.92), rgba(4, 5, 6, 0));
}

.case-rail-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(4, 5, 6, 0.92), rgba(4, 5, 6, 0));
}

.case-rail-arrow {
  z-index: 4;
  color: #101214;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.case-rail-arrow::before {
  border-width: 0 3px 3px 0;
}

.case-motion-rail {
  scroll-padding-inline: var(--case-rail-control-space, 64px);
}

@media (max-width: 760px) {
  .social-link small,
  #home .social-link small,
  .site-footer .social-link small {
    color: rgba(232, 237, 241, 0.78) !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
  }

  .social-grid:not(.compact) .social-link small {
    color: rgba(88, 98, 108, 0.94) !important;
  }

  .social-link strong,
  #home .social-link strong,
  .site-footer .social-link strong {
    font-size: 13px !important;
    line-height: 1.12 !important;
  }

  .case-rail-shell::before,
  .case-rail-shell::after {
    width: 50px;
  }

  .case-rail-arrow {
    opacity: 0.92 !important;
    border-color: rgba(255, 255, 255, 0.64) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(190, 199, 207, 0.72)) !important;
    backdrop-filter: blur(12px);
  }

  .case-motion-rail::after {
    content: "Swipe or tap arrows";
    flex: 0 0 auto;
    align-self: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(236, 241, 245, 0.7);
    background: rgba(255, 255, 255, 0.06);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .case-badge,
  .case-meta span,
  .case-project-stats,
  .case-thumb-label span {
    font-size: 12px !important;
    letter-spacing: 0 !important;
  }

  .case-cn-title {
    font-size: 13px !important;
    line-height: 1.28 !important;
  }

  .case-library-grid .case-card-copy .case-cn-intro,
  .case-library-grid .case-card-copy .case-en-intro {
    min-height: auto !important;
  }
}

/* Answer hub compression: keep GEO volume, remove endless visual height */
.page-answers .geo-question-list,
.page-answers .compact-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-height: min(1180px, 112vh);
  overflow: auto;
  padding: 12px 12px 12px 0;
  scrollbar-width: thin;
}

.page-answers .geo-question-item,
.page-answers .answer-index-item {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #f4f7f9;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.018)),
    rgba(12, 15, 18, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.page-answers .geo-question-item[open],
.page-answers .answer-index-item[open] {
  border-color: rgba(19, 137, 255, 0.38);
  background:
    radial-gradient(circle at 92% 8%, rgba(19, 137, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.024)),
    rgba(10, 13, 16, 0.94);
}

.page-answers .geo-question-item summary,
.page-answers .answer-index-item summary {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 138px;
  padding: 18px 44px 18px 18px;
  cursor: pointer;
  list-style: none;
}

.page-answers .geo-question-item summary::-webkit-details-marker,
.page-answers .answer-index-item summary::-webkit-details-marker {
  display: none;
}

.page-answers .geo-question-item summary::after,
.page-answers .answer-index-item summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 24px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #dce8f4;
  font-weight: 950;
}

.page-answers .geo-question-item[open] summary::after,
.page-answers .answer-index-item[open] summary::after {
  content: "-";
  border-color: rgba(19, 137, 255, 0.46);
  color: #7ddcff;
}

.page-answers .geo-question-list span,
.page-answers .compact-answer-grid span {
  color: #7ddcff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-answers .geo-question-list h2,
.page-answers .compact-answer-grid h3 {
  margin: 0;
  color: #f7fafc;
  font-size: clamp(17px, 1.06vw, 22px);
  line-height: 1.18;
}

.page-answers .geo-answer-body,
.page-answers .answer-index-item p {
  padding: 0 18px 18px;
}

.page-answers .geo-answer-body p,
.page-answers .answer-index-item p {
  margin: 0;
  color: rgba(232, 239, 245, 0.74);
  font-size: 15px;
  line-height: 1.58;
}

.page-answers .geo-answer-body .text-link {
  margin-top: 14px;
}

.page-answers .answer-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.022)),
    rgba(10, 13, 16, 0.9);
}

.page-answers .answer-pagination span {
  flex: 1 1 260px;
  color: rgba(232, 239, 245, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.page-answers .answer-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dce8f4;
  font-size: 13px;
  font-weight: 900;
}

.page-answers .answer-pagination a[aria-current="page"] {
  border-color: rgba(19, 137, 255, 0.58);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(19, 137, 255, 0.62), rgba(148, 160, 172, 0.42)),
    rgba(19, 137, 255, 0.18);
}

.case-title-block h3,
.case-thumb-label strong,
.case-thumb-label span {
  text-wrap: balance;
}

.case-title-block h3 {
  word-break: keep-all;
}

@media (max-width: 1180px) {
  .page-answers .geo-question-list,
  .page-answers .compact-answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-answers .geo-question-list,
  .page-answers .compact-answer-grid {
    grid-template-columns: 1fr !important;
    max-height: 78vh;
    padding-right: 4px;
  }

  .page-answers .geo-question-item summary,
  .page-answers .answer-index-item summary {
    min-height: 112px;
    padding: 16px 42px 16px 16px;
  }
}

/* Continuous QA pass: sharper reading scale and cleaner mobile motion edges */
.release-label,
.section-kicker,
.site-footer nav::before {
  letter-spacing: 0.035em;
}

.site-footer nav a,
.contact-lines a,
.footer-entity dd,
.footer-network > span {
  font-size: clamp(14px, 0.92vw, 16px);
}

.case-rail-shell,
.motion-subpage .motion-card-rail {
  contain: paint;
}

.case-motion-rail {
  max-width: 100%;
  scroll-padding-inline: var(--case-rail-control-space, 64px);
}

.case-motion-rail img,
.case-library-grid img,
.trade-deal-card img,
.workflow-case-card img {
  max-width: 100%;
}

@media (max-width: 760px) {
  .release-label,
  .section-kicker {
    font-size: 13px !important;
    line-height: 1.15;
  }

  .automation-visual {
    isolation: isolate;
  }

  .automation-burst {
    width: min(520px, 132vw) !important;
    transform: translate(-50%, -50%) !important;
  }

  .case-rail-shell {
    overflow: hidden;
  }

  .case-motion-rail {
    width: 100%;
    max-width: 100%;
    overscroll-behavior-x: contain;
  }

  .case-motion-rail::after {
    font-size: 12px !important;
  }

  .site-footer nav a,
  .contact-lines a,
  .footer-entity dd,
  .footer-network > span {
    font-size: 14px !important;
    line-height: 1.35;
  }
}

/* Global title discipline: cleaner punctuation, steadier Chinese line breaks */
:where(h1, h2, h3) {
  letter-spacing: 0;
  text-wrap: balance;
  text-wrap: pretty;
}

:where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1) {
  max-width: min(1080px, 92vw);
  line-height: 1.08 !important;
}

:where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2, .contact-route-head h2, .page-contact .seo-faq-section h2) {
  max-width: min(980px, 100%);
  line-height: 1.12 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

:where(.market-scan-copy h3, .case-search-map h3, .trade-deal-copy h3, .seo-faq-grid h3, .case-card-copy h3, .automation-learn-card h2, .crawler-playbook-grid h3, .data-cleaning-grid h3, .page-answers .geo-question-list h2, .page-answers .compact-answer-grid h3) {
  line-height: 1.18 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

html[lang="zh"] :where(h1, h2, h3),
html[lang="ja"] :where(h1, h2, h3),
html[lang="ko"] :where(h1, h2, h3) {
  line-height: 1.16 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  letter-spacing: 0;
}

html[lang="zh"] :where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1),
html[lang="ja"] :where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1),
html[lang="ko"] :where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1) {
  max-width: min(1120px, 92vw);
  font-size: clamp(42px, 5.2vw, 74px) !important;
  line-height: 1.14 !important;
}

html[lang="zh"] .sub-hero.visual > div,
html[lang="ja"] .sub-hero.visual > div,
html[lang="ko"] .sub-hero.visual > div {
  min-width: min(760px, 100%);
}

html[lang="zh"] .motion-subpage .sub-hero h1,
html[lang="ja"] .motion-subpage .sub-hero h1,
html[lang="ko"] .motion-subpage .sub-hero h1 {
  max-width: min(820px, 92vw) !important;
}

html[lang="zh"] :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2),
html[lang="ja"] :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2),
html[lang="ko"] :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2) {
  font-size: clamp(38px, 4.5vw, 66px) !important;
  line-height: 1.16 !important;
}

#home .case-section-head {
  align-items: end;
}

#home .seo-faq-section .case-section-head {
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.9fr);
  align-items: center;
}

#home .seo-faq-section .case-section-head h2 {
  justify-self: start;
  max-width: 760px;
}

.contact-copy h2 {
  max-width: 760px;
}

@media (max-width: 900px) {
  .case-section-head,
  #home .seo-faq-section .case-section-head {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  :where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1) {
    max-width: 100% !important;
    font-size: clamp(36px, 10vw, 58px) !important;
    line-height: 1.14 !important;
  }

  html[lang="zh"] :where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1),
  html[lang="ja"] :where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1),
  html[lang="ko"] :where(.campaign-hero h1, .sub-hero h1, .case-detail-copy h1) {
    font-size: clamp(34px, 9.4vw, 52px) !important;
    line-height: 1.18 !important;
  }

  :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2) {
    font-size: clamp(32px, 9vw, 48px) !important;
    line-height: 1.18 !important;
  }
}

/* Single-language layout repair: keep translated copy readable without browser overlay echoes */
.skiptranslate,
.goog-te-banner-frame,
.goog-tooltip,
.goog-text-highlight,
#goog-gt-tt,
.VIpgJd-yAWNEb-L7lbkb,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

body {
  top: 0 !important;
}

#home .editorial-strip {
  contain: paint;
}

#home .offer-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr) !important;
  align-items: start;
}

#home .editorial-strip h2 {
  display: block !important;
  max-width: min(760px, 100%) !important;
  font-size: clamp(46px, 5.8vw, 92px) !important;
  line-height: 1 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  white-space: normal !important;
}

html[lang="zh"] #home .editorial-strip h2,
html[lang="ja"] #home .editorial-strip h2,
html[lang="ko"] #home .editorial-strip h2 {
  max-width: min(680px, 100%) !important;
  font-size: clamp(40px, 4.5vw, 72px) !important;
  line-height: 1.16 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  line-break: strict;
}

html[lang="vi"] #home .editorial-strip h2,
html[lang="id"] #home .editorial-strip h2 {
  font-size: clamp(40px, 4.6vw, 76px) !important;
  line-height: 1.08 !important;
}

#home .offer-system,
#home .offer-card,
#home .offer-card-stack,
#home .offer-data-rail,
.feature-panel,
.feature-content,
.workflow-board,
.motion-subpage :where(article, div, section),
.page-answers :where(article, details, summary, div) {
  min-width: 0;
}

#home .offer-card h3,
#home .offer-card p,
#home .offer-lead,
#home .offer-data-rail span,
.feature-content h2,
.feature-content li,
.workflow-board span,
.motion-subpage :where(.sub-hero h1, .sub-hero p, .geo-question-list h2, .geo-question-list p, .seo-faq-grid h3, .seo-faq-grid p, .trade-deal-copy h3, .trade-deal-copy p, .motion-card-rail h3, .motion-card-rail p),
.page-answers :where(.geo-question-list h2, .compact-answer-grid h3, .geo-answer-body p, .answer-index-item p) {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  white-space: normal !important;
}

#home .offer-card h3 {
  font-size: clamp(22px, 1.8vw, 32px) !important;
  line-height: 1.16 !important;
}

html[lang="zh"] #home .offer-card h3,
html[lang="ja"] #home .offer-card h3,
html[lang="ko"] #home .offer-card h3 {
  font-size: clamp(22px, 1.55vw, 30px) !important;
  line-height: 1.22 !important;
}

.feature-content h2 {
  max-width: min(620px, 100%) !important;
  font-size: clamp(38px, 5vw, 68px) !important;
  line-height: 1.05 !important;
}

html[lang="zh"] .feature-content h2,
html[lang="ja"] .feature-content h2,
html[lang="ko"] .feature-content h2 {
  font-size: clamp(36px, 4.2vw, 60px) !important;
  line-height: 1.16 !important;
}

.social-link strong,
#home .social-link strong,
.site-footer .social-link strong {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  line-height: 1.08 !important;
}

.social-link small,
#home .social-link small,
.site-footer .social-link small {
  min-width: 0;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html[lang="zh"] :where(h1, h2, h3),
html[lang="ja"] :where(h1, h2, h3),
html[lang="ko"] :where(h1, h2, h3) {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

@media (max-width: 1280px) {
  #home .offer-grid {
    grid-template-columns: 1fr !important;
  }

  #home .editorial-strip h2,
  html[lang="zh"] #home .editorial-strip h2,
  html[lang="ja"] #home .editorial-strip h2,
  html[lang="ko"] #home .editorial-strip h2 {
    max-width: min(880px, 100%) !important;
    font-size: clamp(40px, 6.2vw, 72px) !important;
  }
}

@media (max-width: 760px) {
  #home .editorial-strip h2,
  html[lang="zh"] #home .editorial-strip h2,
  html[lang="ja"] #home .editorial-strip h2,
  html[lang="ko"] #home .editorial-strip h2 {
    font-size: clamp(34px, 9.6vw, 48px) !important;
    line-height: 1.12 !important;
  }

  #home .offer-card h3,
  html[lang="zh"] #home .offer-card h3,
  html[lang="ja"] #home .offer-card h3,
  html[lang="ko"] #home .offer-card h3 {
    font-size: clamp(22px, 6.5vw, 28px) !important;
  }

  .feature-content h2,
  html[lang="zh"] .feature-content h2,
  html[lang="ja"] .feature-content h2,
  html[lang="ko"] .feature-content h2 {
    font-size: clamp(34px, 9.2vw, 48px) !important;
    line-height: 1.15 !important;
  }
}

/* Contact command layout repair: keep the title inside its column on desktop */
.page-contact .contact-workbench {
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 0.62fr) !important;
  gap: clamp(28px, 3.2vw, 58px) !important;
}

.page-contact .contact-identity-panel {
  max-width: 100%;
  overflow: visible;
}

.page-contact .contact-identity-panel h1 {
  max-width: min(980px, 100%) !important;
  font-size: clamp(52px, 5.35vw, 104px) !important;
  line-height: 1.02 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  white-space: normal !important;
}

html[lang="zh"] .page-contact .contact-identity-panel h1,
html[lang="ja"] .page-contact .contact-identity-panel h1,
html[lang="ko"] .page-contact .contact-identity-panel h1 {
  max-width: min(880px, 100%) !important;
  font-size: clamp(46px, 4.45vw, 86px) !important;
  line-height: 1.14 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

html[lang="vi"] .page-contact .contact-identity-panel h1,
html[lang="id"] .page-contact .contact-identity-panel h1 {
  max-width: min(920px, 100%) !important;
  font-size: clamp(44px, 4.6vw, 88px) !important;
  line-height: 1.1 !important;
}

.page-contact .contact-lead-panel {
  z-index: 2;
}

.page-contact .section-kicker,
.page-contact .contact-panel-top strong,
.page-contact .contact-signal-grid span,
.page-contact .contact-route-card a,
.page-contact .contact-route-card p {
  overflow-wrap: anywhere;
}

@media (max-width: 1440px) {
  .page-contact .contact-workbench {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.68fr) !important;
  }

  .page-contact .contact-identity-panel h1 {
    font-size: clamp(48px, 5vw, 82px) !important;
  }
}

@media (max-width: 1180px) {
  .page-contact .contact-workbench {
    grid-template-columns: 1fr !important;
  }

  .page-contact .contact-lead-panel {
    width: min(760px, 100%);
  }
}

@media (max-width: 760px) {
  .page-contact .contact-identity-panel h1,
  html[lang="zh"] .page-contact .contact-identity-panel h1,
  html[lang="ja"] .page-contact .contact-identity-panel h1,
  html[lang="ko"] .page-contact .contact-identity-panel h1,
  html[lang="vi"] .page-contact .contact-identity-panel h1,
  html[lang="id"] .page-contact .contact-identity-panel h1 {
    font-size: clamp(38px, 10.4vw, 52px) !important;
    line-height: 1.12 !important;
  }
}

.page-faq .geo-question-list,
.page-faq .compact-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-height: min(1180px, 112vh);
  overflow: auto;
  padding: 12px 12px 12px 0;
  scrollbar-width: thin;
}

.page-faq .geo-question-item,
.page-faq .answer-index-item {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #f4f7f9;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.018)),
    rgba(12, 15, 18, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.page-faq .geo-question-item[open],
.page-faq .answer-index-item[open] {
  border-color: rgba(19, 137, 255, 0.38);
  background:
    radial-gradient(circle at 92% 8%, rgba(19, 137, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.024)),
    rgba(10, 13, 16, 0.94);
}

.page-faq .geo-question-item summary,
.page-faq .answer-index-item summary {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 138px;
  padding: 18px 44px 18px 18px;
  cursor: pointer;
  list-style: none;
}

.page-faq .geo-question-item summary::-webkit-details-marker,
.page-faq .answer-index-item summary::-webkit-details-marker {
  display: none;
}

.page-faq .geo-question-item summary::after,
.page-faq .answer-index-item summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 24px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #dce8f4;
  font-weight: 950;
}

.page-faq .geo-question-item[open] summary::after,
.page-faq .answer-index-item[open] summary::after {
  content: "-";
  border-color: rgba(19, 137, 255, 0.46);
  color: #7ddcff;
}

.page-faq .geo-question-list span,
.page-faq .compact-answer-grid span {
  color: #7ddcff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-faq .geo-question-list h2,
.page-faq .compact-answer-grid h3 {
  margin: 0;
  color: #f7fafc;
  font-size: clamp(17px, 1.06vw, 22px);
  line-height: 1.18;
}

.page-faq .geo-answer-body,
.page-faq .answer-index-item p {
  padding: 0 18px 18px;
}

.page-faq .geo-answer-body p,
.page-faq .answer-index-item p {
  margin: 0;
  color: rgba(232, 239, 245, 0.74);
  font-size: 15px;
  line-height: 1.58;
}

.page-faq .answer-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.022)),
    rgba(10, 13, 16, 0.9);
}

.page-faq .answer-pagination span {
  flex: 1 1 260px;
  color: rgba(232, 239, 245, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.page-faq .answer-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dce8f4;
  font-size: 13px;
  font-weight: 900;
}

.page-faq .answer-pagination a[aria-current="page"] {
  border-color: rgba(19, 137, 255, 0.58);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(19, 137, 255, 0.62), rgba(148, 160, 172, 0.42)),
    rgba(19, 137, 255, 0.18);
}

@media (max-width: 1180px) {
  .page-faq .geo-question-list,
  .page-faq .compact-answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-faq .geo-question-list,
  .page-faq .compact-answer-grid {
    grid-template-columns: 1fr !important;
    max-height: 78vh;
    padding-right: 4px;
  }

  .page-faq .geo-question-item summary,
  .page-faq .answer-index-item summary {
    min-height: 112px;
    padding: 16px 42px 16px 16px;
  }
}

/* Architecture navigation: five primary doors with compact industrial mega menus */
.site-header {
  overflow: visible;
  z-index: 120;
}

.desktop-nav {
  position: relative;
  align-self: stretch;
}

.desktop-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.desktop-nav .nav-item.has-mega::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.desktop-nav .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link:focus-visible {
  color: var(--white);
}

.has-mega .nav-link::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.65;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 240;
  width: min(760px, calc(100vw - 48px));
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  gap: 14px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(115deg, rgba(5, 8, 11, 0.96), rgba(24, 27, 30, 0.94) 54%, rgba(66, 70, 74, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mega-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), black 42%, rgba(0, 0, 0, 0.22));
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-mega.mega-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-intro {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 12px;
  border-left: 2px solid var(--accent);
}

.mega-intro span,
.mega-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-intro strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.02;
}

.mega-intro p,
.mega-card small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.mega-overview-link {
  width: fit-content;
  margin-top: 4px;
  padding: 9px 11px;
  color: var(--white);
  font-size: 12px;
  font-weight: 860;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.mega-overview-link:hover,
.mega-overview-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.mega-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mega-card {
  min-height: 104px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  white-space: normal !important;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mega-card:hover,
.mega-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mega-card small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.nav-cta {
  white-space: nowrap;
}

.full-span {
  grid-column: 1 / -1;
}

.route-anchor {
  scroll-margin-top: 92px;
}

.module-jump-nav {
  width: min(1440px, calc(100% - 64px));
  margin: clamp(28px, 4vw, 56px) auto clamp(22px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.module-jump-card {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: clamp(16px, 1.8vw, 24px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 88% 18%, rgba(19, 137, 255, 0.24), transparent 34%),
    #111417;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.module-jump-card:hover,
.module-jump-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 88% 18%, rgba(255, 122, 26, 0.28), transparent 34%),
    #13171a;
}

.module-jump-card span {
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 950;
  line-height: 1.06;
}

.module-jump-card small {
  color: rgba(235, 241, 246, 0.68);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .module-jump-nav {
    width: min(100% - 32px, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .module-jump-nav {
    grid-template-columns: 1fr;
  }
}

.page-ecosystem .detail-grid,
.page-supply-chain .strategy-map,
.page-ai-automation .automation-topic-section {
  position: relative;
}

.page-ecosystem .case-section-head,
.page-supply-chain .case-section-head,
.page-ai-automation .case-section-head {
  align-items: end;
}

.page-ai-automation .automation-topic-section {
  padding: clamp(64px, 8vw, 132px) clamp(18px, 7vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-ai-automation .automation-topic-section .detail-grid {
  padding-inline: 0;
  padding-bottom: 0;
}

@media (max-width: 1360px) {
  .desktop-nav {
    gap: clamp(12px, 1.1vw, 18px);
  }

  .desktop-nav .nav-link,
  .nav-cta {
    font-size: 14px;
  }

  .mega-panel {
    width: min(680px, calc(100vw - 32px));
  }
}

@media (max-width: 900px) {
  .desktop-nav .nav-item {
    display: none;
  }

  .mobile-nav a {
    font-size: 18px;
    font-weight: 820;
    letter-spacing: 0;
  }
}

@media (max-width: 760px) {
  .page-ecosystem .detail-grid,
  .page-ai-automation .automation-topic-section {
    padding-inline: 16px;
  }

  .page-ai-automation .automation-topic-section {
    padding-block: 54px;
  }

  .page-ecosystem .case-section-head,
  .page-supply-chain .case-section-head,
  .page-ai-automation .case-section-head {
    align-items: start;
  }
}

/* 2026 global architecture refresh: Apple-like floating nav, precise hero copy rhythm, nested route surfaces */
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  right: auto;
  width: min(1480px, calc(100% - 32px));
  min-height: 58px;
  padding: 0 14px 0 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(6, 7, 9, 0.62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(28px) saturate(150%);
}

.desktop-nav {
  gap: 2px;
  justify-content: center;
}

.desktop-nav .nav-link {
  min-width: 104px;
  justify-content: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link:focus-visible,
.desktop-nav .nav-item.has-mega:hover .nav-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  color: #081016;
  background: linear-gradient(180deg, #ffffff, #d9e4ee);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0;
}

.language-control {
  min-height: 38px;
}

.mega-panel {
  top: calc(100% + 10px);
  width: min(920px, calc(100vw - 44px));
  padding: 12px;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 12px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(120deg, rgba(9, 10, 12, 0.96), rgba(28, 31, 35, 0.94));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.mega-intro {
  min-height: 100%;
  padding: 16px;
  border-left: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.mega-intro strong {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

.mega-intro span,
.mega-card span {
  color: #dce8f3;
  font-size: 11px;
  letter-spacing: 0;
}

.mega-grid {
  gap: 10px;
}

.mega-card {
  min-height: 118px;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.mega-card small {
  font-size: 13px;
  line-height: 1.5;
}

.campaign-hero {
  min-height: 100svh;
  padding-top: 86px;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.96), rgba(4, 5, 7, 0.68) 42%, rgba(4, 5, 7, 0.18)),
    linear-gradient(0deg, rgba(4, 5, 7, 0.76), rgba(4, 5, 7, 0.04) 52%);
}

.hero-copy-block {
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  margin-left: max(32px, calc((100vw - 1560px) / 2 + 32px));
  margin-bottom: 132px;
}

.campaign-hero .release-label {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(230, 240, 249, 0.88);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0;
}

.campaign-hero h1 {
  max-width: 1180px;
  font-size: 82px;
  line-height: 1.02;
  font-weight: 880;
  letter-spacing: 0;
  text-wrap: balance;
}

.campaign-line {
  max-width: 980px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.52;
  font-weight: 520;
  letter-spacing: 0;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 34px;
}

.hero-actions .button {
  min-height: 48px;
  border-radius: 8px;
  padding-inline: 22px;
}

.module-jump-nav {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.detail-card.route-card {
  border-radius: 8px;
}

html[lang="zh"] .desktop-nav .nav-link,
html[lang="ja"] .desktop-nav .nav-link,
html[lang="ko"] .desktop-nav .nav-link {
  min-width: 98px;
  font-size: 15px;
}

html[lang="zh"] .campaign-hero h1,
html[lang="ja"] .campaign-hero h1,
html[lang="ko"] .campaign-hero h1 {
  max-width: 1120px;
  font-size: 72px;
  line-height: 1.12;
  font-weight: 820;
}

html[lang="zh"] .campaign-line,
html[lang="ja"] .campaign-line,
html[lang="ko"] .campaign-line {
  max-width: 1040px;
  font-size: 21px;
  line-height: 1.72;
  font-weight: 480;
}

@media (min-width: 1920px) {
  .campaign-hero h1 {
    font-size: 92px;
  }

  html[lang="zh"] .campaign-hero h1,
  html[lang="ja"] .campaign-hero h1,
  html[lang="ko"] .campaign-hero h1 {
    font-size: 78px;
  }

  .campaign-line {
    font-size: 24px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .campaign-hero h1 {
    font-size: 62px;
  }

  html[lang="zh"] .campaign-hero h1,
  html[lang="ja"] .campaign-hero h1,
  html[lang="ko"] .campaign-hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    min-height: 60px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .mobile-nav {
    inset: 60px 0 auto 0;
  }

  .campaign-hero {
    min-height: 100svh;
    padding-top: 72px;
  }

  .hero-copy-block,
  #home .hero-copy-block {
    width: calc(100% - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 0 16px 86px !important;
  }

  .campaign-hero .release-label {
    font-size: 11px !important;
    line-height: 1.42 !important;
  }

  .campaign-hero h1,
  html[lang="zh"] .campaign-hero h1,
  html[lang="ja"] .campaign-hero h1,
  html[lang="ko"] .campaign-hero h1 {
    font-size: 38px !important;
    line-height: 1.14 !important;
    text-wrap: balance;
  }

  .campaign-line,
  html[lang="zh"] .campaign-line,
  html[lang="ja"] .campaign-line,
  html[lang="ko"] .campaign-line {
    margin-top: 18px;
    font-size: 16px !important;
    line-height: 1.62 !important;
    font-weight: 470;
  }

  .signal-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    right: 16px;
    bottom: 16px;
    opacity: 0.72;
  }
}

/* 2026-06-18: restore the lighter original header treatment and reduce oversized English hero copy. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 62px;
  padding: 0 clamp(16px, 4vw, 52px);
  transform: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(11, 12, 14, 0.4);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.desktop-nav {
  gap: clamp(16px, 2vw, 28px);
  justify-content: center;
}

.desktop-nav .nav-link {
  min-width: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-radius: 0;
  font-size: 15.6px;
  font-weight: 650;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link:focus-visible,
.desktop-nav .nav-item.has-mega:hover .nav-link {
  color: var(--white);
  background: transparent;
}

.has-mega .nav-link::after {
  opacity: 0.45;
}

.header-actions {
  gap: 12px;
}

.language-control {
  min-height: 38px;
  font-size: 13px;
}

.nav-cta {
  min-height: 42px;
  padding: 0 19px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 15.6px;
  font-weight: 800;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.campaign-hero {
  padding-top: 72px;
}

html[lang="en"] .campaign-hero h1,
html:not([lang]) .campaign-hero h1 {
  max-width: 980px;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 860;
}

html[lang="en"] .campaign-line,
html:not([lang]) .campaign-line {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.56;
  font-weight: 500;
}

@media (min-width: 1920px) {
  html[lang="en"] .campaign-hero h1,
  html:not([lang]) .campaign-hero h1 {
    font-size: 68px;
  }

  html[lang="en"] .campaign-line,
  html:not([lang]) .campaign-line {
    font-size: 19px;
  }
}

@media (max-width: 1360px) {
  .site-header {
    gap: 12px;
    padding-inline: clamp(16px, 2.6vw, 34px);
  }

  .desktop-nav {
    gap: 10px;
  }

  .desktop-nav .nav-link,
  .nav-cta {
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    width: 100%;
  }
}

/* 2026-06-18: remove decorative process rail and rebalance hero copy placement. */
.signal-rail {
  display: none !important;
}

.campaign-hero {
  align-items: center;
  padding-top: 62px;
}

.hero-copy-block,
#home .hero-copy-block {
  width: min(960px, calc(100% - 96px));
  max-width: 960px;
  margin: 0 0 0 clamp(56px, 10.5vw, 204px);
  transform: translateY(-3vh);
}

.campaign-hero .release-label {
  margin-bottom: 20px;
}

html[lang="en"] .campaign-hero h1,
html:not([lang]) .campaign-hero h1 {
  max-width: 920px;
  font-size: 60px;
  line-height: 1.08;
}

html[lang="en"] .campaign-line,
html:not([lang]) .campaign-line {
  max-width: 790px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.56;
}

.hero-actions {
  margin-top: 32px;
}

html[lang="zh"] .hero-copy-block,
html[lang="ja"] .hero-copy-block,
html[lang="ko"] .hero-copy-block {
  width: min(1080px, calc(100% - 96px));
  max-width: 1080px;
}

html[lang="zh"] .campaign-line,
html[lang="ja"] .campaign-line,
html[lang="ko"] .campaign-line {
  max-width: 920px;
}

@media (min-width: 1920px) {
  html[lang="en"] .campaign-hero h1,
  html:not([lang]) .campaign-hero h1 {
    font-size: 62px;
  }
}

@media (max-width: 1180px) {
  .campaign-hero {
    align-items: end;
  }

  .hero-copy-block,
  #home .hero-copy-block {
    width: min(820px, calc(100% - 56px));
    max-width: 820px;
    margin: 0 28px clamp(92px, 13vh, 128px);
    transform: none;
  }
}

@media (max-width: 760px) {
  .campaign-hero {
    align-items: end;
  }

  .hero-copy-block,
  #home .hero-copy-block {
    width: calc(100% - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 0 16px 86px !important;
    transform: none;
  }
}

/* 2026-06-18: final multilingual type scale and AI customer-service avatar. */
body {
  font-size: clamp(15px, 0.94vw, 17px);
  line-height: 1.58;
}

:where(p, li, dd, summary, input, textarea, select, button, a, small) {
  line-height: 1.52;
}

:where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1) {
  max-width: min(980px, 92vw) !important;
  font-size: clamp(42px, 4.45vw, 68px) !important;
  line-height: 1.1 !important;
  font-weight: 820 !important;
}

html[lang="en"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
html[lang="vi"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
html[lang="id"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1) {
  font-size: clamp(40px, 4.1vw, 64px) !important;
  line-height: 1.11 !important;
}

html[lang="zh"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
html[lang="ja"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
html[lang="ko"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1) {
  max-width: min(1040px, 92vw) !important;
  font-size: clamp(39px, 3.95vw, 62px) !important;
  line-height: 1.16 !important;
}

:where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2, .contact-route-head h2, .page-contact .seo-faq-section h2, .editorial-strip h2) {
  max-width: min(880px, 100%) !important;
  font-size: clamp(30px, 3.45vw, 56px) !important;
  line-height: 1.14 !important;
  font-weight: 780 !important;
}

html[lang="en"] :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2, .contact-route-head h2, .page-contact .seo-faq-section h2, .editorial-strip h2),
html[lang="vi"] :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2, .contact-route-head h2, .page-contact .seo-faq-section h2, .editorial-strip h2),
html[lang="id"] :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2, .contact-route-head h2, .page-contact .seo-faq-section h2, .editorial-strip h2) {
  font-size: clamp(28px, 3.05vw, 50px) !important;
}

:where(.case-card-copy h3, .trade-deal-copy h3, .seo-faq-grid h3, .crawler-playbook-grid h3, .data-cleaning-grid h3, .automation-learn-card h2, .module-jump-card span, .detail-card h2, .route-card h2) {
  font-size: clamp(20px, 1.65vw, 30px) !important;
  line-height: 1.18 !important;
  font-weight: 780 !important;
}

:where(.campaign-line, .sub-hero p, .case-section-head p, .detail-card p, .route-card p, .offer-lead, .feature-content p, .automation-learn-card p, .crawler-playbook-grid p, .data-cleaning-grid p, .seo-faq-grid p, .contact-route-head p:not(.section-kicker)) {
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.62 !important;
  font-weight: 460 !important;
}

html[lang="en"] .campaign-line,
html[lang="vi"] .campaign-line,
html[lang="id"] .campaign-line {
  max-width: 760px !important;
  font-size: clamp(15px, 0.96vw, 17px) !important;
}

.desktop-nav .nav-link,
.nav-cta,
.language-control {
  font-size: clamp(13px, 0.8vw, 15px) !important;
}

.mega-intro strong {
  font-size: clamp(22px, 1.7vw, 28px) !important;
}

.mega-card small,
.mega-intro p {
  font-size: clamp(12px, 0.78vw, 14px) !important;
}

.assistant-widget {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}

.assistant-toggle {
  position: relative;
  width: 64px !important;
  height: 64px !important;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px !important;
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.7), transparent 18%),
    linear-gradient(145deg, rgba(19, 137, 255, 0.98), rgba(78, 92, 116, 0.92) 54%, rgba(255, 122, 26, 0.98));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 0 7px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  overflow: visible;
}

.assistant-toggle::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 22px;
  border: 1px solid rgba(125, 220, 255, 0.22);
  opacity: 0.78;
  pointer-events: none;
}

.assistant-toggle::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(5, 8, 12, 0.72);
  border-radius: 999px;
  background: #7dffbf;
  box-shadow: 0 0 14px rgba(125, 255, 191, 0.9);
}

.assistant-bot-face {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 32px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px 12px 10px 10px;
  transform: translateX(-50%);
  background: rgba(5, 8, 12, 0.2);
}

.assistant-bot-face::before {
  content: "";
  position: absolute;
  top: -7px;
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.assistant-bot-face span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.assistant-bot-label {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.02em;
}

.assistant-toggle:hover,
.assistant-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.38),
    0 0 0 9px rgba(125, 220, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
  html[lang="en"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
  html[lang="vi"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
  html[lang="id"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
  html[lang="zh"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
  html[lang="ja"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1),
  html[lang="ko"] :where(.campaign-hero h1, .sub-hero h1, .motion-subpage .sub-hero h1, .case-detail-copy h1) {
    font-size: clamp(31px, 8.7vw, 42px) !important;
    line-height: 1.17 !important;
  }

  :where(.case-section-head h2, .seo-faq-section h2, .case-study-head h2, .contact-copy h2, .shop-head h2, .strategy-band h2, .workflow-visual-showcase h2, .automation-learning-head h2, .crawler-playbook-section h2, .data-cleaning-section h2, .automation-glossary-section h2, .contact-route-head h2, .page-contact .seo-faq-section h2, .editorial-strip h2) {
    font-size: clamp(26px, 7.6vw, 36px) !important;
    line-height: 1.18 !important;
  }

  :where(.campaign-line, .sub-hero p, .case-section-head p, .detail-card p, .route-card p, .offer-lead, .feature-content p, .automation-learn-card p, .crawler-playbook-grid p, .data-cleaning-grid p, .seo-faq-grid p, .contact-route-head p:not(.section-kicker)) {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .assistant-toggle {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
  }

  .assistant-bot-face {
    top: 11px;
    width: 28px;
    height: 19px;
  }

  .assistant-bot-label {
    bottom: 8px;
    font-size: 11px;
  }
}
