@font-face {
  font-family: "Alibaba PuHuiTi Web";
  src: url("fonts/alibaba-puhuiti/AlibabaPuHuiTi-3-55-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi Web";
  src: url("fonts/alibaba-puhuiti/AlibabaPuHuiTi-3-65-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi Web";
  src: url("fonts/alibaba-puhuiti/AlibabaPuHuiTi-3-75-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi Web";
  src: url("fonts/alibaba-puhuiti/AlibabaPuHuiTi-3-85-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi Web";
  src: url("fonts/alibaba-puhuiti/AlibabaPuHuiTi-3-95-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --overview-font: "Alibaba PuHuiTi Web", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --overview-ink: #142033;
  --overview-text: #34445c;
  --overview-muted: #6a7a90;
  --overview-line: #dce6f1;
  --overview-cyan: #13c2c2;
  --overview-blue: #4e8dff;
  --overview-purple: #7d8cff;
  --overview-bg: #f7faff;
  --overview-surface: rgba(255, 255, 255, 0.86);
  --overview-radius: 12px;
  --overview-shadow: 0 18px 44px rgba(37, 64, 105, 0.08);
  --overview-section-space: clamp(5.5rem, 9vw, 8rem);
  --overview-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--overview-ink);
  background: #fff;
  font-family: var(--overview-font);
  letter-spacing: 0;
  overflow-x: clip;
}

body,
button,
a {
  font-family: var(--overview-font);
  letter-spacing: 0;
}

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

button {
  color: inherit;
}

main {
  min-width: 0;
}

.overview-shell {
  width: min(100% - 3rem, 76rem);
  margin-inline: auto;
}

.overview-section {
  padding-block: var(--overview-section-space);
  scroll-margin-top: calc(var(--publink-nav-height, 64px) + 1.5rem);
}

.overview-section__head {
  width: min(100%, 56rem);
  margin: 0 auto clamp(2.75rem, 5vw, 4.25rem);
  text-align: center;
}

.overview-section__head h2 {
  margin: 0;
  color: var(--overview-ink);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
  line-height: 1.22;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.overview-section__head p {
  max-width: 44rem;
  margin: 1rem auto 0;
  color: var(--overview-muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.85;
  text-wrap: pretty;
}

.overview-hero {
  position: relative;
  min-height: min(52rem, calc(100vh - var(--publink-nav-height, 64px)));
  padding: calc(var(--publink-nav-height, 64px) + clamp(4.25rem, 8vw, 7.25rem)) 0 clamp(5rem, 9vw, 7.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(19, 194, 194, 0.1), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(125, 140, 255, 0.12), transparent 31%),
    linear-gradient(135deg, #fff 0%, #f8fbff 50%, #f3f5ff 100%);
}

.overview-hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -16rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(125, 140, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(125, 140, 255, 0.025),
    0 0 0 10rem rgba(78, 141, 255, 0.02);
  pointer-events: none;
}

.overview-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.overview-hero__copy {
  min-width: 0;
}

.overview-hero__copy h1 {
  margin: 0;
  color: var(--overview-ink);
  font-size: clamp(2.75rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.overview-hero__copy h1::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 4px;
  margin-top: 1.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--overview-cyan), var(--overview-blue), var(--overview-purple));
}

.overview-hero__copy p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--overview-text);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.overview-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.overview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.15rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms var(--overview-ease),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.overview-button:hover {
  transform: translateY(-2px);
}

.overview-button:focus-visible,
.scenario-links a:focus-visible,
.industry-tab:focus-visible,
.industry-stage__copy a:focus-visible,
.scenario-group__visual:focus-visible {
  outline: 3px solid rgba(78, 141, 255, 0.26);
  outline-offset: 3px;
}

.overview-button--primary {
  color: #fff;
  background: linear-gradient(115deg, var(--overview-cyan), var(--overview-blue) 62%, var(--overview-purple));
  box-shadow: 0 14px 28px rgba(78, 141, 255, 0.18);
}

.overview-button--primary:hover {
  box-shadow: 0 18px 34px rgba(78, 141, 255, 0.24);
}

.overview-button--secondary {
  color: var(--overview-ink);
  border-color: rgba(78, 141, 255, 0.2);
  background: rgba(255, 255, 255, 0.76);
}

.overview-button--secondary:hover {
  border-color: rgba(78, 141, 255, 0.42);
  background: #fff;
}

.overview-hero__visual {
  min-width: 0;
}

.asset-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 16rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px dashed rgba(78, 141, 255, 0.32);
  border-radius: var(--overview-radius);
  color: #5b6e87;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 245, 255, 0.7)),
    #f2f7fd;
}

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

.asset-slot::before {
  inset: 13%;
  border: 1px solid rgba(78, 141, 255, 0.1);
  border-radius: calc(var(--overview-radius) - 2px);
}

.asset-slot::after {
  width: 4.75rem;
  height: 4.75rem;
  border: 1px solid rgba(125, 140, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 1.6rem rgba(78, 141, 255, 0.035),
    0 0 0 3.2rem rgba(19, 194, 194, 0.025);
}

.asset-slot__label,
.asset-slot__hint {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.asset-slot__label {
  align-self: end;
  margin-bottom: 0.35rem;
  color: var(--overview-text);
  font-weight: 700;
}

.asset-slot__hint {
  align-self: start;
  color: var(--overview-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.asset-slot--hero {
  aspect-ratio: 16 / 10;
  min-height: 25rem;
  border-style: solid;
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 140, 255, 0.11), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 244, 255, 0.72));
  box-shadow: var(--overview-shadow);
}

.overview-hero__legend {
  display: grid;
  grid-template-columns: auto minmax(2rem, 1fr) auto minmax(2rem, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.1rem;
  color: var(--overview-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.overview-hero__legend i {
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 194, 194, 0.35), rgba(125, 140, 255, 0.4));
}

.overview-hero__legend strong {
  color: var(--overview-blue);
  font-weight: 700;
}

.scenario-section {
  background: #fff;
}

.scenario-groups {
  display: grid;
  gap: clamp(4.5rem, 8vw, 7rem);
}

.scenario-group {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.scenario-group--reverse .scenario-group__visual {
  order: 2;
}

.scenario-group--reverse .scenario-group__content {
  order: 1;
}

.scenario-group__visual {
  position: relative;
  display: block;
  min-width: 0;
}

.scenario-group__visual .asset-slot {
  transition:
    transform 240ms var(--overview-ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.scenario-group__visual:hover .asset-slot {
  transform: translateY(-3px);
  border-color: rgba(78, 141, 255, 0.5);
  box-shadow: var(--overview-shadow);
}

.scenario-group__visual-link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(78, 141, 255, 0.16);
  border-radius: 7px;
  color: var(--overview-blue);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 64, 105, 0.08);
}

.scenario-group__visual-link b {
  transition: transform 180ms ease;
}

.scenario-group__visual:hover .scenario-group__visual-link b {
  transform: translate(2px, -2px);
}

.scenario-group__content {
  min-width: 0;
}

.scenario-group__number {
  margin-bottom: 1rem;
  color: var(--overview-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.scenario-group__number::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  margin-left: 0.75rem;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--overview-cyan), transparent);
}

.scenario-group__content h3 {
  margin: 0;
  color: var(--overview-ink);
  font-size: clamp(1.7rem, 2.65vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

.scenario-group__content > p {
  margin: 1rem 0 1.65rem;
  color: var(--overview-muted);
  font-size: 1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.scenario-links {
  border-top: 1px solid var(--overview-line);
}

.scenario-links a {
  display: grid;
  grid-template-columns: 2.45rem minmax(8.75rem, 0.55fr) minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 4.25rem;
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid var(--overview-line);
  border-radius: 6px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--overview-ease);
}

.scenario-links a:hover {
  background: linear-gradient(90deg, rgba(230, 247, 255, 0.72), rgba(241, 239, 255, 0.48));
  box-shadow: inset 3px 0 0 rgba(75, 132, 255, 0.56);
  transform: translateX(2px);
}

.scenario-link__icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(86, 142, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(230, 247, 255, 0.92), rgba(239, 236, 255, 0.88));
  color: #4d83ff;
  box-shadow: 0 5px 14px rgba(59, 118, 210, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.scenario-link__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-links a:hover .scenario-link__icon {
  border-color: rgba(102, 111, 255, 0.42);
  color: #655cf3;
  box-shadow: 0 7px 18px rgba(87, 104, 232, 0.18);
}

.scenario-links b {
  min-width: 0;
  color: var(--overview-ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.scenario-links small {
  min-width: 0;
  color: var(--overview-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  white-space: nowrap;
}

.scenario-links i {
  color: var(--overview-blue);
  font-style: normal;
  transition: transform 180ms ease;
}

.scenario-links a:hover i {
  transform: translate(2px, -2px);
}

.solution-bridge {
  padding: 0 0 clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, #fff, #f7faff);
}

.solution-bridge__inner {
  display: grid;
  grid-template-columns: auto minmax(3rem, 1fr) auto minmax(3rem, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.5rem;
  padding: 1rem 1.5rem;
  border-block: 1px solid var(--overview-line);
  color: var(--overview-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.solution-bridge__inner i {
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 194, 194, 0.38), rgba(125, 140, 255, 0.42));
}

.solution-bridge__inner strong {
  color: var(--overview-blue);
  font-weight: 800;
}

.industry-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(125, 140, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.industry-stage {
  display: grid;
  grid-template-columns: minmax(12.5rem, 0.72fr) minmax(0, 1.4fr) minmax(16rem, 0.88fr);
  min-height: 35rem;
  overflow: hidden;
  border: 1px solid var(--overview-line);
  border-radius: var(--overview-radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--overview-shadow);
}

.industry-stage__tabs {
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  padding: 0.65rem;
  border-right: 1px solid var(--overview-line);
  background: rgba(244, 248, 253, 0.8);
}

.industry-tab {
  position: relative;
  display: grid;
  gap: 0.25rem;
  align-content: center;
  width: 100%;
  min-height: 0;
  padding: 0.8rem 1rem 0.8rem 1.25rem;
  border: 0;
  border-radius: 7px;
  color: var(--overview-muted);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.industry-tab::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(var(--overview-cyan), var(--overview-purple));
  opacity: 0;
  transform: scaleY(0.4);
  transition:
    opacity 180ms ease,
    transform 220ms var(--overview-ease);
}

.industry-tab:hover {
  color: var(--overview-ink);
  background: rgba(255, 255, 255, 0.66);
}

.industry-tab.is-active {
  color: var(--overview-ink);
  background: #fff;
  box-shadow: 0 8px 20px rgba(37, 64, 105, 0.06);
}

.industry-tab.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.industry-tab span {
  font-size: 0.96rem;
  font-weight: 700;
}

.industry-tab small {
  color: inherit;
  font-size: 0.74rem;
  line-height: 1.4;
  opacity: 0.78;
}

.industry-stage__visual {
  display: grid;
  align-items: center;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(240, 247, 255, 0.78), rgba(247, 246, 255, 0.72));
}

.asset-slot--industry {
  aspect-ratio: 16 / 10;
  min-height: 20rem;
  border-style: solid;
}

.industry-stage__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 1px solid var(--overview-line);
}

.industry-stage__index {
  color: var(--overview-blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.industry-stage__copy h3 {
  margin: 0.9rem 0 1rem;
  color: var(--overview-ink);
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.industry-stage__copy p {
  margin: 0;
  color: var(--overview-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.industry-stage__copy a {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  align-self: flex-start;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(78, 141, 255, 0.35);
  color: var(--overview-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.industry-stage__copy a span {
  transition: transform 180ms ease;
}

.industry-stage__copy a:hover span {
  transform: translate(2px, -2px);
}

.industry-stage.is-switching .industry-stage__visual,
.industry-stage.is-switching .industry-stage__copy {
  animation: stageSwap 260ms var(--overview-ease) both;
}

.overview-cta {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #fff;
}

.overview-cta__inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-block: 1px solid var(--overview-line);
}

.overview-cta h2 {
  margin: 0;
  color: var(--overview-ink);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.overview-cta p {
  margin: 0.8rem 0 0;
  color: var(--overview-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.overview-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #081a42;
}

.overview-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 7rem;
}

.overview-footer__brand img {
  display: block;
  width: 10rem;
  height: auto;
}

.overview-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.84rem;
}

.overview-footer a {
  transition: color 180ms ease;
}

.overview-footer a:hover {
  color: #fff;
}

.overview-footer__inner > span {
  font-size: 0.78rem;
}

/* Shared footer structure used across the main site. */
.site-footer {
  clear: both;
  margin-top: 0;
  padding: 3.25rem 0 2.25rem;
  background: #0b1a3a;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16.5rem, 20rem);
  column-gap: clamp(2rem, 4vw, 3.5rem);
  row-gap: 2rem;
  align-items: start;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  min-width: 0;
}

.site-footer-col {
  min-width: 0;
}

.site-footer h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.site-footer-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  word-break: keep-all;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  color: #fff;
}

.site-footer-brand {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
  align-content: start;
  min-width: 0;
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-logo {
  display: block;
  width: auto;
  height: 2rem;
}

.site-footer-contact {
  display: grid;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  line-height: 1.55;
  word-break: keep-all;
}

.site-footer-contact strong,
.site-footer-contact a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
  max-width: 20rem;
  margin-top: 0.25rem;
}

.site-footer-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
}

.site-footer-qr-box {
  position: relative;
  width: 3.1rem;
  height: 3.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  background: #fff;
}

.site-footer-qr-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer-qr-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.65rem;
  font-weight: 800;
}

.site-footer-qr-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer-brand {
    max-width: 28rem;
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms var(--overview-ease),
    transform 620ms var(--overview-ease);
}

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stageSwap {
  from {
    opacity: 0.35;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 68rem) {
  .overview-hero {
    min-height: 0;
  }

  .overview-hero__inner {
    grid-template-columns: 1fr;
  }

  .overview-hero__copy {
    max-width: 48rem;
    text-align: center;
    margin-inline: auto;
  }

  .overview-hero__copy h1::after {
    margin-inline: auto;
  }

  .overview-hero__copy p {
    margin-inline: auto;
  }

  .overview-hero__actions {
    justify-content: center;
  }

  .overview-hero__visual {
    width: min(100%, 48rem);
    margin-inline: auto;
  }

  .scenario-group {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
  }

  .industry-stage {
    grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.3fr);
  }

  .industry-stage__copy {
    grid-column: 1 / -1;
    min-height: 14rem;
    border-top: 1px solid var(--overview-line);
    border-left: 0;
  }
}

@media (max-width: 48rem) {
  :root {
    --overview-section-space: 4.75rem;
  }

  .overview-shell {
    width: min(100% - 2rem, 76rem);
  }

  .overview-hero {
    padding-top: calc(var(--publink-nav-height, 112px) + 3.75rem);
    padding-bottom: 4.75rem;
  }

  .overview-hero__copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .overview-hero__copy p {
    font-size: 1rem;
  }

  .overview-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .overview-button {
    width: 100%;
  }

  .asset-slot--hero {
    min-height: 18rem;
  }

  .overview-hero__legend,
  .solution-bridge__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.6rem;
    text-align: center;
  }

  .overview-hero__legend i,
  .solution-bridge__inner i {
    width: 1px;
    height: 1.4rem;
    background: linear-gradient(rgba(19, 194, 194, 0.38), rgba(125, 140, 255, 0.42));
  }

  .overview-section__head {
    margin-bottom: 2.5rem;
  }

  .overview-section__head h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .scenario-groups {
    gap: 4.5rem;
  }

  .scenario-group,
  .scenario-group--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .scenario-group--reverse .scenario-group__visual,
  .scenario-group--reverse .scenario-group__content {
    order: initial;
  }

  .asset-slot {
    min-height: 15rem;
  }

  .scenario-links a {
    grid-template-columns: 2.45rem minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding-inline: 0.35rem;
  }

  .scenario-links b {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    white-space: normal;
  }

  .scenario-links small {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    white-space: normal;
  }

  .scenario-links i {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .scenario-link__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .solution-bridge {
    padding-bottom: 0;
  }

  .solution-bridge__inner {
    min-height: 12rem;
  }

  .industry-stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
    border-inline: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .industry-stage__tabs {
    display: flex;
    gap: 0.5rem;
    order: 1;
    margin-inline: -1rem;
    padding: 0 1rem 0.75rem;
    overflow-x: auto;
    border-right: 0;
    background: transparent;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .industry-stage__tabs::-webkit-scrollbar {
    display: none;
  }

  .industry-tab {
    flex: 0 0 auto;
    width: auto;
    min-width: 8.5rem;
    min-height: 4rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--overview-line);
    background: rgba(255, 255, 255, 0.72);
    scroll-snap-align: start;
  }

  .industry-tab::before {
    top: auto;
    right: 20%;
    bottom: -1px;
    left: 20%;
    width: auto;
    height: 3px;
    transform: scaleX(0.4);
  }

  .industry-tab.is-active::before {
    transform: scaleX(1);
  }

  .industry-stage__visual {
    order: 2;
    padding: 1rem 0;
    background: transparent;
  }

  .asset-slot--industry {
    min-height: 16rem;
  }

  .industry-stage__copy {
    order: 3;
    min-height: 0;
    padding: 1.5rem 0 0;
    border: 0;
  }

  .overview-cta__inner {
    display: grid;
    text-align: center;
  }

  .overview-cta__inner .overview-button {
    justify-self: center;
  }

  .overview-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    justify-items: center;
    padding-block: 2.5rem;
    text-align: center;
  }

  .overview-footer nav {
    gap: 0.85rem 1.25rem;
  }
}

/* Final section copy alignment: descriptions follow the scene-link column. */
@media (min-width: 64.01rem) {
  .scenario-group__content > p {
    width: 100%;
    font-size: clamp(0.94rem, 1.05vw, 1rem);
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: nowrap;
  }
}

/* Industry overview: every option carries its own context and destination. */
.industry-accordion {
  min-width: 0;
}

.industry-accordion__track {
  display: flex;
  gap: 0.75rem;
  min-height: 30rem;
  padding: 0.35rem 0.15rem 1.2rem;
}

.industry-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(163, 185, 220, 0.42);
  border-radius: 8px;
  color: var(--overview-ink);
  background: #f7faff;
  box-shadow: 0 14px 34px rgba(38, 64, 105, 0.07);
  cursor: pointer;
  isolation: isolate;
  outline: none;
  transition:
    flex-grow 460ms var(--overview-ease),
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--overview-ease);
}

.industry-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(19, 194, 194, 0.9), rgba(78, 141, 255, 0.78), rgba(125, 140, 255, 0.88));
  opacity: 0;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 220ms ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 251, 255, 0.02) 8%,
    rgba(247, 251, 255, 0.18) 38%,
    rgba(247, 251, 255, 0.96) 69%,
    #f7faff 100%
  );
  pointer-events: none;
}

.industry-card:is(:hover, :focus-visible) {
  border-color: rgba(78, 141, 255, 0.46);
}

.industry-card.is-active {
  flex-grow: 2.45;
  border-color: transparent;
  box-shadow:
    0 20px 48px rgba(42, 73, 127, 0.12),
    0 0 28px rgba(105, 129, 255, 0.08);
  transform: translateY(-4px);
}

.industry-card.is-active::before {
  opacity: 1;
}

.industry-card > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.76) contrast(0.96);
  object-position: center 42%;
  transform: scale(var(--industry-crop, 1.025));
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 420ms var(--overview-ease);
}

.industry-card.is-active > img {
  opacity: 0.94;
  filter: saturate(0.92) contrast(1);
  transform: scale(calc(var(--industry-crop, 1.025) + 0.02));
}

.industry-card--robot > img,
.industry-card--manufacturing > img,
.industry-card--medical > img,
.industry-card--hardware > img,
.industry-card--global > img {
  --industry-crop: 1.015;
}

.industry-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.45rem;
  padding: 1.35rem 1rem 1.15rem;
}

.industry-card__content h3 {
  margin: 0;
  color: var(--overview-ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.industry-card__content > span {
  color: var(--overview-muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

.industry-card__content p,
.industry-card__content a {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 360ms var(--overview-ease),
    margin 280ms ease,
    opacity 220ms ease,
    transform 320ms var(--overview-ease);
}

.industry-card__content p {
  color: var(--overview-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.industry-card__content a {
  display: inline-flex;
  width: max-content;
  gap: 0.45rem;
  align-items: center;
  color: var(--overview-blue);
  font-size: 0.84rem;
  font-weight: 700;
}

.industry-card__content a b {
  font-weight: inherit;
  transition: transform 180ms ease;
}

.industry-card__content a:hover b {
  transform: translate(2px, -2px);
}

.industry-card.is-active .industry-card__content {
  gap: 0.55rem;
  padding: 1.55rem 1.35rem 1.35rem;
}

.industry-card.is-active .industry-card__content h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.industry-card.is-active .industry-card__content p {
  max-height: 7rem;
  margin-top: 0.2rem;
  opacity: 1;
  transform: none;
}

.industry-card.is-active .industry-card__content a {
  max-height: 2rem;
  margin-top: 0.45rem;
  opacity: 1;
  transform: none;
}

@media (max-width: 68rem) {
  .industry-accordion__track {
    min-height: 29rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .industry-accordion__track::-webkit-scrollbar {
    display: none;
  }

  .industry-card,
  .industry-card.is-active {
    flex: 0 0 min(46vw, 21rem);
    min-width: min(46vw, 21rem);
    transform: none;
    scroll-snap-align: center;
  }

  .industry-card::before {
    opacity: 0;
  }

  .industry-card.is-active::before {
    opacity: 1;
  }

  .industry-card__content,
  .industry-card.is-active .industry-card__content {
    gap: 0.5rem;
    padding: 1.35rem 1.1rem 1.2rem;
  }

  .industry-card__content h3,
  .industry-card.is-active .industry-card__content h3 {
    font-size: 1.35rem;
  }

  .industry-card__content p,
  .industry-card__content a {
    max-height: 7rem;
    opacity: 1;
    transform: none;
  }

  .industry-card__content p {
    margin-top: 0.15rem;
  }

  .industry-card__content a {
    max-height: 2rem;
    margin-top: 0.35rem;
  }
}

@media (max-width: 48rem) {
  .industry-accordion__track {
    min-height: 28rem;
  }

  .industry-card,
  .industry-card.is-active {
    flex-basis: min(84vw, 21rem);
    min-width: min(84vw, 21rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-card,
  .industry-card > img,
  .industry-card__content p,
  .industry-card__content a {
    transition-duration: 0.01ms;
  }
}

/* Full-bleed collection hero: the visual is the opening scene, not a floating card. */
.overview-hero {
  padding: var(--publink-nav-height, 64px) 0 0;
}

.overview-hero__media.overview-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.overview-hero__copy {
  top: clamp(2.25rem, 5vw, 4.75rem);
  width: calc(100% - 3rem);
}

.overview-hero__copy h1 {
  font-size: clamp(2.15rem, 3.25vw, 3.35rem);
  line-height: 1.15;
  white-space: nowrap;
  text-wrap: nowrap;
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: var(--publink-nav-height, 112px);
    padding-bottom: 0;
  }

  .overview-hero__copy {
    top: 1.75rem;
    width: calc(100% - 2rem);
  }

  .overview-hero__copy h1 {
    max-width: 22rem;
    margin-inline: auto;
    font-size: clamp(1.75rem, 7.5vw, 2.05rem);
    line-height: 1.18;
    white-space: normal;
    text-wrap: balance;
  }
}

/* Final collection hero sizing and CTA. */
.overview-hero {
  padding: var(--publink-nav-height, 64px) 0 clamp(4rem, 7vw, 6rem);
}

.overview-hero__media.overview-shell {
  height: clamp(31rem, 64vh, 40rem);
  aspect-ratio: auto;
}

.overview-hero__copy {
  top: clamp(3rem, 5vw, 4.5rem);
  pointer-events: auto;
}

.overview-hero__cta {
  margin: clamp(1.75rem, 3vw, 2.4rem) auto 0;
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: var(--publink-nav-height, 112px);
    padding-bottom: 4.25rem;
  }

  .overview-hero__media.overview-shell {
    height: clamp(27rem, 62svh, 33rem);
    aspect-ratio: auto;
  }

  .overview-hero__copy {
    top: 2.25rem;
  }

  .overview-section__head h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 23rem) {
  .overview-hero__copy h1,
  .overview-section__head h2 {
    font-size: 1.7rem;
  }
}

/* Final collection typography: this must remain after legacy page variants. */
@media (min-width: 64.01rem) {
  .scenario-group__content h3 {
    font-size: 2.1rem;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: nowrap;
  }
}

@media (max-width: 48rem) {
  .overview-section__head h2,
  .overview-section__head p,
  .scenario-group__content h3,
  .scenario-group__content > p {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .overview-section__head h2,
  .scenario-group__content h3 {
    text-wrap: balance;
  }
}

/* Use color as a semantic reading cue, not as decoration across every title. */
.overview-title__accent {
  color: #347ff2;
  background: linear-gradient(100deg, #18bec8 0%, #438df5 56%, #6d78f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scenario-title__accent {
  color: #347ff2;
}

/* Keep collection headings readable without forcing Chinese copy outside its container. */
@media (min-width: 64.01rem) {
  .scenario-group__content h3 {
    font-size: 2.1rem;
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

@media (max-width: 48rem) {
  .overview-section__head h2,
  .overview-section__head p,
  .scenario-group__content h3,
  .scenario-group__content > p {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .overview-section__head h2,
  .scenario-group__content h3 {
    text-wrap: balance;
  }
}

/* Final collection section typography and interaction guardrails. */
.overview-section__head {
  width: min(100%, 78rem);
}

.overview-section__head h2 {
  font-size: 2.65rem;
  line-height: 1.2;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: nowrap;
}

.overview-section__head p {
  max-width: 72rem;
  font-size: 1.05rem;
  line-height: 1.75;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: nowrap;
}

.scenario-group__content h3 {
  font-size: 2.2rem;
  line-height: 1.24;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.scenario-group__content > p {
  max-width: none;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.scenario-group__visual {
  cursor: default;
}

.scenario-group__visual:hover img {
  transform: none;
  filter: drop-shadow(0 22px 34px rgba(45, 72, 118, 0.1));
}

@media (max-width: 64rem) {
  .overview-section__head {
    width: min(100%, 52rem);
  }

  .overview-section__head h2 {
    font-size: 2.15rem;
    white-space: normal;
    text-wrap: balance;
  }

  .overview-section__head p {
    max-width: 48rem;
    white-space: normal;
    text-wrap: pretty;
  }

  .scenario-group__content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 48rem) {
  .overview-section__head h2 {
    font-size: 1.85rem;
  }

  .overview-section__head p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .scenario-group__content h3 {
    font-size: 1.75rem;
    text-wrap: pretty;
  }
}

/* Refined short hero: keep this block last so legacy variants cannot override it. */
.overview-hero {
  min-height: 0;
  padding: var(--publink-nav-height, 64px) 0 0;
  background: #f8fbff;
}

.overview-hero__media.overview-shell {
  width: 100%;
  height: clamp(25rem, 43vh, 28rem);
  aspect-ratio: auto;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.overview-hero__copy {
  top: clamp(2.5rem, 4.5vw, 3.75rem);
  width: min(calc(100% - 3rem), 74rem);
  padding-inline: 0;
}

.overview-hero__copy h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.15rem, 2.8vw, 2.9rem);
  line-height: 1.16;
  white-space: nowrap;
  text-wrap: nowrap;
}

.overview-hero__copy h1 .semantic-chunk,
.overview-hero__copy h1 .overview-hero__accent {
  display: inline;
}

.overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
  margin-left: 0.35em;
}

.overview-hero__cta {
  width: auto;
  min-width: 8.75rem;
  margin: clamp(1.25rem, 2.2vw, 1.75rem) auto 0;
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: var(--publink-nav-height, 112px);
  }

  .overview-hero__media.overview-shell {
    height: clamp(22rem, 51svh, 25rem);
  }

  .overview-hero__copy {
    top: 2rem;
    width: calc(100% - 2rem);
  }

  .overview-hero__copy h1 {
    max-width: 21rem;
    margin-inline: auto;
    font-size: clamp(1.65rem, 7.1vw, 1.95rem);
    line-height: 1.22;
    white-space: normal;
    text-wrap: balance;
  }

  .overview-hero__copy h1 .semantic-chunk {
    display: block;
  }

  .overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
    margin: 0.3rem 0 0;
  }

  .overview-hero__cta {
    width: min(100%, 11rem);
  }
}

/* Refined short hero: keep this block last so legacy variants cannot override it. */
.overview-hero {
  min-height: 0;
  padding: var(--publink-nav-height, 64px) 0 0;
  background: #f8fbff;
}

.overview-hero__media.overview-shell {
  width: 100%;
  height: clamp(25rem, 43vh, 28rem);
  aspect-ratio: auto;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.overview-hero__copy {
  top: clamp(2.5rem, 4.5vw, 3.75rem);
  width: min(calc(100% - 3rem), 74rem);
  padding-inline: 0;
}

.overview-hero__copy h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.15rem, 2.8vw, 2.9rem);
  line-height: 1.16;
  white-space: nowrap;
  text-wrap: nowrap;
}

.overview-hero__copy h1 .semantic-chunk,
.overview-hero__copy h1 .overview-hero__accent {
  display: inline;
}

.overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
  margin-left: 0.35em;
}

.overview-hero__cta {
  width: auto;
  min-width: 8.75rem;
  margin: clamp(1.25rem, 2.2vw, 1.75rem) auto 0;
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: var(--publink-nav-height, 112px);
  }

  .overview-hero__media.overview-shell {
    height: clamp(22rem, 51svh, 25rem);
  }

  .overview-hero__copy {
    top: 2rem;
    width: calc(100% - 2rem);
  }

  .overview-hero__copy h1 {
    max-width: 21rem;
    margin-inline: auto;
    font-size: clamp(1.65rem, 7.1vw, 1.95rem);
    line-height: 1.22;
    white-space: normal;
    text-wrap: balance;
  }

  .overview-hero__copy h1 .semantic-chunk {
    display: block;
  }

  .overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
    margin: 0.3rem 0 0;
  }

  .overview-hero__cta {
    width: min(100%, 11rem);
  }
}

/* Compact image-led hero: one message, one action, and an early view of the next section. */
.overview-hero {
  min-height: 0;
  padding: var(--publink-nav-height, 64px) 0 0;
  background: #f8fbff;
}

.overview-hero__media.overview-shell {
  width: 100%;
  height: clamp(25rem, 43vh, 28rem);
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #f8fbff;
  box-shadow: none;
}

.overview-hero__image {
  object-position: center 58%;
  filter: saturate(0.82) contrast(0.94);
  transform: scale(1.015);
}

.overview-hero__media::after {
  display: block;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 22%,
      rgba(255, 255, 255, 0.42) 48%,
      rgba(255, 255, 255, 0.06) 78%
    );
}

.overview-hero__copy {
  top: clamp(2.5rem, 4.5vw, 3.75rem);
  width: min(calc(100% - 3rem), 74rem);
  padding-inline: 0;
}

.overview-hero__copy h1 {
  max-width: none;
  margin-inline: auto;
  color: #101b30;
  font-size: clamp(2.15rem, 2.8vw, 2.9rem);
  line-height: 1.16;
  letter-spacing: 0;
  white-space: nowrap;
  text-wrap: nowrap;
}

.overview-hero__copy h1 .semantic-chunk,
.overview-hero__copy h1 .overview-hero__accent {
  display: inline;
}

.overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
  margin-left: 0.35em;
}

.overview-hero__accent {
  color: transparent;
  background: linear-gradient(90deg, #13c2c2, #4e8dff 62%, #7d8cff);
  background-clip: text;
  -webkit-background-clip: text;
}

.overview-hero__cta {
  width: auto;
  min-width: 8.75rem;
  margin: clamp(1.25rem, 2.2vw, 1.75rem) auto 0;
}

.scenario-section.overview-section {
  padding-top: clamp(4.25rem, 6vw, 5.5rem);
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: var(--publink-nav-height, 112px);
  }

  .overview-hero__media.overview-shell {
    height: clamp(22rem, 51svh, 25rem);
  }

  .overview-hero__image {
    object-position: center 62%;
  }

  .overview-hero__copy {
    top: 2rem;
    width: calc(100% - 2rem);
  }

  .overview-hero__copy h1 {
    max-width: 21rem;
    font-size: clamp(1.65rem, 7.1vw, 1.95rem);
    line-height: 1.22;
    white-space: normal;
    text-wrap: balance;
  }

  .overview-hero__copy h1 .semantic-chunk {
    display: block;
  }

  .overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
    margin: 0.3rem 0 0;
  }

  .overview-hero__cta {
    width: min(100%, 11rem);
  }

  .scenario-section.overview-section {
    padding-top: 3.75rem;
  }
}

/* Collection hero and line-break guardrails. */
.semantic-chunk {
  white-space: nowrap;
}

.overview-hero {
  padding: var(--publink-nav-height, 64px) 0 clamp(4rem, 7vw, 6rem);
}

.overview-hero__media.overview-shell {
  height: clamp(31rem, 64vh, 40rem);
  aspect-ratio: auto;
}

.overview-hero__copy {
  top: clamp(3rem, 5vw, 4.5rem);
  pointer-events: auto;
}

.overview-hero__cta {
  margin: clamp(1.75rem, 3vw, 2.4rem) auto 0;
}

.industry-card__content > span {
  white-space: nowrap;
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: var(--publink-nav-height, 112px);
    padding-bottom: 4.25rem;
  }

  .overview-hero__media.overview-shell {
    height: clamp(27rem, 62svh, 33rem);
    aspect-ratio: auto;
  }

  .overview-hero__copy {
    top: 2.25rem;
  }

  .overview-section__head h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 23rem) {
  .overview-hero__copy h1,
  .overview-section__head h2 {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Unified hero canvas: copy, platform and both entry paths share one composition. */
.overview-hero {
  display: grid;
  min-height: min(50rem, calc(100vh - var(--publink-nav-height, 64px)));
  padding: calc(var(--publink-nav-height, 64px) + clamp(2.75rem, 5vw, 4.5rem)) 0 clamp(3.5rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 50% 54%, rgba(125, 140, 255, 0.12), transparent 24%),
    radial-gradient(circle at 10% 38%, rgba(19, 194, 194, 0.09), transparent 28%),
    radial-gradient(circle at 90% 38%, rgba(78, 141, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 50%, #f5f6ff 100%);
}

.overview-hero::before {
  content: "";
  position: absolute;
  inset: var(--publink-nav-height, 64px) 0 0;
  opacity: 0.48;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(78, 141, 255, 0.055) 9% 9.08%, transparent 9.08% 90.92%, rgba(125, 140, 255, 0.055) 90.92% 91%, transparent 91%),
    linear-gradient(rgba(78, 141, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 8rem;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 76%, transparent);
}

.overview-hero::after {
  right: 50%;
  bottom: -20rem;
  width: 46rem;
  height: 46rem;
  border-color: rgba(125, 140, 255, 0.1);
  transform: translateX(50%);
  box-shadow:
    0 0 0 5rem rgba(125, 140, 255, 0.018),
    0 0 0 10rem rgba(78, 141, 255, 0.014);
}

.overview-hero__canvas {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 41rem;
}

.overview-hero__copy {
  width: min(100%, 66rem);
  margin-inline: auto;
  text-align: center;
}

.overview-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--overview-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.overview-hero__eyebrow::before,
.overview-hero__eyebrow::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 141, 255, 0.75));
}

.overview-hero__eyebrow::after {
  transform: scaleX(-1);
}

.overview-hero__copy h1 {
  margin: 1.1rem 0 0;
  font-size: clamp(3rem, 5vw, 4.55rem);
  line-height: 1.08;
  text-wrap: balance;
}

.overview-hero__copy h1 span {
  display: block;
}

.overview-hero__copy h1::after {
  display: none;
}

.overview-hero__copy p {
  max-width: 46rem;
  margin: 1.15rem auto 0;
  color: var(--overview-muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.overview-hero__map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.54fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  width: min(100%, 70rem);
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
}

.overview-hero__route {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 14.5rem;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  overflow: visible;
  border: 1px solid rgba(78, 141, 255, 0.16);
  border-radius: var(--overview-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 247, 255, 0.56)),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 14px 36px rgba(37, 64, 105, 0.055);
  transition:
    transform 220ms var(--overview-ease),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.overview-hero__route:hover {
  z-index: 3;
  transform: translateY(-4px);
  border-color: rgba(78, 141, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(236, 243, 255, 0.76)),
    #fff;
  box-shadow: 0 20px 46px rgba(37, 64, 105, 0.1);
}

.overview-hero__route:focus-visible {
  outline: 3px solid rgba(78, 141, 255, 0.26);
  outline-offset: 4px;
}

.overview-hero__route::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  width: clamp(3rem, 6vw, 6rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 194, 194, 0.4), rgba(125, 140, 255, 0.72));
}

.overview-hero__route--scenarios::after {
  right: calc(clamp(3rem, 6vw, 6rem) * -1);
}

.overview-hero__route--industries::after {
  left: calc(clamp(3rem, 6vw, 6rem) * -1);
  transform: scaleX(-1);
}

.overview-hero__route-kicker {
  color: var(--overview-blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.overview-hero__route strong {
  display: block;
  margin-top: 0.75rem;
  color: var(--overview-ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.overview-hero__route small {
  display: block;
  margin-top: 0.55rem;
  color: var(--overview-muted);
  font-size: 0.9rem;
}

.overview-hero__route-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.45rem;
  color: var(--overview-blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.overview-hero__route-link b {
  transition: transform 180ms var(--overview-ease);
}

.overview-hero__route:hover .overview-hero__route-link b {
  transform: translateY(3px);
}

.overview-hero__nodes {
  position: absolute;
  top: 50%;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  transform: translateY(-50%);
}

.overview-hero__route--scenarios .overview-hero__nodes {
  right: -1.05rem;
}

.overview-hero__route--industries .overview-hero__nodes {
  left: -1.05rem;
}

.overview-hero__nodes i {
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid rgba(78, 141, 255, 0.62);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0.25rem rgba(78, 141, 255, 0.055);
}

.overview-hero__core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(9.5rem, 14vw, 12rem);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(125, 140, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 36%, rgba(235, 239, 255, 0.8) 37% 52%, rgba(255, 255, 255, 0.54) 53% 100%);
  box-shadow:
    0 0 0 0.8rem rgba(125, 140, 255, 0.035),
    0 20px 46px rgba(83, 93, 190, 0.12);
}

.overview-hero__core-orbit {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(78, 141, 255, 0.18);
  border-radius: 50%;
}

.overview-hero__core-orbit::before,
.overview-hero__core-orbit::after {
  content: "";
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--overview-cyan);
  box-shadow: 0 0 0 0.3rem rgba(19, 194, 194, 0.11);
}

.overview-hero__core-orbit::before {
  top: 9%;
  right: 17%;
}

.overview-hero__core-orbit::after {
  bottom: 10%;
  left: 15%;
  background: var(--overview-purple);
}

.overview-hero__core-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--overview-cyan), var(--overview-blue), var(--overview-purple));
  box-shadow: 0 12px 24px rgba(78, 141, 255, 0.24);
}

.overview-hero__core strong {
  margin-top: -0.2rem;
  color: var(--overview-ink);
  font-size: 1rem;
}

.overview-hero__core small {
  margin-top: -0.8rem;
  color: var(--overview-muted);
  font-size: 0.72rem;
}

.overview-hero__flow-label {
  display: grid;
  grid-template-columns: auto minmax(3rem, 1fr) auto minmax(3rem, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  width: min(100%, 54rem);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  color: var(--overview-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.overview-hero__flow-label i {
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 194, 194, 0.34), rgba(125, 140, 255, 0.46));
}

.overview-hero__flow-label strong {
  color: var(--overview-blue);
}

@media (max-width: 68rem) {
  .overview-hero {
    min-height: 0;
  }

  .overview-hero__canvas {
    min-height: 0;
  }

  .overview-hero__map {
    grid-template-columns: minmax(0, 1fr) minmax(8.5rem, 0.5fr) minmax(0, 1fr);
    gap: 2.4rem;
  }

  .overview-hero__route {
    min-height: 13.25rem;
    padding: 1.5rem;
  }
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: calc(var(--publink-nav-height, 112px) + 3.25rem);
    padding-bottom: 4.5rem;
  }

  .overview-hero::before {
    background-size: 100% 100%, 100% 6rem;
  }

  .overview-hero__eyebrow {
    font-size: 0.74rem;
  }

  .overview-hero__copy h1 {
    font-size: clamp(2.3rem, 10.5vw, 3rem);
    line-height: 1.12;
  }

  .overview-hero__copy p {
    max-width: 22rem;
    margin-top: 1rem;
    font-size: 0.96rem;
  }

  .overview-hero__map {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
    width: min(100%, 25rem);
    margin-top: 2.75rem;
  }

  .overview-hero__route {
    min-height: 0;
    padding: 1.35rem 1.45rem;
    text-align: left;
  }

  .overview-hero__route::after {
    top: auto;
    right: 50%;
    bottom: -2.25rem;
    left: auto;
    width: 1px;
    height: 2.25rem;
    transform: none;
    background: linear-gradient(rgba(19, 194, 194, 0.4), rgba(125, 140, 255, 0.68));
  }

  .overview-hero__route--industries::after {
    top: -2.25rem;
    bottom: auto;
  }

  .overview-hero__route-link {
    position: absolute;
    right: 1.45rem;
    bottom: 1.35rem;
    margin: 0;
  }

  .overview-hero__nodes {
    top: auto;
    right: 50% !important;
    bottom: -1.35rem;
    left: auto !important;
    transform: translateX(50%);
  }

  .overview-hero__route--industries .overview-hero__nodes {
    top: -1.35rem;
    bottom: auto;
  }

  .overview-hero__core {
    width: 9rem;
  }

  .overview-hero__flow-label {
    display: none;
  }
}

/* Image-led collection page refresh */
.overview-hero {
  display: block;
  min-height: 0;
  padding: calc(var(--publink-nav-height, 64px) + clamp(2rem, 4vw, 3.5rem)) 0
    clamp(4.75rem, 8vw, 7rem);
  background: #fff;
}

.overview-hero::before,
.overview-hero::after {
  display: none;
}

.overview-hero__media {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  border-radius: 8px;
  background: #f7faff;
  box-shadow: 0 28px 72px rgba(45, 72, 118, 0.11);
}

.overview-hero__media picture,
.overview-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.overview-hero__image {
  object-fit: cover;
  object-position: center;
}

.overview-hero__media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 34%);
  pointer-events: none;
}

.overview-hero__copy {
  position: absolute;
  z-index: 2;
  top: clamp(2rem, 5vw, 4.25rem);
  left: 50%;
  width: min(90%, 58rem);
  margin: 0;
  padding-inline: 1rem;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.overview-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.12;
  text-wrap: balance;
}

.overview-hero__copy h1::after {
  display: none;
}

.scenario-group__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 22px 34px rgba(45, 72, 118, 0.1));
  transition:
    transform 240ms var(--overview-ease),
    filter 240ms ease;
}

.scenario-group__visual:hover img {
  transform: translateY(-3px) scale(1.006);
  filter: drop-shadow(0 28px 42px rgba(45, 72, 118, 0.14));
}

.scenario-group__visual-link {
  position: static;
  width: max-content;
  margin: 0.9rem 0 0 auto;
  padding: 0 0 0.25rem;
  border: 0;
  border-bottom: 1px solid rgba(78, 141, 255, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.industry-stage {
  grid-template-columns: minmax(11rem, 0.62fr) minmax(0, 1.55fr) minmax(15rem, 0.9fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  min-height: 32rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.industry-stage__tabs {
  padding: 0.25rem 1rem 0.25rem 0;
  border-right: 1px solid var(--overview-line);
  background: transparent;
}

.industry-tab.is-active {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.industry-stage__visual {
  display: grid;
  align-items: center;
  padding: 0;
  background: transparent;
}

.industry-stage__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1609 / 977;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 22px 38px rgba(45, 72, 118, 0.1));
}

.industry-stage__copy {
  min-height: 0;
  padding: 0 0 0 clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--overview-line);
}

@media (max-width: 68rem) {
  .industry-stage {
    grid-template-columns: minmax(10rem, 0.6fr) minmax(0, 1.4fr);
  }

  .industry-stage__copy {
    grid-column: 1 / -1;
    padding: 2rem 0 0;
    border-top: 1px solid var(--overview-line);
    border-left: 0;
  }
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: calc(var(--publink-nav-height, 112px) + 1.5rem);
    padding-bottom: 4.75rem;
  }

  .overview-hero__media {
    aspect-ratio: 1122 / 1402;
  }

  .overview-hero__copy {
    top: 2rem;
    width: 94%;
  }

  .overview-hero__copy h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.8rem);
  }

  .industry-stage {
    display: flex;
    gap: 0;
    min-height: 0;
  }

  .industry-stage__tabs {
    padding: 0 1rem 0.75rem;
    border-right: 0;
  }

  .industry-stage__visual {
    padding: 1.25rem 0 0;
  }

  .industry-stage__copy {
    padding: 1.5rem 0 0;
    border: 0;
  }
}

/* Final hero lock: override legacy collection-page variants above. */
.overview-hero {
  min-height: 0;
  padding: var(--publink-nav-height, 64px) 0 0;
  background: #f8fbff;
}

.overview-hero__media.overview-shell {
  width: 100%;
  height: clamp(25rem, 43vh, 28rem);
  aspect-ratio: auto;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.overview-hero__copy {
  top: clamp(2.5rem, 4.5vw, 3.75rem);
  width: min(calc(100% - 3rem), 74rem);
  padding-inline: 0;
  pointer-events: auto;
}

.overview-hero__copy h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.15rem, 2.8vw, 2.9rem);
  line-height: 1.16;
  white-space: nowrap;
  text-wrap: nowrap;
}

.overview-hero__copy h1 .semantic-chunk,
.overview-hero__copy h1 .overview-hero__accent {
  display: inline;
}

.overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
  margin-left: 0.35em;
}

.overview-hero__cta {
  width: auto;
  min-width: 8.75rem;
  margin: clamp(1.25rem, 2.2vw, 1.75rem) auto 0;
}

@media (max-width: 48rem) {
  .overview-hero {
    padding-top: var(--publink-nav-height, 112px);
  }

  .overview-hero__media.overview-shell {
    height: clamp(22rem, 51svh, 25rem);
    aspect-ratio: auto;
  }

  .overview-hero__copy {
    top: 2rem;
    width: calc(100% - 2rem);
  }

  .overview-hero__copy h1 {
    max-width: 21rem;
    margin-inline: auto;
    font-size: clamp(1.65rem, 7.1vw, 1.95rem);
    line-height: 1.22;
    white-space: normal;
    text-wrap: balance;
  }

  .overview-hero__copy h1 .semantic-chunk {
    display: block;
  }

  .overview-hero__copy h1 .semantic-chunk + .semantic-chunk {
    margin: 0.3rem 0 0;
  }

  .overview-hero__cta {
    width: min(100%, 11rem);
  }

  .overview-section__head h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 23rem) {
  .overview-hero__copy h1,
  .overview-section__head h2 {
    font-size: 1.7rem;
  }
}

/* Final collection typography: keep after every legacy page variant above. */
@media (min-width: 64.01rem) {
  .scenario-group__content h3 {
    font-size: 2.1rem;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: nowrap;
  }
}

@media (max-width: 48rem) {
  .overview-section__head h2,
  .overview-section__head p,
  .scenario-group__content h3,
  .scenario-group__content > p {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .overview-section__head h2,
  .scenario-group__content h3 {
    text-wrap: balance;
  }
}
