:root {
  --purple: #6d32ff;
  --green: #28ff52;
  --blue: #263cc8;
  --cyan: #0cd3f8;
  --ink: #10131c;
  --muted: #626a79;
  --line: #dbe1ec;
  --soft: #f6f7fa;
  --dark: #07080d;
  --dark-2: #111423;
  --max: 1180px;
  --font: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; min-width: 0; display: block; }
a { color: inherit; text-decoration: none; }
.mobile-only { display: none; }
.desktop-break { display: none; }

@media (min-width: 641px) {
  .desktop-break { display: block; }
}
main,
section,
.section-heading,
.loop-layout,
.route-visual,
.business-grid,
.process-showcase,
.robot-copy,
.robot-line,
.case-copy,
.contact-section > div,
.lead-form {
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(16,19,28,.08);
  backdrop-filter: blur(14px);
  transition: background .25s ease, border-color .25s ease;
}

.site-header.on-dark {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(16,19,28,.08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 220px;
  font-weight: 900;
  color: var(--ink);
}
.logo-horizontal {
  height: 40px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  font-size: 14px;
  color: #323846;
}
.desktop-nav a.active {
  color: var(--blue);
  font-weight: 900;
}
.site-header.on-dark .desktop-nav { color: #323846; }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  font-weight: 700;
  white-space: nowrap;
}
.header-cta { background: var(--blue); color: #fff; }
.site-header.on-dark .header-cta { background: var(--blue); color: #fff; }
.button.primary { background: var(--green); color: #061006; border: 1px solid var(--green); }
.button.ghost { color: #fff; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.hero-button {
  color: #fff;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(40,255,82,.5);
  background: rgba(40,255,82,.1);
  box-shadow: 0 14px 32px rgba(40,255,82,.08), inset 0 1px 0 rgba(255,255,255,.14);
  outline: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16,19,28,.16);
  border-radius: 6px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-drawer {
  display: none;
  position: fixed;
  z-index: 49;
  inset: 76px 0 auto;
  padding: 18px 22px 24px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
}
.mobile-drawer a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  border-bottom: 1px solid rgba(16,19,28,.08);
}

.section-dark {
  background:
    radial-gradient(circle at 72% 36%, rgba(109,50,255,.32), transparent 36%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
}
.section-light { background: var(--soft); }
.section-white { background: #fff; }

.hero {
  min-height: clamp(720px, 100vh, 980px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 120px max(22px, calc((100vw - var(--max)) / 2)) 56px;
}
.hero > * { min-width: 0; }
.hero-copy { max-width: 720px; min-width: 0; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .eyebrow {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 900;
}
.section-dark .eyebrow { color: #fff; }
.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--green);
}

h1, h2, h3, p { letter-spacing: 0; }
h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.05;
  max-width: 760px;
  overflow-wrap: anywhere;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}
h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}
.hero-lede,
.section-heading p,
.robot-copy p,
.contact-section p {
  color: rgba(255,255,255,.75);
  font-size: 19px;
  line-height: 1.75;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.section-heading p,
.robot-copy p,
.contact-section p { color: var(--muted); }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 54px 0 0;
}
.proof-strip div {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.proof-strip dt {
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
}
.proof-strip dd {
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-visual img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}

.route,
.business,
.data-section,
.robot-section,
.case-section,
.tech-section,
.contact-section {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
}
.section-heading.compact {
  display: grid;
  grid-template-columns: minmax(420px, .96fr) minmax(320px, .64fr);
  gap: 48px;
  align-items: end;
}
.section-heading.compact .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; }
.section-heading.compact p { margin: 0; }

.route-visual {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31,44,75,.08);
  overflow: hidden;
}
.route-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.loop-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .58fr);
  gap: 24px;
  align-items: stretch;
}
.loop-layout .route-visual {
  margin: 0;
}
.loop-stack {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.loop-stack a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31,44,75,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.loop-stack a:hover,
.loop-stack a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(38,60,200,.28);
  box-shadow: 0 18px 38px rgba(31,44,75,.1);
  outline: 0;
}
.loop-stack span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 900;
}
.loop-stack b {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.loop-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.loop-stack em,
.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--blue);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}
.loop-stack em::after,
.section-more-link::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}
.loop-stack a:hover em::after,
.loop-stack a:focus-visible em::after,
.section-more-link:hover::after,
.section-more-link:focus-visible::after {
  width: 38px;
}
.section-heading .section-more-link {
  margin-top: 18px;
}
.section-more-link.dark {
  color: var(--green);
}
.route-flow {
  max-width: var(--max);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.route-flow span {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #202636;
  font-weight: 900;
}
.route-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
  transform: rotate(45deg);
  z-index: 1;
}
.route-flow span:nth-child(2n) { background: #f8f9fc; }

.business-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 18px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 18px 40px rgba(38,60,200,.22);
  outline: 0;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.feature-card:hover p,
.feature-card:focus-visible p { color: rgba(255,255,255,.78); }
.card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}
.feature-card:hover .card-link,
.feature-card:focus-visible .card-link { color: var(--green); }
.card-index {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}

.process-showcase {
  max-width: var(--max);
  margin: 30px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f6f7fa;
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.process-heading {
  padding: 4px 10px 4px 0;
  border-right: 1px solid var(--line);
}
.process-heading b {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}
.process-heading span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.process-list a {
  position: relative;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(38,60,200,.16);
  border-radius: 8px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.process-list a:hover,
.process-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(38,60,200,.38);
  box-shadow: 0 14px 30px rgba(31,44,75,.08);
  outline: 0;
}
.process-list a.has-case {
  min-height: 132px;
  padding-bottom: 42px;
  border-color: rgba(38,60,200,.22);
  background: linear-gradient(135deg, #fff, #f7f9ff);
}
.process-list a.is-coming-soon {
  min-height: 132px;
  padding-bottom: 42px;
  border-color: rgba(109,50,255,.18);
  background: linear-gradient(135deg, #fff, #faf8ff);
}
.process-list a.has-case:hover,
.process-list a.has-case:focus-visible {
  border-color: rgba(38,60,200,.44);
  box-shadow: 0 16px 34px rgba(38,60,200,.12);
}
.process-list a.is-coming-soon:hover,
.process-list a.is-coming-soon:focus-visible {
  border-color: rgba(109,50,255,.34);
  box-shadow: 0 16px 34px rgba(109,50,255,.1);
}
.process-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 20px;
}
.process-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.process-list em {
  position: absolute;
  right: 16px;
  bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}
.process-list a.is-coming-soon em {
  color: var(--purple);
}
.process-list em::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}
.process-list a.has-case:hover em::after,
.process-list a.has-case:focus-visible em::after,
.process-list a.is-coming-soon:hover em::after,
.process-list a.is-coming-soon:focus-visible em::after {
  width: 34px;
}
.data-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.data-grid article {
  position: relative;
  padding: 24px;
  border-left: 5px solid var(--blue);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(31,44,75,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.data-grid article:nth-child(3n+2) { border-left-color: var(--purple); }
.data-grid article:nth-child(3n) { border-left-color: var(--green); }
.data-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(31,44,75,.12);
}
.data-grid b {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}
.data-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.data-foundation {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(31,44,75,.07);
}
.data-sources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.data-sources article {
  min-height: 160px;
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}
.data-sources article + article {
  background: linear-gradient(135deg, #10131c, var(--blue));
}
.data-sources b {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}
.data-sources span {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}
.data-pipeline {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}
.data-pipeline span {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #384052;
  font-weight: 900;
}
.data-pipeline span::before {
  content: "";
  position: absolute;
  top: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}
.data-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.data-details p {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: #f6f7fa;
  color: var(--muted);
  line-height: 1.65;
}
.data-details b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.robot-section {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: none;
}
.robot-copy {
  max-width: 620px;
  justify-self: end;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.robot-pillars {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.robot-pillars span {
  display: block;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #f6f7fa;
  color: var(--muted);
  line-height: 1.6;
}
.robot-pillars b {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}
.robot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
}
.robot-grid article {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-radius: 8px;
  background: #f6f7fa;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.robot-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(109,50,255,.34);
  background: #fff;
  box-shadow: 0 20px 44px rgba(31,44,75,.11);
}
.robot-grid span {
  color: var(--purple);
  font-weight: 900;
  transition: color .2s ease;
}
.robot-grid article:hover span {
  color: var(--green);
}
.robot-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.robot-line {
  align-self: stretch;
  display: flex;
  align-items: center;
  max-width: 800px;
}
.robot-line ol {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-left: 3px solid var(--green);
}
.robot-line li {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0 22px 28px;
  border-bottom: 1px solid var(--line);
}
.robot-line li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 30px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
}
.robot-line b {
  font-size: 24px;
}
.robot-line span {
  color: var(--muted);
  line-height: 1.65;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .8fr);
  align-items: center;
  gap: 56px;
}
.case-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.case-copy p {
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.75;
}
.case-steps {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.case-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.84);
}
.case-steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--green);
  font-weight: 900;
}
.case-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}
.case-inline-link::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}
.case-inline-link:hover::after,
.case-inline-link:focus-visible::after {
  width: 54px;
}
.case-inline-link.secondary {
  margin-left: 22px;
  color: rgba(255,255,255,.82);
}
.trust-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.trust-strip span {
  display: flex;
  flex-direction: column;
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  line-height: 1.45;
}
.trust-strip b {
  display: flex;
  align-items: flex-start;
  min-height: 32px;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.15;
  white-space: nowrap;
}

.tech-loop {
  max-width: var(--max);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(31,44,75,.07);
  overflow: hidden;
}
.tech-loop-main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    linear-gradient(90deg, rgba(38,60,200,.08), rgba(109,50,255,.08), rgba(40,255,82,.08));
}
.tech-loop-main::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
}
.tech-loop-main article {
  position: relative;
  min-height: 250px;
  padding: 32px;
}
.tech-loop-main article + article {
  border-left: 1px solid rgba(219,225,236,.8);
}
.tech-loop-main article::before {
  content: "";
  position: absolute;
  top: 51px;
  left: 32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--green);
  z-index: 1;
}
.tech-loop-main span {
  display: block;
  margin: 0 0 58px 30px;
  color: var(--purple);
  font-weight: 900;
}
.tech-loop-main h3 {
  margin-bottom: 14px;
  font-size: 28px;
}
.tech-loop-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.tech-loop-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.tech-loop-support section {
  padding: 24px 28px 26px;
}
.tech-loop-support section + section {
  border-left: 1px solid var(--line);
}
.tech-loop-support b {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 20px;
}
.tech-loop-support span {
  display: inline-flex;
  margin: 0 8px 10px 0;
  padding: 10px 12px;
  border-radius: 999px;
  color: #384052;
  background: #f6f7fa;
  font-size: 14px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: start;
}
.contact-section > div,
.lead-form {
  max-width: 560px;
}
.contact-section > div { justify-self: end; }
.lead-form {
  width: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(31,44,75,.08);
}
.lead-form label {
  display: block;
  margin-bottom: 16px;
}
.lead-form span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
  background: #fff;
}
.lead-form input,
.lead-form select {
  height: 46px;
}
.lead-form textarea {
  min-height: 92px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.5;
  resize: vertical;
}
.lead-form .button {
  width: 100%;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.lead-form .button[disabled] {
  cursor: wait;
  opacity: .72;
}
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.form-status[data-tone="success"] {
  color: #11712a;
  font-weight: 800;
}
.form-status[data-tone="error"] {
  color: #c03232;
  font-weight: 800;
}

.site-footer {
  background: #f8f9fc;
  color: var(--ink);
  padding: 32px max(22px, calc((100vw - var(--max)) / 2)) 18px;
  border-top: 4px solid var(--ink);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(360px, 1.28fr);
  gap: 32px;
  align-items: center;
}
.footer-brand img {
  width: 220px;
  max-width: 100%;
}
.footer-brand p,
.footer-info p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.footer-info {
  display: flex;
  justify-content: flex-end;
  gap: 18px 24px;
  flex-wrap: wrap;
  text-align: right;
}
.footer-info a {
  color: #384052;
  font-weight: 700;
}
.footer-info a:hover {
  color: var(--blue);
}
.footer-bottom a:hover { color: var(--blue); }
.footer-bottom {
  max-width: var(--max);
  margin: 20px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-bottom a {
  color: #384052;
}

.subpage-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(500px, .92fr) minmax(380px, .92fr);
  gap: 52px;
  align-items: center;
  padding: 132px max(22px, calc((100vw - var(--max)) / 2)) 82px;
}
.subpage-hero-copy {
  max-width: 680px;
}
.subpage-hero h1 {
  font-size: clamp(42px, 4.2vw, 62px);
}
.software-hero-visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: #07080d;
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  overflow: hidden;
}
.software-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,13,.28), transparent 44%),
    radial-gradient(circle at 78% 26%, rgba(109,50,255,.2), transparent 30%);
  pointer-events: none;
}
.software-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
}
.software-console {
  min-height: 440px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    radial-gradient(circle at 68% 34%, rgba(40,255,82,.2), transparent 32%),
    rgba(9,12,22,.78);
  box-shadow: 0 32px 90px rgba(0,0,0,.32);
}
.console-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.console-topline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}
.console-topline span:nth-child(2) { background: var(--purple); }
.console-topline span:nth-child(3) { background: var(--green); }
.console-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 14px;
  min-height: 380px;
}
.console-grid article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}
.console-grid b {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 18px;
}
.console-main {
  grid-row: 1 / -1;
}
.curve {
  position: absolute;
  left: 22px;
  right: 22px;
  height: 110px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  opacity: .88;
}
.curve-green {
  top: 116px;
  color: var(--green);
  transform: rotate(-8deg);
}
.curve-purple {
  top: 180px;
  color: var(--purple);
  transform: rotate(7deg);
}
.risk-dot {
  position: absolute;
  right: 84px;
  top: 170px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(40,255,82,.16), 0 0 28px rgba(40,255,82,.55);
}
.bar-set {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
}
.bar-set i {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
}
.bar-set i:nth-child(1) { height: 36%; }
.bar-set i:nth-child(2) { height: 66%; }
.bar-set i:nth-child(3) { height: 48%; }
.bar-set i:nth-child(4) { height: 82%; }
.bar-set i:nth-child(5) { height: 58%; }
.status-ring {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 14px solid rgba(255,255,255,.12);
  border-top-color: var(--green);
  border-right-color: var(--purple);
  transform: translate(-50%, -50%);
}
.pulse-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 62%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--purple), transparent);
}
.pulse-line::before {
  content: "";
  position: absolute;
  left: 42%;
  top: -32px;
  width: 52px;
  height: 52px;
  border: 2px solid var(--green);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
}
.software-intro,
.software-flow,
.software-scenes,
.software-delivery {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.software-kpi-grid,
.delivery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.software-kpi-grid article,
.delivery-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31,44,75,.05);
}
.software-kpi-grid span,
.delivery-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}
.software-kpi-grid b,
.delivery-grid b {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}
.software-kpi-grid p,
.delivery-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.capability-map {
  position: relative;
  max-width: var(--max);
  min-height: 520px;
  margin: 0 auto;
  border: 1px solid rgba(219,225,236,.72);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(38,60,200,.08), transparent 34%),
    linear-gradient(180deg, #fff, #f8f9fc);
  overflow: hidden;
}
.js-reveal .capability-map,
.js-reveal .software-flow-layout,
.js-reveal .process-track,
.js-reveal .delivery-timeline,
.js-reveal .robot-system-map,
.js-reveal .workstation-layout,
.js-reveal .toolchain-grid,
.js-reveal .robot-proof,
.js-reveal .data-twin-grid,
.js-reveal .governance-layout,
.js-reveal .model-support-grid {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.capability-map.is-visible,
.software-flow-layout.is-visible,
.process-track.is-visible,
.delivery-timeline.is-visible,
.robot-system-map.is-visible,
.workstation-layout.is-visible,
.toolchain-grid.is-visible,
.robot-proof.is-visible,
.data-twin-grid.is-visible,
.governance-layout.is-visible,
.model-support-grid.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.capability-map::before,
.capability-map::after {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(38,60,200,.12);
  border-radius: 50%;
  pointer-events: none;
}
.capability-map::after {
  inset: 110px;
  border-color: rgba(40,255,82,.16);
  animation: softPulse 4.8s ease-in-out infinite;
}
.capability-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 35% 28%, rgba(40,255,82,.35), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 30px 70px rgba(38,60,200,.24);
  transform: translate(-50%, -50%);
}
.capability-core::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(40,255,82,.38);
  animation: spinSlow 9s linear infinite;
}
.capability-core span {
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
}
.capability-core b {
  text-align: center;
  font-size: 28px;
  line-height: 1.15;
}
.cap-node {
  position: absolute;
  z-index: 3;
  width: min(290px, 30%);
  padding: 22px;
  border-left: 3px solid var(--green);
  background: rgba(255,255,255,.54);
  box-shadow: none;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.cap-node:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(31,44,75,.08);
}
.cap-node::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, rgba(38,60,200,.1), var(--green));
}
.cap-node span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}
.cap-node b {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}
.cap-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.node-quality { left: 6%; top: 54px; }
.node-quality::before { right: -70px; top: 50%; }
.node-process { right: 6%; top: 54px; }
.node-process::before { left: -70px; top: 50%; transform: scaleX(-1); }
.node-equipment { left: 6%; bottom: 54px; }
.node-equipment::before { right: -70px; top: 50%; }
.node-takt { right: 6%; bottom: 54px; }
.node-takt::before { left: -70px; top: 50%; transform: scaleX(-1); }
.software-flow-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .75fr);
  gap: 28px;
  align-items: stretch;
}
.flow-rail {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.flow-rail span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 68px;
  padding: 0 24px 0 54px;
  color: #202636;
  font-weight: 900;
  letter-spacing: 0;
}
.flow-rail span:nth-child(2n) { background: #f8f9fc; }
.flow-rail span::before {
  content: "";
  position: absolute;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(40,255,82,.12);
}
.flow-rail span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: calc(50% + 11px);
  bottom: calc(-50% + 11px);
  width: 2px;
  background: var(--line);
  z-index: 1;
}
.flow-detail {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--green);
}
.flow-detail.soft-panels {
  gap: 14px;
  border-left: 0;
}
.flow-detail article {
  position: relative;
  padding: 18px 0 22px 24px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.flow-detail.soft-panels article {
  min-height: 132px;
  padding: 22px 22px 22px 24px;
  border: 1px solid rgba(219,225,236,.9);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,247,250,.92));
  box-shadow: 0 16px 36px rgba(31,44,75,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.flow-detail.soft-panels article:hover {
  transform: translateY(-3px);
  border-color: rgba(38,60,200,.2);
  box-shadow: 0 20px 42px rgba(31,44,75,.1);
}
.flow-detail article::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(40,255,82,.12);
}
.flow-detail.soft-panels article::before {
  display: none;
}
.flow-detail b {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.flow-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.scene-matrix,
.process-track {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.scene-matrix a {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(38,60,200,.16);
  border-radius: 8px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.scene-matrix a:hover,
.scene-matrix a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(38,60,200,.38);
  box-shadow: 0 14px 30px rgba(31,44,75,.08);
  outline: 0;
}
.scene-matrix strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 22px;
}
.scene-matrix span {
  color: var(--muted);
  line-height: 1.55;
}
.process-track {
  position: relative;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  padding: 28px 0 18px;
  overflow-x: hidden;
}
.process-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green), var(--blue));
  background-size: 180% 100%;
  animation: flowLine 5.5s linear infinite;
}
.process-track a {
  position: relative;
  min-height: 180px;
  padding: 62px 18px 18px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}
.process-track a:last-child {
  border-right: 1px solid var(--line);
}
.process-track a::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 18px;
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(38,60,200,.16), 0 0 22px rgba(40,255,82,.26);
  z-index: 1;
}
.process-track a:hover,
.process-track a:focus-visible {
  transform: translateY(-3px);
  background: rgba(255,255,255,.72);
  outline: 0;
}
.process-track a.has-case {
  padding-bottom: 58px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(246,248,252,.44));
}
.process-track a.has-case::before {
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(38,60,200,.2), 0 0 24px rgba(38,60,200,.24);
}
.process-track a.has-case:hover,
.process-track a.has-case:focus-visible {
  background: #fff;
  box-shadow: 0 16px 36px rgba(31,44,75,.1);
}
.process-track strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 24px;
}
.process-track span {
  color: var(--muted);
  line-height: 1.55;
}
.process-track em,
.case-process-lanes em {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}
.process-track em::after,
.case-process-lanes em::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}
.process-track a.has-case:hover em::after,
.process-track a.has-case:focus-visible em::after,
.case-process-lanes a.has-case:hover em::after,
.case-process-lanes a.has-case:focus-visible em::after {
  width: 36px;
}
.delivery-timeline {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px solid var(--line);
}
.delivery-timeline article {
  position: relative;
  padding: 34px 24px 0 0;
}
.delivery-timeline article::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--green);
}
.delivery-timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}
.delivery-timeline b {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}
.delivery-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.delivery-timeline.delivery-panels {
  gap: 18px;
  border-top: 0;
}
.delivery-timeline.delivery-panels article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,44,75,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.delivery-timeline.delivery-panels article:hover {
  transform: translateY(-3px);
  border-color: rgba(38,60,200,.24);
  box-shadow: 0 20px 46px rgba(31,44,75,.1);
}
.delivery-timeline.delivery-panels article::before {
  top: 26px;
  right: 26px;
  left: auto;
}
.delivery-timeline.delivery-panels span {
  margin-bottom: 44px;
}

.robot-hero-visual img {
  object-position: center;
}
.robot-intro,
.robot-workstations,
.robot-toolchain {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.robot-system-map {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, .72fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.robot-system-core {
  min-height: 360px;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 28%, rgba(40,255,82,.28), transparent 30%),
    radial-gradient(circle at 24% 76%, rgba(109,50,255,.34), transparent 38%),
    linear-gradient(135deg, #080a12, #171b2b);
  box-shadow: 0 26px 60px rgba(31,44,75,.18);
}
.robot-system-core span {
  margin-bottom: 16px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 900;
}
.robot-system-core b {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}
.robot-system-map article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(219,225,236,.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31,44,75,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.robot-system-map article:hover {
  transform: translateY(-3px);
  border-color: rgba(109,50,255,.28);
  box-shadow: 0 20px 44px rgba(31,44,75,.1);
}
.robot-system-map article span,
.workstation-panels span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}
.robot-system-map article b,
.workstation-panels b,
.toolchain-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 24px;
}
.robot-system-map article p,
.workstation-panels p,
.toolchain-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.workstation-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: 28px;
  align-items: stretch;
}
.workstation-visual {
  min-height: 440px;
  border-radius: 12px;
  background: #080a12;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(31,44,75,.16);
}
.workstation-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}
.operation-board {
  position: relative;
  min-height: 440px;
  background:
    radial-gradient(circle at 50% 46%, rgba(40,255,82,.18), transparent 26%),
    radial-gradient(circle at 28% 70%, rgba(109,50,255,.22), transparent 30%),
    linear-gradient(135deg, #080a12, #111728 58%, #07080d);
  border: 1px solid rgba(255,255,255,.1);
}
.operation-board::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 10px;
}
.board-part {
  position: absolute;
  left: 17%;
  right: 17%;
  top: 46%;
  height: 54px;
  border: 1px solid rgba(40,255,82,.42);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(38,60,200,.22), rgba(40,255,82,.18), rgba(109,50,255,.2));
  box-shadow: 0 0 34px rgba(40,255,82,.18), inset 0 0 28px rgba(255,255,255,.08);
  transform: rotate(-4deg);
}
.board-part::before,
.board-part::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(40,255,82,.45);
}
.board-part::before { left: 22%; }
.board-part::after { right: 22%; }
.board-arm {
  position: absolute;
  top: 24%;
  width: 150px;
  height: 82px;
  border-top: 16px solid rgba(220,226,238,.86);
  border-right: 16px solid rgba(185,194,212,.82);
  border-radius: 999px 999px 0 0;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.35));
}
.arm-left {
  left: 16%;
  transform: rotate(18deg);
}
.arm-right {
  right: 16%;
  transform: scaleX(-1) rotate(18deg);
}
.board-arm::before {
  content: "";
  position: absolute;
  right: -25px;
  top: 48px;
  width: 24px;
  height: 78px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f1f4fa, #737d92);
}
.board-scan {
  position: absolute;
  top: 39%;
  width: 92px;
  height: 160px;
  clip-path: polygon(46% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(255,190,64,.72), rgba(255,190,64,.08));
  mix-blend-mode: screen;
  opacity: .86;
}
.scan-left {
  left: 24%;
  transform: rotate(10deg);
}
.scan-right {
  right: 24%;
  transform: rotate(-10deg);
}
.board-scan::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 8px;
  bottom: 20px;
  width: 2px;
  background: rgba(255,226,142,.95);
  box-shadow: 0 0 12px rgba(255,202,82,.8);
}
.operation-board ol {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.operation-board li {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.operation-board b {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
}
.operation-board span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.workstation-panels {
  display: grid;
  gap: 14px;
}
.workstation-panels article {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,247,250,.92));
  box-shadow: 0 16px 36px rgba(31,44,75,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.workstation-panels article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(31,44,75,.11);
}
.toolchain-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.toolchain-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(219,225,236,.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31,44,75,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.toolchain-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(38,60,200,.24);
  box-shadow: 0 20px 44px rgba(31,44,75,.1);
}
.toolchain-grid article::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 44px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}
.robot-proof {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
}
.robot-proof-copy {
  max-width: 650px;
}
.robot-proof-copy p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.75;
}
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.proof-metrics span {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}
.proof-metrics b {
  display: block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.1;
}

.data-hero-visual {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(40,255,82,.18), transparent 24%),
    radial-gradient(circle at 28% 42%, rgba(38,60,200,.24), transparent 26%),
    radial-gradient(circle at 78% 58%, rgba(109,50,255,.28), transparent 30%),
    linear-gradient(135deg, #07080d, #111728);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  overflow: hidden;
}
.data-hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
}
.data-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 35% 28%, rgba(40,255,82,.38), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 28px 70px rgba(38,60,200,.36);
  transform: translate(-50%, -50%);
}
.data-core::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(40,255,82,.38);
  border-radius: 50%;
  animation: spinSlow 10s linear infinite;
}
.data-core span {
  margin-bottom: 10px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 900;
}
.data-core b {
  text-align: center;
  font-size: 24px;
  line-height: 1.16;
}
.data-stream {
  position: absolute;
  left: 9%;
  right: 9%;
  z-index: 2;
  height: 86px;
  pointer-events: none;
}
.stream-industrial {
  top: 28%;
}
.stream-robot {
  bottom: 24%;
  transform: scaleY(-1);
}
.data-stream i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), var(--purple), var(--cyan), transparent);
  opacity: .72;
  animation: flowLine 6s linear infinite;
}
.data-stream i:nth-child(1) { top: 8px; }
.data-stream i:nth-child(2) { top: 28px; animation-delay: -.8s; }
.data-stream i:nth-child(3) { top: 48px; animation-delay: -1.6s; }
.data-stream i:nth-child(4) { top: 68px; animation-delay: -2.4s; }
.data-panel {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.panel-industrial { left: 34px; top: 46px; }
.panel-robot { right: 34px; top: 62px; }
.panel-model { right: 54px; bottom: 42px; }
.data-panel b {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 15px;
}
.data-panel span {
  display: block;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(40,255,82,.9), rgba(109,50,255,.55));
}
.data-hero-image img {
  object-position: 50% center;
}
.data-foundation-page,
.data-governance,
.data-model-section,
.data-delivery {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.data-twin-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.data-twin {
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(219,225,236,.9);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(31,44,75,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.data-twin.dark {
  color: #fff;
  background:
    radial-gradient(circle at 76% 22%, rgba(40,255,82,.24), transparent 30%),
    linear-gradient(135deg, #080a12, #171b2b);
}
.data-twin:hover {
  transform: translateY(-4px);
  border-color: rgba(38,60,200,.22);
  box-shadow: 0 24px 52px rgba(31,44,75,.12);
}
.data-twin span {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--green);
  font-weight: 900;
}
.data-twin b {
  display: block;
  margin-bottom: 16px;
  font-size: 32px;
}
.data-twin p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.data-twin.dark p {
  color: rgba(255,255,255,.72);
}
.governance-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.governance-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8f9fc;
}
.governance-flow span {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: #202636;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(31,44,75,.04);
}
.governance-flow span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(40,255,82,.12);
}
.governance-panels {
  display: grid;
  gap: 14px;
}
.governance-panels article {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,247,250,.92));
  box-shadow: 0 16px 36px rgba(31,44,75,.06);
}
.governance-panels b,
.model-support-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 24px;
}
.governance-panels p,
.model-support-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.model-support-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.model-support-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31,44,75,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.model-support-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(109,50,255,.26);
  box-shadow: 0 20px 44px rgba(31,44,75,.1);
}
.model-support-grid article::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}
@keyframes softPulse {
  0%, 100% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.025); opacity: 1; }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
@keyframes flowLine {
  to { background-position: 180% 0; }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-drawer.open { display: block; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
    overflow: hidden;
  }
  .subpage-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
    overflow-x: hidden;
  }
  .subpage-hero-copy,
  .subpage-hero-copy h1,
  .subpage-hero-copy p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .software-console {
    min-height: 360px;
  }
  .software-hero-visual,
  .software-hero-visual img {
    min-height: 360px;
  }
  .console-grid {
    min-height: 300px;
  }
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 44px);
  }
  .hero-copy h1,
  .hero-copy p {
    max-width: calc(100vw - 44px);
  }
  h1 {
    font-size: clamp(36px, 7vw, 52px);
    line-height: 1.14;
    word-break: break-all;
  }
  .hero-lede {
    word-break: break-all;
  }
  .hero-visual { order: -1; margin-top: 18px; }
  .proof-strip { grid-template-columns: 1fr; }
  .section-heading.compact,
  .robot-section,
  .software-flow-layout,
  .robot-system-map,
  .workstation-layout,
  .robot-proof,
  .governance-layout,
  .case-section,
  .contact-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-info {
    justify-content: flex-start;
    text-align: left;
  }
  .robot-copy,
  .contact-section > div { justify-self: start; }
  .business-grid,
  .data-grid,
  .robot-grid,
  .toolchain-grid,
  .data-twin-grid,
  .model-support-grid,
  .software-kpi-grid,
  .delivery-grid,
  .scene-matrix,
  .delivery-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .capability-map {
    min-height: auto;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .capability-map::before,
  .capability-map::after,
  .cap-node::before {
    display: none;
  }
  .capability-core,
  .cap-node {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }
  .capability-core {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .delivery-timeline {
    gap: 20px;
    border-top: 0;
  }
  .delivery-timeline article {
    padding-top: 0;
    padding-left: 26px;
    border-left: 3px solid var(--line);
  }
  .delivery-timeline article::before {
    top: 0;
    left: -11px;
  }
  .tech-loop-main,
  .tech-loop-support {
    grid-template-columns: 1fr;
  }
  .tech-loop-main::before {
    left: 39px;
    right: auto;
    top: 48px;
    bottom: 48px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--blue), var(--purple), var(--green));
  }
  .tech-loop-main article + article,
  .tech-loop-support section + section {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .route-flow,
  .data-pipeline {
    grid-template-columns: 1fr;
  }
  .loop-layout {
    grid-template-columns: 1fr;
  }
  .route-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .route-visual {
    display: block;
  }
  .loop-stack {
    grid-template-rows: none;
  }
  .loop-stack a {
    justify-content: flex-start;
  }
  .robot-copy,
  .robot-line {
    align-self: auto;
  }
  .robot-line ol {
    height: auto;
    grid-template-rows: none;
  }
  .loop-layout > *,
  .section-heading,
  .route-flow,
  .route-visual,
  .route-visual img,
  .process-showcase,
  .robot-line,
  .trust-strip {
    width: 100%;
    max-width: 100%;
  }
  .route-flow span:not(:last-child)::after {
    right: 50%;
    bottom: -9px;
    top: auto;
    transform: translateX(50%) rotate(135deg);
  }
  .data-sources,
  .data-details {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .process-showcase {
    grid-template-columns: 1fr;
  }
  .process-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
  }
  .process-list {
    grid-template-columns: 1fr 1fr;
  }
  .flow-rail span {
    min-height: 180px;
  }
  .robot-system-core {
    grid-row: auto;
    min-height: 280px;
  }
  .workstation-visual,
  .workstation-visual img {
    min-height: 360px;
  }
  .proof-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .data-hero-visual {
    min-height: 360px;
  }
  .data-panel {
    width: 180px;
  }
  .panel-industrial { left: 24px; top: 34px; }
  .panel-robot { right: 24px; top: 48px; }
  .panel-model { right: 34px; bottom: 30px; }
}

@media (max-width: 640px) {
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .site-header { height: 66px; }
  .mobile-only { display: block; }
  .desktop-break { display: none; }
  .brand { min-width: 0; }
  .logo-horizontal { height: 30px; max-width: 210px; }
  .mobile-drawer { inset-top: 66px; }
  h1 {
    font-size: 34px;
    line-height: 1.16;
    word-break: break-all;
  }
  .subpage-hero h1 {
    font-size: 28px;
    line-height: 1.18;
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  h2 {
    font-size: 28px;
    line-height: 1.18;
    word-break: break-all;
  }
  .section-heading,
  .section-heading.compact {
    min-width: 0;
  }
  .section-heading h2,
  .section-heading p,
  .subpage-hero-copy h1,
  .subpage-hero-copy p {
    display: block;
    width: 100%;
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .section-heading p,
  .robot-copy p,
  .case-copy p,
  .contact-section p {
    font-size: 16px;
    line-height: 1.7;
  }
  .section-heading p,
  .subpage-hero-copy p,
  .robot-copy p,
  .case-copy p,
  .contact-section p,
  .feature-card p,
  .process-heading span,
  .process-list span,
  .loop-stack p,
  .robot-line span,
  .trust-strip span {
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  .eyebrow {
    align-items: flex-start;
    line-height: 1.45;
    word-break: break-all;
  }
  .hero,
  .subpage-hero,
  .route,
  .business,
  .data-section,
  .robot-section,
  .case-section,
  .tech-section,
  .contact-section,
  .software-intro,
  .software-flow,
  .software-scenes,
  .software-delivery,
  .robot-intro,
  .robot-workstations,
  .robot-toolchain,
  .robot-proof,
  .data-foundation-page,
  .data-governance,
  .data-model-section,
  .data-delivery {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow-x: hidden;
  }
  .software-page * {
    min-width: 0;
  }
  .software-page h1,
  .software-page h2,
  .software-page h3,
  .software-page p,
  .software-page b,
  .software-page strong,
  .software-page span {
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  .software-page .section-heading,
  .software-page .section-heading.compact,
  .software-page .subpage-hero-copy {
    max-width: min(calc(100vw - 56px), 334px);
    margin-left: 0;
    margin-right: auto;
  }
  .software-page .section-heading p,
  .software-page .subpage-hero-copy p {
    max-width: 300px;
  }
  .software-page .capability-map,
  .software-page .software-flow-layout,
  .software-page .flow-detail,
  .software-page .delivery-timeline,
  .software-page .robot-system-map,
  .software-page .workstation-layout,
  .software-page .toolchain-grid,
  .software-page .proof-metrics,
  .software-page .workstation-panels,
  .software-page .data-twin-grid,
  .software-page .governance-layout,
  .software-page .governance-flow,
  .software-page .governance-panels,
  .software-page .model-support-grid,
  .software-page .lead-form {
    max-width: min(calc(100vw - 56px), 334px);
    margin-left: 0;
    margin-right: auto;
  }
  .hero > *,
  .subpage-hero > *,
  .route > *,
  .business > *,
  .software-intro > *,
  .software-flow > *,
  .software-scenes > *,
  .software-delivery > *,
  .robot-intro > *,
  .robot-workstations > *,
  .robot-toolchain > *,
  .robot-proof > *,
  .data-foundation-page > *,
  .data-governance > *,
  .data-model-section > *,
  .data-delivery > *,
  .robot-section > *,
  .case-section > *,
  .contact-section > *,
  .footer-inner {
    width: 100%;
    max-width: calc(100vw - 36px);
  }
  .hero-visual,
  .software-hero-visual,
  .software-console,
  .route-visual,
  .case-visual,
  .loop-layout,
  .software-kpi-grid,
  .software-flow-layout,
  .robot-system-map,
  .workstation-layout,
  .toolchain-grid,
  .proof-metrics,
  .workstation-panels,
  .data-hero-visual,
  .data-twin-grid,
  .governance-layout,
  .governance-flow,
  .governance-panels,
  .model-support-grid,
  .scene-matrix,
  .delivery-grid,
  .business-grid,
  .process-showcase,
  .robot-line,
  .lead-form {
    width: 100%;
    max-width: min(calc(100vw - 36px), 354px);
    overflow: hidden;
  }
  .hero-visual img,
  .software-hero-visual img,
  .route-visual img,
  .case-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
  }
  .hero-copy h1,
  .hero-copy p {
    max-width: calc(100vw - 36px);
  }
  .hero-lede {
    font-size: 17px;
    line-height: 1.7;
  }
  .robot-page .robot-system-map,
  .robot-page .workstation-layout,
  .robot-page .toolchain-grid,
  .robot-page .proof-metrics,
  .robot-page .workstation-panels {
    width: 100%;
    max-width: min(calc(100vw - 56px), 334px);
  }
  .robot-page .robot-system-map article,
  .robot-page .workstation-panels article,
  .robot-page .toolchain-grid article,
  .robot-page .proof-metrics span {
    width: 100%;
    max-width: 100%;
  }
  .robot-page .robot-system-core {
    min-height: 220px;
  }
  .robot-page .workstation-visual,
  .robot-page .workstation-visual img {
    width: 100%;
    max-width: 100%;
    min-height: 230px;
  }
  .robot-page .workstation-visual img {
    height: auto;
    object-fit: contain;
  }
  .operation-board {
    min-height: 300px;
  }
  .operation-board::before {
    inset: 16px;
    background-size: 28px 28px;
  }
  .board-arm {
    top: 22%;
    width: 102px;
    height: 58px;
    border-top-width: 12px;
    border-right-width: 12px;
  }
  .arm-left { left: 10%; }
  .arm-right { right: 10%; }
  .board-arm::before {
    right: -20px;
    top: 35px;
    width: 18px;
    height: 58px;
  }
  .board-part {
    left: 12%;
    right: 12%;
    top: 42%;
    height: 42px;
  }
  .board-scan {
    top: 35%;
    width: 70px;
    height: 122px;
  }
  .scan-left { left: 18%; }
  .scan-right { right: 18%; }
  .operation-board ol {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .operation-board li {
    min-height: 54px;
    padding: 10px;
  }
  .business-grid,
  .data-grid,
  .robot-grid,
  .robot-system-map,
  .workstation-layout,
  .toolchain-grid,
  .proof-metrics,
  .data-twin-grid,
  .governance-layout,
  .governance-flow,
  .governance-panels,
  .model-support-grid,
  .process-list,
  .software-kpi-grid,
  .delivery-grid,
  .scene-matrix,
  .delivery-timeline {
    grid-template-columns: 1fr;
  }
  .capability-map {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .capability-core {
    width: 170px;
    height: 170px;
  }
  .capability-core b {
    font-size: 24px;
  }
  .cap-node {
    width: 100%;
  }
  .process-track {
    max-width: calc(100vw - 36px);
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    overflow-x: hidden;
  }
  .process-track::before {
    display: none;
  }
  .process-track a,
  .process-track a.has-case {
    min-height: 150px;
    padding: 44px 16px 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }
  .process-track a:last-child {
    border-right: 1px solid var(--line);
  }
  .process-track a::before {
    top: 14px;
    left: 16px;
    width: 16px;
    height: 16px;
    border-width: 4px;
  }
  .process-track strong {
    font-size: 20px;
  }
  .process-track span {
    display: block;
    font-size: 13px;
  }
  .process-track em {
    left: 16px;
    right: auto;
    bottom: 16px;
  }
  .software-console {
    min-height: auto;
    padding: 16px;
  }
  .software-hero-visual,
  .software-hero-visual img {
    min-height: 260px;
  }
  .data-hero-visual {
    min-height: 320px;
  }
  .data-core {
    width: 138px;
    height: 138px;
  }
  .data-core b {
    font-size: 19px;
  }
  .data-panel {
    width: 132px;
    padding: 12px;
  }
  .data-panel b {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .data-panel span {
    height: 6px;
    margin-top: 8px;
  }
  .panel-industrial { left: 14px; top: 22px; }
  .panel-robot { right: 14px; top: 42px; }
  .panel-model { right: 20px; bottom: 18px; }
  .data-stream {
    left: 5%;
    right: 5%;
  }
  .data-twin {
    min-height: auto;
    padding: 24px;
  }
  .data-twin span {
    margin-bottom: 44px;
  }
  .data-twin b {
    font-size: 26px;
  }
  .governance-flow {
    grid-template-columns: 1fr;
  }
  .governance-flow span {
    min-height: 72px;
  }
  .software-hero-visual img {
    object-position: 58% center;
  }
  .console-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }
  .console-grid article {
    min-height: 118px;
  }
  .console-main {
    grid-row: auto;
    min-height: 190px;
  }
  .curve {
    left: 16px;
    right: 16px;
    height: 86px;
  }
  .curve-green {
    top: 76px;
  }
  .curve-purple {
    top: 126px;
  }
  .risk-dot {
    right: 24%;
    top: 116px;
  }
  .status-ring {
    width: 78px;
    height: 78px;
    border-width: 11px;
  }
  .flow-rail {
    grid-template-columns: 1fr;
  }
  .flow-rail span {
    min-height: 58px;
    writing-mode: horizontal-tb;
  }
  .flow-rail span:not(:last-child)::after {
    left: 28px;
    top: calc(50% + 11px);
    bottom: calc(-50% + 11px);
    transform: none;
  }
  .data-foundation { padding: 28px; }
  .data-pipeline span {
    justify-content: flex-start;
    min-height: 48px;
    padding-left: 28px;
  }
  .data-pipeline span::before {
    left: 0;
    top: 18px;
  }
  .robot-line li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .robot-grid article { min-height: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer-info {
    display: grid;
    gap: 4px;
  }
  .footer-bottom { display: grid; }
}

.cases-hero {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
}
.cases-hero h1 {
  font-size: clamp(42px, 4.2vw, 60px);
}
.cases-hero-visual {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 28%, rgba(109,50,255,.22), transparent 30%),
    radial-gradient(circle at 32% 72%, rgba(40,255,82,.14), transparent 28%),
    linear-gradient(135deg, #080a12, #101424);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}
.cases-hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(40,255,82,.13), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(109,50,255,.2), transparent 28%),
    linear-gradient(180deg, transparent 62%, rgba(5,6,12,.72));
  z-index: 2;
  pointer-events: none;
}
.cases-hero-collage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40,255,82,.58), rgba(109,50,255,.5), transparent);
  z-index: 2;
}
.cases-hero-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  z-index: 1;
}
.cases-hero-single {
  background:
    linear-gradient(90deg, rgba(8,13,22,.72), rgba(8,13,22,.38), rgba(8,13,22,.72)),
    var(--cases-hero-bg) center / cover no-repeat;
}
.cases-hero-single .case-visual-flow {
  left: 5%;
  right: 5%;
}
.cases-hero-single::before {
  background: linear-gradient(180deg, transparent 62%, rgba(5,6,12,.62));
}
.cases-hero-single::after {
  display: none;
}
.case-visual-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}
.case-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-development {
  left: 24px;
  top: 32px;
  width: 57%;
  bottom: 88px;
  z-index: 1;
}
.frame-development img {
  object-position: center center;
}
.frame-deployment {
  right: 26px;
  top: 34px;
  width: 36%;
  height: calc((100% - 136px) / 2);
  z-index: 1;
}
.frame-operation {
  right: 26px;
  bottom: 88px;
  width: 36%;
  height: calc((100% - 136px) / 2);
  z-index: 1;
}
.frame-operation img,
.frame-deployment img {
  object-position: center center;
}
.case-visual-flow {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.case-visual-flow span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40,255,82,.28);
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  background: rgba(7,8,13,.62);
  backdrop-filter: blur(10px);
}
.case-problems,
.case-software,
.case-robot-scenes {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.case-problem-path {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.case-problem-path::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  background-size: 180% 100%;
  animation: flowLine 5.5s linear infinite;
}
.case-problem-path article {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 112px 30px 30px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,249,252,.78));
}
.case-problem-path article:last-child {
  border-right: 0;
}
.case-problem-path span {
  position: absolute;
  top: 56px;
  left: 30px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #061006;
  font-weight: 900;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(38,60,200,.16), 0 16px 30px rgba(40,255,82,.16);
}
.case-problem-path b,
.case-process-lead b,
.case-robot-actions b,
.case-chain-track b {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}
.case-problem-path b {
  font-size: 22px;
}
.case-problem-path p,
.case-robot-actions p,
.case-chain-track p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}
.case-process-board {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(31,44,75,.06);
}
.case-process-lead {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 26%, rgba(40,255,82,.26), transparent 32%),
    linear-gradient(145deg, #080a12, #151a2b);
}
.case-process-lead b {
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
}
.case-process-lead span {
  display: block;
  max-width: 280px;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.case-process-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}
.case-process-lanes.case-platform-lanes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.case-process-lanes.case-platform-lanes a {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.case-process-lanes a {
  position: relative;
  min-height: 130px;
  padding: 24px 26px 24px 30px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f8f9fc);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.case-process-lanes a::before {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}
.case-process-lanes a:hover,
.case-process-lanes a:focus-visible {
  z-index: 2;
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 18px 44px rgba(31,44,75,.12);
  outline: 0;
}
.case-process-lanes a.has-case {
  overflow: hidden;
  padding-bottom: 58px;
  background: #fff;
}
.case-process-lanes a.has-case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.78) 48%, rgba(255,255,255,.62)),
    var(--case-bg) center / cover no-repeat;
  opacity: .72;
  transform: scale(1.01);
  transition: opacity .2s ease, transform .2s ease;
}
.case-platform-lanes a.has-case::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,.84) 74%),
    var(--case-bg) var(--case-pos, center) center / 300% 100% no-repeat;
  opacity: 1;
}
.case-platform-lanes a.has-case:hover::after,
.case-platform-lanes a.has-case:focus-visible::after {
  opacity: 1;
}
.case-process-lanes a.has-case::before {
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.case-process-lanes a.has-case:hover,
.case-process-lanes a.has-case:focus-visible {
  border-color: rgba(38,60,200,.22);
  box-shadow: 0 20px 48px rgba(38,60,200,.13);
}
.case-process-lanes a.is-coming-soon {
  border-color: rgba(109,50,255,.16);
}
.case-process-lanes a.is-coming-soon em {
  color: var(--purple);
}
.case-process-lanes a.has-case:hover::after,
.case-process-lanes a.has-case:focus-visible::after {
  opacity: .86;
  transform: scale(1.04);
}
.case-process-lanes strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 24px;
}
.case-process-lanes span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  line-height: 1.55;
}
.case-robot-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: 28px;
  align-items: stretch;
}
.case-robot-layout figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #080a12;
  box-shadow: 0 24px 70px rgba(31,44,75,.16);
}
.case-robot-layout img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.case-robot-actions {
  display: grid;
  gap: 14px;
}
.case-robot-actions article {
  position: relative;
  min-height: 158px;
  padding: 26px 28px 26px 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,44,75,.05);
}
.case-robot-actions article::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 32px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(40,255,82,.13);
}
.case-chain {
  padding: 112px max(22px, calc((100vw - var(--max)) / 2));
}
.case-chain-copy {
  max-width: var(--max);
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, .9fr);
  gap: 40px;
  align-items: end;
}
.case-chain-copy .eyebrow {
  grid-column: 1 / -1;
  gap: 18px;
}
.case-chain-copy h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.12;
}
.case-chain-copy p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}
.case-chain-track {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.22);
}
.case-chain-track article {
  position: relative;
  min-height: 250px;
  padding: 38px 30px 0 30px;
  border-right: 1px solid rgba(255,255,255,.13);
}
.case-chain-track article:last-child {
  border-right: 0;
}
.case-chain-track article::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(40,255,82,.12);
}
.case-chain-track span {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-weight: 900;
}
.case-chain-track b {
  color: #fff;
}
.case-chain-track p {
  color: rgba(255,255,255,.62);
}
.js-reveal .case-problem-path,
.js-reveal .case-process-board,
.js-reveal .case-robot-layout,
.js-reveal .case-chain-track {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.case-problem-path.is-visible,
.case-process-board.is-visible,
.case-robot-layout.is-visible,
.case-chain-track.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .cases-hero,
  .case-process-board,
  .case-robot-layout,
  .case-chain-copy {
    grid-template-columns: 1fr;
  }
  .case-chain-copy .eyebrow,
  .case-chain-copy h2,
  .case-chain-copy p:not(.eyebrow) {
    grid-column: 1 / -1;
  }
  .cases-hero-visual {
    min-height: 420px;
  }
  .case-problem-path {
    grid-template-columns: 1fr;
  }
  .case-problem-path::before {
    left: 52px;
    right: auto;
    top: 56px;
    bottom: 56px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--blue), var(--purple), var(--green));
  }
  .case-problem-path article {
    min-height: 200px;
    padding: 38px 30px 34px 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .case-problem-path article:last-child {
    border-bottom: 0;
  }
  .case-problem-path span {
    top: 36px;
  }
  .case-process-lead {
    min-height: 260px;
  }
  .case-process-lanes {
    grid-template-columns: 1fr 1fr;
  }
  .case-process-lanes.case-platform-lanes {
    grid-template-columns: 1fr;
  }
  .case-process-lanes.case-platform-lanes a {
    min-height: 220px;
  }
  .case-platform-lanes a.has-case::after {
    background-size: auto, cover;
    background-position: center, center;
  }
  .case-chain-track {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 0;
  }
  .case-chain-track article {
    min-height: 220px;
    padding: 0 20px 0 28px;
    border-right: 0;
    border-left: 2px solid rgba(255,255,255,.18);
  }
  .case-chain-track article::before {
    left: -9px;
    top: 0;
  }
}

@media (max-width: 640px) {
  .case-problems,
  .case-software,
  .case-robot-scenes,
  .case-chain {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow-x: hidden;
  }
  .cases-page .case-problem-path,
  .cases-page .case-process-board,
  .cases-page .case-process-lanes,
  .cases-page .case-robot-layout,
  .cases-page .case-robot-actions,
  .cases-page .case-chain-copy,
  .cases-page .case-chain-track {
    width: 100%;
    max-width: min(calc(100vw - 56px), 334px);
    margin-left: 0;
    margin-right: auto;
  }
  .cases-page .cases-hero-visual {
    width: 100%;
    max-width: min(calc(100vw - 36px), 354px);
    min-height: 360px;
    margin-left: 0;
    margin-right: auto;
  }
  .frame-development {
    left: 14px;
    top: 18px;
    right: 14px;
    bottom: auto;
    width: auto;
    height: 43%;
  }
  .frame-deployment {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 62px;
    width: calc(50% - 20px);
    height: 30%;
  }
  .frame-operation {
    left: auto;
    right: 14px;
    top: auto;
    bottom: 62px;
    width: calc(50% - 20px);
    height: 30%;
  }
  .case-visual-flow {
    left: 12px;
    right: 12px;
    bottom: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .case-visual-flow span {
    min-height: 34px;
    font-size: 12px;
  }
  .case-problem-path::before {
    left: 40px;
  }
  .case-problem-path article {
    min-height: auto;
    padding: 30px 20px 28px 84px;
  }
  .case-problem-path span {
    left: 20px;
    top: 28px;
    width: 40px;
    height: 40px;
    border-width: 5px;
  }
  .case-problem-path b,
  .case-robot-actions b,
  .case-chain-track b {
    font-size: 22px;
  }
  .case-process-lead {
    min-height: 220px;
    padding: 26px;
  }
  .case-process-lead b {
    font-size: 34px;
  }
  .case-process-lanes {
    grid-template-columns: 1fr;
  }
  .case-process-lanes.case-platform-lanes a {
    min-height: 180px;
  }
  .case-process-lanes a {
    min-height: 116px;
    padding: 22px;
    border-left: 0;
  }
  .case-process-lanes strong {
    font-size: 22px;
  }
  .case-robot-layout figure,
  .case-robot-layout img {
    min-height: 260px;
  }
  .case-robot-layout img {
    height: auto;
    object-fit: contain;
  }
  .case-robot-actions article {
    min-height: auto;
    padding: 24px 22px 24px 60px;
  }
  .case-robot-actions article::before {
    left: 24px;
    top: 30px;
  }
  .case-chain-copy {
    gap: 20px;
  }
  .case-chain-copy h2 {
    font-size: 30px;
    word-break: break-all;
  }
  .case-chain-track {
    grid-template-columns: 1fr;
  }
  .case-chain-track article {
    min-height: auto;
    padding-bottom: 28px;
  }
}

.tightening-hero {
  grid-template-columns: minmax(0, .86fr) minmax(0, .94fr);
}
.tightening-hero-image {
  min-height: 500px;
}
.tightening-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 47% center;
}
.tightening-visual {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(109,50,255,.22), transparent 28%),
    radial-gradient(circle at 32% 70%, rgba(40,255,82,.16), transparent 32%),
    linear-gradient(135deg, #080a12, #111728);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}
.tightening-chart {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 84px;
  height: 250px;
  border-left: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.chart-line {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 150px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px currentColor);
}
.torque-line {
  top: 84px;
  color: var(--green);
  transform: rotate(-7deg);
}
.angle-line {
  top: 42px;
  color: var(--purple);
  transform: rotate(8deg);
  opacity: .9;
}
.risk-point {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 9px rgba(40,255,82,.13), 0 0 28px rgba(40,255,82,.42);
}
.point-a { left: 46%; top: 108px; }
.point-b { right: 18%; top: 76px; background: #f5c15d; box-shadow: 0 0 0 9px rgba(245,193,93,.15), 0 0 28px rgba(245,193,93,.45); }
.tightening-gauge {
  position: absolute;
  left: 48px;
  bottom: 42px;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 16px solid rgba(255,255,255,.1);
  border-top-color: var(--green);
  border-right-color: var(--purple);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.04);
}
.tightening-gauge b {
  font-size: 24px;
}
.tightening-gauge span {
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  font-weight: 900;
}
.tightening-alert {
  position: absolute;
  right: 44px;
  bottom: 52px;
  width: 280px;
  padding: 24px;
  border: 1px solid rgba(40,255,82,.3);
  border-radius: 10px;
  color: #fff;
  background: rgba(7,8,13,.72);
  box-shadow: 0 20px 46px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.tightening-alert b {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 24px;
}
.tightening-alert span {
  color: rgba(255,255,255,.72);
  font-weight: 900;
}
.tightening-results,
.tightening-lifecycle,
.tightening-assignment,
.tightening-data,
.tightening-quality {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.tightening-metrics {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.tightening-metrics article {
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,44,75,.05);
}
.tightening-metrics b {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: clamp(32px, 4vw, 48px);
}
.tightening-metrics span {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.5;
}
.tightening-loop {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.tightening-loop span {
  position: relative;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}
.tightening-loop span:last-child {
  border-right: 0;
  color: #061006;
  background: var(--green);
}
.tightening-loop span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
.assignment-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .72fr) minmax(260px, .45fr);
  gap: 22px;
  align-items: stretch;
}
.assignment-pain,
.assignment-effects,
.assignment-flow,
.tightening-data-grid,
.quality-flow {
  min-width: 0;
}
.assignment-pain {
  padding: 28px;
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 24%, rgba(40,255,82,.24), transparent 30%),
    linear-gradient(145deg, #080a12, #151a2b);
}
.assignment-pain b {
  display: block;
  margin-bottom: 28px;
  font-size: 28px;
}
.assignment-pain span {
  display: block;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.assignment-flow {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.assignment-flow span {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding-left: 56px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.assignment-flow span:last-child {
  border-bottom: 0;
}
.assignment-flow span::before {
  content: "";
  position: absolute;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(40,255,82,.12);
}
.assignment-effects {
  display: grid;
  gap: 14px;
}
.assignment-effects article {
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31,44,75,.05);
}
.assignment-effects b {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 28px;
}
.assignment-effects p,
.tightening-data-grid p,
.quality-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.tightening-data-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.tightening-data-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f8f9fc);
}
.tightening-data-grid article:last-child {
  border-right: 0;
}
.tightening-data-grid article::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}
.tightening-data-grid b,
.quality-flow b {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
}
.quality-flow {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 3px solid var(--line);
}
.quality-flow article {
  position: relative;
  min-height: 230px;
  padding: 36px 24px 0 0;
}
.quality-flow article::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 19px;
  height: 19px;
  border: 4px solid var(--green);
  border-radius: 50%;
  background: #fff;
}
.quality-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}
.js-reveal .tightening-metrics,
.js-reveal .tightening-loop,
.js-reveal .assignment-layout,
.js-reveal .tightening-data-grid,
.js-reveal .quality-flow {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.tightening-metrics.is-visible,
.tightening-loop.is-visible,
.assignment-layout.is-visible,
.tightening-data-grid.is-visible,
.quality-flow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.line-performance-hero-image {
  min-height: 500px;
}
.line-performance-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 52% center;
}
.fde-hero-image img {
  object-position: center center;
}
.deployment-hero-image {
  background: #07080d;
}
.deployment-hero-image img {
  padding: 0;
  object-fit: cover;
  object-position: 56% center;
}
.performance-model,
.performance-inputs,
.performance-modules,
.performance-case {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.performance-metrics {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.performance-metrics article {
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,44,75,.05);
}
.performance-metrics b {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1;
}
.performance-metrics span {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.5;
}
.performance-time-stack {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .86fr .9fr .72fr .72fr;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.performance-time-stack span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.performance-time-stack span:nth-child(1) { background: #263cc8; }
.performance-time-stack span:nth-child(2) { background: #4d36d8; }
.performance-time-stack span:nth-child(3) { background: #6d32ff; }
.performance-time-stack span:nth-child(4) { background: #111423; }
.performance-time-stack span:nth-child(5) { background: var(--green); color: #061006; border-right: 0; }
.coldtest-hero-image img {
  object-position: 46% center;
}
.sealant-hero-image img {
  object-position: 45% center;
}
.spotweld-hero-image img {
  object-position: 46% center;
}
.sealant-model-flow span:nth-child(2) {
  color: #fff;
  background: #111423;
}
.coldtest-model-flow {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.coldtest-model-flow span {
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}
.coldtest-model-flow span:nth-child(3),
.coldtest-model-flow span:nth-child(4) {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}
.coldtest-model-flow span:last-child {
  border-right: 0;
  color: #061006;
  background: var(--green);
}
.coldtest-model-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
}
.coldtest-discovery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.coldtest-discovery article {
  min-height: 310px;
}
.performance-input-grid,
.performance-module-board,
.performance-case-flow {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.performance-input-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.performance-input-grid article,
.performance-module-board article,
.performance-case-flow article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,44,75,.05);
}
.performance-input-grid article::before,
.performance-module-board article::before,
.performance-case-flow article::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}
.performance-input-grid b,
.performance-module-board b,
.performance-case-flow b {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
}
.performance-input-grid p,
.performance-module-board p,
.performance-case-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.performance-module-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.performance-module-board.fde-platform-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.performance-module-board article {
  min-height: 240px;
}
.performance-module-board span,
.performance-case-flow span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}
.performance-case-flow {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 3px solid var(--line);
}
.performance-case-flow article {
  min-height: 250px;
  padding: 34px 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.performance-case-flow article::before {
  position: absolute;
  top: -11px;
  width: 19px;
  height: 19px;
  margin: 0;
  border: 4px solid var(--green);
  border-radius: 50%;
  background: #fff;
}
.js-reveal .performance-metrics,
.js-reveal .performance-time-stack,
.js-reveal .performance-input-grid,
.js-reveal .performance-module-board,
.js-reveal .performance-case-flow,
.js-reveal .coldtest-model-flow {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.performance-metrics.is-visible,
.performance-time-stack.is-visible,
.performance-input-grid.is-visible,
.performance-module-board.is-visible,
.performance-case-flow.is-visible,
.coldtest-model-flow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .tightening-hero,
  .assignment-layout {
    grid-template-columns: 1fr;
  }
  .tightening-metrics,
  .tightening-data-grid,
  .quality-flow,
  .performance-metrics,
  .performance-input-grid,
  .performance-module-board,
  .performance-case-flow {
    grid-template-columns: 1fr 1fr;
  }
  .performance-time-stack {
    grid-template-columns: 1fr;
  }
  .coldtest-model-flow {
    grid-template-columns: 1fr;
  }
  .coldtest-model-flow span {
    min-height: 72px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .coldtest-model-flow span:last-child {
    border-bottom: 0;
  }
  .coldtest-model-flow span:not(:last-child)::after {
    right: auto;
    left: 34px;
    top: auto;
    bottom: -8px;
    transform: rotate(135deg);
  }
  .performance-time-stack span {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .performance-case-flow {
    gap: 20px;
    border-top: 0;
  }
  .performance-case-flow article {
    min-height: 210px;
    padding: 0 20px 0 28px;
    border-left: 3px solid var(--line);
  }
  .performance-case-flow article::before {
    left: -11px;
    top: 0;
  }
  .tightening-loop {
    grid-template-columns: 1fr;
  }
  .tightening-loop span {
    min-height: 72px;
    justify-content: flex-start;
    padding-left: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .tightening-loop span:last-child {
    border-bottom: 0;
  }
  .tightening-loop span:not(:last-child)::after {
    right: auto;
    left: 34px;
    top: auto;
    bottom: -8px;
    transform: rotate(135deg);
  }
  .tightening-data-grid article:nth-child(2) {
    border-right: 0;
  }
  .quality-flow {
    gap: 20px;
    border-top: 0;
  }
  .quality-flow article {
    min-height: 190px;
    padding: 0 20px 0 28px;
    border-left: 3px solid var(--line);
  }
  .quality-flow article::before {
    top: 0;
    left: -11px;
  }
}

@media (max-width: 640px) {
  .tightening-results,
  .tightening-lifecycle,
  .tightening-assignment,
  .tightening-data,
  .tightening-quality,
  .performance-model,
  .performance-inputs,
  .performance-modules,
  .performance-case {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow-x: hidden;
  }
  .tightening-page .tightening-visual {
    width: 100%;
    max-width: min(calc(100vw - 36px), 354px);
    min-height: 360px;
    margin-left: 0;
    margin-right: auto;
  }
  .tightening-page .tightening-hero-image {
    width: 100%;
    max-width: min(calc(100vw - 36px), 354px);
    min-height: 300px;
    margin-left: 0;
    margin-right: auto;
  }
  .tightening-page .tightening-hero-image img {
    min-height: 300px;
    object-position: 42% center;
  }
  .tightening-page .tightening-metrics,
  .tightening-page .tightening-loop,
  .tightening-page .assignment-layout,
  .tightening-page .assignment-flow,
  .tightening-page .assignment-effects,
  .tightening-page .tightening-data-grid,
  .tightening-page .quality-flow {
    width: 100%;
    max-width: min(calc(100vw - 56px), 334px);
    margin-left: 0;
    margin-right: auto;
  }
  .line-performance-page .line-performance-hero-image {
    width: 100%;
    max-width: min(calc(100vw - 36px), 354px);
    min-height: 300px;
    margin-left: 0;
    margin-right: auto;
  }
  .line-performance-page .line-performance-hero-image img {
    min-height: 300px;
    object-position: 42% center;
  }
  .line-performance-page .fde-hero-image img {
    object-position: center center;
  }
  .line-performance-page .performance-metrics,
  .line-performance-page .performance-time-stack,
  .line-performance-page .performance-input-grid,
  .line-performance-page .performance-module-board,
  .line-performance-page .performance-case-flow,
  .line-performance-page .coldtest-model-flow {
    width: 100%;
    max-width: min(calc(100vw - 56px), 334px);
    margin-left: 0;
    margin-right: auto;
  }
  .tightening-chart {
    left: 24px;
    right: 24px;
    top: 58px;
    height: 170px;
  }
  .chart-line {
    height: 110px;
    border-top-width: 3px;
  }
  .torque-line { top: 54px; }
  .angle-line { top: 24px; }
  .point-a { left: 44%; top: 78px; }
  .point-b { right: 14%; top: 52px; }
  .tightening-gauge {
    left: 24px;
    bottom: 24px;
    width: 112px;
    height: 112px;
    border-width: 11px;
  }
  .tightening-gauge b {
    font-size: 17px;
  }
  .tightening-alert {
    right: 18px;
    bottom: 34px;
    width: 176px;
    padding: 16px;
  }
  .tightening-alert b {
    font-size: 18px;
  }
  .tightening-metrics,
  .tightening-data-grid,
  .quality-flow,
  .performance-metrics,
  .performance-input-grid,
  .performance-module-board,
  .performance-case-flow,
  .coldtest-discovery {
    grid-template-columns: 1fr;
  }
  .performance-metrics article,
  .performance-input-grid article,
  .performance-module-board article {
    min-height: auto;
  }
  .performance-input-grid article::before,
  .performance-module-board article::before,
  .performance-case-flow article::before {
    margin-bottom: 28px;
  }
  .performance-case-flow article {
    min-height: auto;
    padding-bottom: 28px;
  }
  .tightening-metrics article {
    min-height: 132px;
  }
  .tightening-metrics b {
    margin-bottom: 18px;
  }
  .assignment-pain {
    padding: 24px;
  }
  .assignment-pain b {
    font-size: 24px;
  }
  .tightening-data-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .tightening-data-grid article:last-child {
    border-bottom: 0;
  }
  .tightening-data-grid article::before {
    margin-bottom: 28px;
  }
  .quality-flow article {
    min-height: auto;
    padding-bottom: 28px;
  }
}

.technology-page .technology-loop-section,
.technology-page .technology-stack,
.technology-page .technology-scenarios,
.technology-page .technology-delivery {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.technology-hero-visual {
  height: 520px;
  min-height: 520px;
  background:
    radial-gradient(circle at 72% 34%, rgba(109,50,255,.2), transparent 34%),
    radial-gradient(circle at 30% 72%, rgba(40,255,82,.1), transparent 30%),
    #07080d;
}
.technology-hero-visual img {
  height: 520px;
  min-height: 520px;
  object-position: center center;
  filter: brightness(.94) saturate(.88) contrast(1.03);
  opacity: 1;
  object-fit: contain;
}
.technology-hero-visual::after {
  background:
    linear-gradient(90deg, rgba(7,8,13,.42), rgba(7,8,13,.08) 46%, rgba(7,8,13,.26)),
    radial-gradient(circle at 72% 28%, rgba(109,50,255,.2), transparent 34%),
    linear-gradient(180deg, rgba(7,8,13,.08), rgba(7,8,13,.34));
}
.technology-orbit {
  position: relative;
  max-width: var(--max);
  min-height: 780px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 46%, rgba(38,60,200,.13), transparent 28%),
    radial-gradient(circle at 72% 30%, rgba(109,50,255,.12), transparent 26%),
    linear-gradient(135deg, #fff, #f7f9fd);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(31,44,75,.08);
}
.technology-orbit::before,
.technology-orbit::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,60,200,.28), rgba(40,255,82,.36), transparent);
}
.technology-orbit::after {
  left: 50%;
  right: auto;
  top: 10%;
  bottom: 10%;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(109,50,255,.28), rgba(40,255,82,.32), transparent);
}
.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(330px, 34vw);
  min-height: 250px;
  padding: 34px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(38,60,200,.18);
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 18%, rgba(40,255,82,.28), transparent 30%),
    linear-gradient(145deg, #080a12, #182044 58%, #111522);
  box-shadow: 0 28px 70px rgba(31,44,75,.22);
}
.orbit-core span {
  display: block;
  margin-bottom: 48px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.orbit-core b {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}
.orbit-core p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.orbit-node {
  position: absolute;
  z-index: 3;
  width: min(280px, 26vw);
  min-height: 190px;
  padding: 24px 26px;
  border: 1px solid rgba(219,225,236,.9);
  border-radius: 10px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 42px rgba(31,44,75,.08);
  backdrop-filter: blur(12px);
}
.orbit-node span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}
.orbit-node b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}
.orbit-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.node-data { left: 32px; top: 40px; }
.node-brain { left: 32px; top: 295px; }
.node-edge {
  left: 32px;
  bottom: 40px;
}
.node-world { right: 32px; top: 40px; }
.node-cerebellum { right: 32px; top: 295px; }
.node-agent {
  right: 32px;
  bottom: 40px;
}
.technology-rail {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 3px solid var(--line);
}
.technology-rail article {
  position: relative;
  min-height: 360px;
  padding: 34px 28px 0;
  border-right: 1px solid var(--line);
}
.technology-rail article:last-child {
  border-right: 0;
}
.technology-rail article::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: -44px 0 36px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(38,60,200,.18), 0 0 22px rgba(40,255,82,.24);
}
.technology-rail span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 900;
}
.technology-rail b {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
}
.technology-rail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.tech-scenario-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tech-scenario-grid a {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(31,44,75,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tech-scenario-grid a:hover,
.tech-scenario-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(38,60,200,.26);
  box-shadow: 0 22px 50px rgba(31,44,75,.12);
  outline: 0;
}
.tech-scenario-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.16;
}
.tech-scenario-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.68;
}
.tech-scenario-grid em {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}
.tech-scenario-grid em::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}
.tech-scenario-grid a:hover em::after,
.tech-scenario-grid a:focus-visible em::after {
  width: 44px;
}

@media (max-width: 980px) {
  .technology-page .technology-loop-section,
  .technology-page .technology-stack,
  .technology-page .technology-scenarios,
  .technology-page .technology-delivery {
    padding: 72px 22px;
  }
  .technology-orbit {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 18px;
  }
  .technology-orbit::before,
  .technology-orbit::after {
    display: none;
  }
  .orbit-core,
  .orbit-node,
  .node-edge {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }
  .orbit-core {
    padding: 28px;
  }
  .orbit-core span {
    margin-bottom: 42px;
  }
  .technology-rail,
  .tech-scenario-grid {
    grid-template-columns: 1fr;
  }
  .technology-rail {
    border-top: 0;
    gap: 14px;
  }
  .technology-rail article {
    min-height: auto;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .technology-rail article::before {
    margin: 0 0 28px;
  }
  .tech-scenario-grid a {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .technology-hero-visual {
    height: 300px;
    min-height: 300px;
  }
  .technology-hero-visual img {
    height: 300px;
    min-height: 300px;
  }
  .tech-scenario-grid strong {
    font-size: 24px;
  }
}

.about-page .about-intro,
.about-page .about-journey,
.about-page .about-position,
.about-page .about-trust,
.about-page .about-contact-section {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
}
.about-hero-visual {
  height: 520px;
  min-height: 520px;
}
.about-page .subpage-hero h1 {
  font-size: clamp(40px, 4.1vw, 60px);
}
.about-hero-visual img {
  height: 520px;
  min-height: 520px;
  object-position: 28% center;
}
.about-reference-visual {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
  gap: 8px;
  padding: 8px;
  background: #e8edf3;
}
.about-reference-visual::after {
  display: none;
}
.about-reference-panel {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #dfe5ec;
}
.about-reference-visual .about-product-reference,
.about-reference-visual .about-interface-reference {
  width: 100%;
  height: 100%;
  min-height: 0;
  filter: none;
  opacity: 1;
}
.about-reference-visual .about-product-reference {
  object-fit: cover;
  object-position: 76% center;
}
.about-reference-visual .about-interface-reference {
  object-fit: cover;
  object-position: center center;
}
.about-proof-strip {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(31,44,75,.06);
}
.about-proof-strip article {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.about-proof-strip article:last-child {
  border-right: 0;
}
.about-proof-strip b {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1;
}
.performance-metrics .metric-value,
.about-proof-strip .metric-value {
  height: 56px;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
  letter-spacing: 0;
}
.performance-metrics .metric-value-latin,
.about-proof-strip .metric-value-latin {
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(42px, 4.3vw, 54px);
  font-variant-numeric: tabular-nums;
}
.performance-metrics .metric-value-medium,
.about-proof-strip .metric-value-medium {
  font-size: clamp(32px, 3vw, 38px);
}
.performance-metrics .metric-value-long,
.about-proof-strip .metric-value-long {
  font-size: clamp(28px, 2.6vw, 34px);
}
.about-proof-strip span {
  color: var(--muted);
  font-weight: 800;
}
.about-vision-board {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1fr);
  gap: 18px;
}
.about-vision-board article {
  min-height: 156px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(31,44,75,.06);
}
.about-vision-board .vision-main {
  grid-row: span 3;
  min-height: 552px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(40,255,82,.22), transparent 32%),
    linear-gradient(145deg, #080a12, #172044);
}
.about-vision-board span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-weight: 900;
}
.about-vision-board b {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
}
.about-vision-board p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.about-vision-board .vision-main b {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
}
.about-vision-board .vision-main span {
  margin-bottom: 62px;
}
.about-vision-board .vision-main p {
  color: rgba(255,255,255,.74);
  font-size: 18px;
}
.about-identity-layout {
  max-width: var(--max);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
.about-identity-copy {
  padding: 34px 0;
}
.about-identity-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.about-proof-strip.compact {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-proof-strip.compact article {
  min-height: 132px;
}
.about-timeline {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 3px solid var(--line);
}
.about-timeline article {
  position: relative;
  min-height: 330px;
  padding: 40px 24px 0 0;
  border-right: 1px solid var(--line);
}
.about-timeline article:last-child {
  border-right: 0;
}
.about-timeline article::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: -51px 0 34px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(38,60,200,.18), 0 0 22px rgba(40,255,82,.24);
}
.about-timeline time {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
}
.about-timeline b {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}
.about-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.about-timeline.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-timeline.compact article {
  min-height: 260px;
  padding-left: 36px;
  padding-right: 36px;
}
.about-timeline.compact time {
  font-size: 22px;
}
.about-position-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-position-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(31,44,75,.06);
}
.about-position-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--green);
  font-weight: 900;
}
.about-position-grid b {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
}
.about-position-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.about-trust-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.about-trust-panel {
  min-height: 360px;
  padding: 34px;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 22%, rgba(40,255,82,.2), transparent 30%),
    linear-gradient(145deg, #080a12, #171f42);
  box-shadow: 0 24px 60px rgba(31,44,75,.16);
}
.about-trust-panel b {
  display: block;
  margin-bottom: 22px;
  font-size: 34px;
  line-height: 1.15;
}
.about-trust-panel p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}
.about-industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.about-industry-list span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(31,44,75,.04);
}
.about-contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .54fr) minmax(320px, .62fr);
  gap: 28px;
  align-items: start;
}
.about-contact-copy h2 {
  color: #fff;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15;
}
.about-contact-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}
.about-contact-card,
.about-lead-form {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: 0 22px 56px rgba(0,0,0,.16);
}
.about-contact-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
}
.about-contact-card p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.about-contact-card b,
.about-contact-card a {
  color: #fff;
}
.about-lead-form label span {
  color: rgba(255,255,255,.72);
}

@media (max-width: 1180px) {
  .about-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .about-timeline article {
    border-bottom: 1px solid var(--line);
  }
  .about-contact-section {
    grid-template-columns: 1fr 1fr;
  }
  .about-contact-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .about-page .about-intro,
  .about-page .about-journey,
  .about-page .about-position,
  .about-page .about-trust,
  .about-page .about-contact-section {
    padding: 72px 22px;
  }
  .about-proof-strip,
  .about-vision-board,
  .about-identity-layout,
  .about-position-grid,
  .about-trust-layout,
  .about-contact-section {
    grid-template-columns: 1fr;
  }
  .about-vision-board .vision-main {
    min-height: auto;
  }
  .about-identity-copy {
    padding: 0;
  }
  .about-proof-strip.compact {
    grid-template-columns: 1fr;
  }
  .about-proof-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-proof-strip article:last-child {
    border-bottom: 0;
  }
  .about-timeline {
    grid-template-columns: 1fr;
    border-top: 0;
  }
  .about-timeline article {
    min-height: auto;
    padding: 28px 0 28px 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-timeline.compact article {
    padding: 28px 0 28px 58px;
  }
  .about-timeline article::before {
    position: absolute;
    left: 0;
    top: 34px;
    margin: 0;
  }
  .about-timeline article::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 58px;
    bottom: 0;
    width: 1px;
    background: var(--line);
  }
  .about-timeline article:last-child::after {
    display: none;
  }
  .about-industry-list {
    grid-template-columns: 1fr;
  }
  .about-contact-copy,
  .about-contact-card,
  .about-lead-form {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .about-hero-visual,
  .about-hero-visual img {
    height: 300px;
    min-height: 300px;
  }
  .about-hero-visual img {
    object-position: 22% center;
  }
  .cases-hero-main-image {
    object-position: 40% center;
  }
  .about-reference-visual {
    height: 560px;
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: 260px 284px;
  }
  .about-reference-visual .about-product-reference,
  .about-reference-visual .about-interface-reference {
    height: 100%;
    min-height: 0;
  }
  .about-reference-visual .about-product-reference {
    object-fit: cover;
    object-position: 72% center;
  }
  .about-position-grid article,
  .about-trust-panel {
    min-height: auto;
  }
  .about-contact-copy h2 {
    font-size: 34px;
  }
}

/* V4 readability refinements: keep public-facing titles from being split into awkward fragments. */
.subpage-hero-copy h1,
.section-heading h2,
.section-heading.compact h2 {
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.cases-page .subpage-hero h1 {
  word-break: keep-all;
  overflow-wrap: normal;
}
.data-page .subpage-hero h1,
.about-page .subpage-hero h1 {
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .subpage-hero {
    grid-template-columns: minmax(470px, .95fr) minmax(360px, .85fr);
  }
  .section-heading.compact {
    grid-template-columns: minmax(390px, .95fr) minmax(300px, .7fr);
  }
}

@media (max-width: 980px) {
  .subpage-hero-copy h1,
  .section-heading h2,
  .section-heading.compact h2,
  .software-page .section-heading h2,
  .software-page .subpage-hero-copy h1 {
    word-break: normal;
    overflow-wrap: break-word;
  }
  .performance-module-board.fde-platform-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cases-page .subpage-hero h1 {
    white-space: nowrap;
    text-wrap: nowrap;
  }
  .performance-module-board.fde-platform-board {
    grid-template-columns: 1fr;
  }
}
