:root {
  --bg: #f6f7f3;
  --surface: #ffffff;
  --ink: #17201b;
  --muted: #5f6b62;
  --line: #d8ded6;
  --green: #315b3c;
  --cyan: #0f6b78;
  --amber: #a65f17;
  --blue: #243f73;
  --violet: #6d3bbd;
  --soft-green: #e6efdf;
  --soft-cyan: #e2f0f1;
  --soft-amber: #f5eadb;
  --soft-violet: #eee7fb;
  --shadow: 0 18px 45px rgba(23, 32, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
nav a:focus-visible {
  outline: 3px solid #0f6b78;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 10px;
  z-index: 10;
  padding: 8px 12px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  display: block;
  background: none;
  font-weight: 760;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

nav a {
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

nav a:hover,
nav a.active {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}

.content {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 80px;
}

.content > h1 {
  width: min(940px, 100%);
  margin: 0 0 24px;
  line-height: 1.04;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5.9rem);
  font-weight: 520;
  letter-spacing: 0;
}

.content-index > h1 {
  width: min(980px, 100%);
}

h2,
h3 {
  margin: 0 0 0.65em;
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 1em 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  padding-left: 1.35em;
}

strong {
  font-weight: 760;
}

.lead {
  width: min(860px, 100%);
  margin-top: 0;
  color: #334139;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.eyebrow,
.card-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section {
  padding: clamp(12px, 3vw, 28px) 0 clamp(30px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-layout,
.industrial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.hero-visual,
.product-hero-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual img,
.product-hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.product-hero-card img {
  aspect-ratio: 5 / 4;
}

.hero-visual figcaption,
.product-hero-card figcaption,
.image-showcase figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  border-top: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 720;
  text-decoration: none;
}

.button.primary {
  border-color: var(--green);
  color: #ffffff;
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
}

.text-link {
  color: var(--cyan);
  font-weight: 720;
}

.business-section,
.home-businesses,
.company-note,
.positioning-section,
.feature-list,
.service-summary,
.cloud-screenshot-section,
.process-section,
.proof-strip,
.operating-model,
.solution-platform,
.device-software,
.workflow-preview,
.partner-model,
.use-case-section,
.pilot-package,
.faq-section,
.contact-guide,
.notice-box,
.profile-section,
.contact-grid,
.cta-band {
  margin-top: clamp(34px, 7vw, 84px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 22px;
}

.section-heading h2 {
  max-width: 760px;
}

.business-grid,
.feature-list,
.contact-grid,
.proof-strip,
.use-case-grid,
.faq-list,
.platform-grid,
.model-flow,
.partner-model-grid,
.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.business-card,
.feature-list article,
.contact-grid article,
.proof-strip article,
.device-capability-grid article,
.use-case-grid article,
.use-case-card,
.faq-list article,
.platform-grid article,
.model-flow article,
.partner-model-grid article,
.guide-list article,
.service-panel,
.notice-box {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(22px, 4vw, 42px);
}

.proof-strip article {
  padding: 18px;
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.25;
}

.proof-strip span,
.model-flow p,
.platform-grid p,
.partner-model-grid p,
.guide-list span,
.use-case-grid p,
.use-case-card p,
.faq-list p,
.pilot-package p,
.pilot-package li {
  color: var(--muted);
}

.business-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.card-image {
  display: block;
  width: 100%;
  height: 160px;
  margin: 0 0 18px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: #e8eee8;
}

.business-card h3 {
  min-height: 2.4em;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.business-card p,
.feature-list p,
.service-panel p,
.notice-box p,
.contact-grid p {
  color: var(--muted);
}

.card-button {
  width: 100%;
  margin-top: auto;
}

.light-card {
  background: linear-gradient(180deg, var(--surface), var(--soft-violet));
}

.cloud-card {
  background: linear-gradient(180deg, var(--surface), var(--soft-cyan));
}

.industrial-card {
  background: linear-gradient(180deg, var(--surface), var(--soft-amber));
}

.content-index {
  width: 100%;
  margin-top: 0;
}

.content-light-technologies,
.content-cloud,
.content-industrial-inventory,
.content-optical-instrumentation {
  width: 100%;
  margin-top: 0;
}

.home-hero {
  position: relative;
  width: 100%;
  min-height: min(720px, calc(100svh - 78px));
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: #15231d;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.03);
  animation: home-image-settle 1200ms ease-out both;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.86) 0%, rgba(10, 18, 14, 0.64) 42%, rgba(10, 18, 14, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 18, 14, 0.12), rgba(10, 18, 14, 0.62));
}

.home-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 14vh, 150px) 0 clamp(52px, 10vh, 108px);
  color: #ffffff;
  animation: home-copy-rise 720ms ease-out 100ms both;
}

.home-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7.1rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero p:not(.home-kicker) {
  width: min(720px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.75vw, 1.38rem);
  line-height: 1.45;
}

.home-businesses {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
  margin-top: clamp(28px, 5vw, 58px);
}

.home-business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.home-business-item {
  position: relative;
  min-height: clamp(330px, 38vw, 460px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  text-decoration: none;
  background: #16221d;
}

.home-business-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  transition: transform 500ms ease, opacity 500ms ease;
}

.home-business-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 8, 0.04), rgba(5, 10, 8, 0.78));
}

.home-business-copy {
  position: relative;
  z-index: 1;
  display: block;
  padding: clamp(20px, 3vw, 30px);
}

.home-business-copy strong,
.home-business-copy span,
.home-business-copy em {
  display: block;
}

.home-business-copy strong {
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 520;
  line-height: 1.04;
}

.home-business-copy span {
  max-width: 31ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.48;
}

.home-business-copy em {
  width: max-content;
  margin-top: 22px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 760;
  transition: transform 220ms ease, border-color 220ms ease;
}

.home-business-copy em::after {
  content: " ->";
}

.home-business-item:hover img {
  opacity: 0.94;
  transform: scale(1.045);
}

.home-business-item:hover .home-business-copy em {
  border-color: #ffffff;
  transform: translateX(4px);
}

.page-visual-hero {
  position: relative;
  width: 100%;
  min-height: min(620px, calc(100svh - 78px));
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: #15231d;
}

.page-visual-hero.compact {
  min-height: min(560px, calc(100svh - 78px));
}

.page-visual-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  transition: transform 700ms ease;
}

.optical-hero > img {
  object-position: left center;
  transform: scale(1.55);
}

.page-light-technologies .page-visual-hero > img {
  object-position: center 66%;
}

.page-cloud .page-visual-hero > img {
  object-position: center 48%;
}

.page-cloud .page-visual-hero::after {
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.72) 0%, rgba(10, 18, 14, 0.42) 48%, rgba(10, 18, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 18, 14, 0.02), rgba(10, 18, 14, 0.18));
}

.page-visual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.68) 0%, rgba(10, 18, 14, 0.38) 48%, rgba(10, 18, 14, 0.07) 100%),
    linear-gradient(180deg, rgba(10, 18, 14, 0.02), rgba(10, 18, 14, 0.26));
}

.page-visual-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 12vh, 132px) 0 clamp(48px, 9vh, 96px);
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
  animation: home-copy-rise 620ms ease-out 80ms both;
}

.page-visual-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-visual-copy p:not(.home-kicker) {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.45;
}

.page-visual-copy a:not(.button) {
  color: #ffffff;
}

.light-button {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.hero-outline-button {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.industrial-page-hero > img {
  object-position: 68% center;
}

.industrial-page-hero::after {
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.8) 0%, rgba(10, 18, 14, 0.54) 46%, rgba(10, 18, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 18, 14, 0.02), rgba(10, 18, 14, 0.44));
}

.editorial-section,
.editorial-link-grid,
.quiet-note,
.content-light-technologies > .image-showcase,
.content-cloud > .image-showcase,
.content-industrial-inventory > .device-software,
.content-industrial-inventory > .use-case-section,
.content-industrial-inventory > .detail-box,
.content-industrial-inventory > .faq-section,
.content-optical-instrumentation > .image-showcase,
.content-optical-instrumentation > .cta-band {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.content-optical-instrumentation > .image-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(44px, 8vw, 92px);
  padding-top: clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--line);
}

.editorial-section > div:first-child p {
  color: var(--muted);
}

.editorial-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.editorial-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(16px, 3vw, 34px);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-list h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.editorial-list p {
  margin: 0;
  color: var(--muted);
}

.editorial-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(40px, 7vw, 82px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.editorial-link-panel {
  display: block;
  min-height: 280px;
  padding: clamp(24px, 4vw, 38px);
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 240, 0.84)),
    var(--surface);
  transition: background 220ms ease, transform 220ms ease;
}

.editorial-link-panel h2 {
  max-width: 560px;
}

.editorial-link-panel p {
  max-width: 620px;
  color: var(--muted);
}

.editorial-link-panel span {
  display: inline-block;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 760;
  transition: transform 220ms ease;
}

.editorial-link-panel span::after {
  content: " ->";
}

.editorial-link-panel:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(226, 240, 241, 0.88)),
    var(--surface);
}

.editorial-link-panel:hover span {
  transform: translateX(4px);
}

.quiet-note {
  margin-top: clamp(34px, 6vw, 68px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@keyframes home-copy-rise {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes home-image-settle {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-image,
  .home-hero-inner {
    animation: none;
  }

  .page-visual-copy {
    animation: none;
  }

  .home-business-item img,
  .home-business-copy em,
  .editorial-link-panel,
  .editorial-link-panel span {
    transition: none;
  }
}

.positioning-section,
.service-summary,
.operating-model,
.workflow-preview,
.partner-model,
.contact-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.partner-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 7vw, 84px);
  padding: 24px;
  border: 1px solid #d7c9b8;
  border-radius: 8px;
  background: #fff7ed;
}

.partner-strip h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.service-summary.single-column {
  grid-template-columns: minmax(0, 1fr);
}

.partner-strip p {
  margin: 0;
  color: var(--muted);
}

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

.copy-columns p {
  margin-top: 0;
  color: var(--muted);
}

.feature-list {
  align-items: stretch;
}

.feature-list > .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.feature-list.compact article h2 {
  font-size: 1.3rem;
}

.service-panel {
  background: #eef3f0;
}

.service-summary .service-panel {
  min-height: 0;
}

.service-image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.service-image.editorial img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #eef5ff;
}

.service-image figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  border-top: 1px solid var(--line);
}

.page-evidence-image {
  width: min(720px, 100%);
  margin-top: 24px;
}

.page-evidence-image img {
  max-height: 520px;
  object-fit: contain;
  background: #f4f6f4;
}

.standalone-panel {
  margin-top: 18px;
  max-width: 760px;
}

.visual-panel {
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 255, 0.82)),
    radial-gradient(circle at top left, rgba(109, 59, 189, 0.12), transparent 32%);
  box-shadow: var(--shadow);
}

.hero-visual.visual-panel {
  margin-top: 0;
}

.visual-panel figcaption {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.diagram-title {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.diagram-flow,
.diagram-grid,
.timeline-grid {
  display: grid;
  gap: 12px;
}

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

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

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.diagram-card,
.timeline-card {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.diagram-card strong,
.timeline-card strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.24;
}

.diagram-card span,
.timeline-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.diagram-card.industrial,
.timeline-card.industrial {
  border-top: 5px solid var(--green);
}

.diagram-card.cloud,
.timeline-card.cloud {
  border-top: 5px solid var(--blue);
}

.diagram-card.light,
.timeline-card.light {
  border-top: 5px solid var(--violet);
}

.diagram-card.evidence,
.timeline-card.evidence {
  border-top: 5px solid var(--amber);
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.contact-card h2 a {
  color: inherit;
  text-decoration: none;
}

.contact-card h2 a:hover {
  color: var(--cyan);
}

.contact-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.solution-platform {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.device-software {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.device-software .section-heading h2 {
  grid-column: 2;
  grid-row: 1;
}

.device-software .section-heading p:not(.eyebrow) {
  grid-column: 2;
  max-width: 760px;
}

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

.device-capability-grid article {
  padding: 18px;
}

.device-capability-grid h3 {
  font-size: 1.08rem;
}

.app-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.app-screenshot-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.app-screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  background: #f4f6f5;
}

.app-screenshot-grid figcaption {
  min-height: 5.8em;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  border-top: 1px solid var(--line);
}

.platform-grid,
.model-flow,
.partner-model-grid {
  align-items: stretch;
}

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

.platform-grid article,
.model-flow article,
.partner-model-grid article,
.guide-list article {
  padding: 20px;
}

.model-flow span,
.workflow-steps li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 760;
}

.workflow-preview {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.workflow-steps {
  counter-reset: workflow-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  counter-increment: workflow-step;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.workflow-steps li::before {
  content: counter(workflow-step);
}

.workflow-steps strong {
  display: block;
  margin-bottom: 6px;
}

.workflow-steps p {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-guide {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
  margin-top: clamp(24px, 5vw, 52px);
}

.guide-list {
  align-items: stretch;
}

.guide-list article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-list h3,
.guide-list strong {
  line-height: 1.25;
}

.guide-list span,
.guide-list li {
  line-height: 1.5;
}

.guide-list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.image-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 7vw, 84px);
}

.embedded-showcase {
  margin-top: 18px;
}

.image-showcase figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
  margin-top: clamp(34px, 7vw, 84px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

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

.capability-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.capability-list p {
  color: var(--muted);
}

.use-case-section,
.pilot-package,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

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

.use-case-grid article,
.use-case-card,
.faq-list article {
  padding: 18px;
}

.use-case-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.use-case-card:hover {
  border-color: #c3d0c4;
  transform: translateY(-1px);
}

.use-case-grid h3,
.faq-list h3 {
  font-size: 1.08rem;
}

.pilot-package {
  padding: 26px;
  border: 1px solid #d7c9b8;
  border-radius: 8px;
  background: #fff7ed;
}

.pilot-package ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-package li {
  padding: 14px 16px;
  border: 1px solid #e6d8c6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.pilot-package strong {
  display: block;
  color: var(--ink);
}

.faq-list {
  grid-template-columns: 1fr;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

.steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.notice-box {
  background: #fff8ed;
}

.company-note {
  max-width: 760px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.company-note p {
  margin: 0;
}

.template-box,
.detail-box {
  margin-top: clamp(28px, 5vw, 56px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.template-box summary,
.detail-box summary {
  cursor: pointer;
  color: var(--cyan);
  font-weight: 760;
}

.template-box[open] summary,
.detail-box[open] summary {
  margin-bottom: 12px;
}

.template-box pre {
  margin: 16px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f6f1;
  color: #26322c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.profile-section {
  width: min(900px, 100%);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.profile-section h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.chinese {
  color: #26322c;
}

.cta-band {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid #cbd8cc;
  border-radius: 8px;
  background: #eaf1e7;
}

.cta-band h2 {
  max-width: 760px;
}

.cta-band p {
  max-width: 780px;
  color: var(--muted);
}

figure {
  max-width: 100%;
  margin: 1.5em 0;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

code,
pre {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.content-uv-trait {
  width: min(980px, calc(100% - 32px));
}

.content-uv-trait p,
.content-uv-trait li {
  color: #26322c;
}

.content-uv-trait h2 {
  margin-top: 2em;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    justify-content: flex-start;
  }

  .section-heading,
  .positioning-section,
  .service-summary,
  .industrial-hero,
  .hero-layout,
  .partner-strip,
  .capability-grid,
  .operating-model,
  .workflow-preview,
  .partner-model,
  .use-case-section,
  .pilot-package,
  .faq-section,
  .contact-guide,
  .copy-columns {
    grid-template-columns: 1fr;
  }

  .business-grid,
  .home-business-grid,
  .feature-list,
  .contact-grid,
  .proof-strip,
  .device-capability-grid,
  .use-case-grid,
  .faq-list,
  .platform-grid,
  .model-flow,
  .partner-model-grid,
  .guide-list,
  .image-showcase,
  .app-screenshot-grid,
  .workflow-steps,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .diagram-flow,
  .diagram-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .business-card h3 {
    min-height: 0;
  }

  .home-hero {
    min-height: calc(100svh - 156px);
    align-items: center;
  }

  .page-visual-hero,
  .page-visual-hero.compact {
    min-height: calc(100svh - 156px);
    align-items: center;
  }

  .home-business-grid {
    grid-template-columns: 1fr;
  }

  .home-business-item {
    min-height: 320px;
  }

  .editorial-section,
  .editorial-list article,
  .editorial-link-grid {
    grid-template-columns: 1fr;
  }

  .partner-strip {
    align-items: start;
  }

  .device-software .section-heading h2,
  .device-software .section-heading p:not(.eyebrow) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .content,
  footer {
    width: min(100% - 22px, 1180px);
  }

  .brand small {
    font-size: 0.72rem;
  }

  nav a {
    padding: 6px 8px;
    font-size: 0.86rem;
  }

  .content {
    margin-top: 16px;
  }

  .content-index {
    width: 100%;
    margin-top: 0;
  }

  .content-light-technologies,
  .content-cloud,
  .content-industrial-inventory,
  .content-optical-instrumentation {
    width: 100%;
    margin-top: 0;
  }

  .content > h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .home-hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  .page-visual-copy {
    width: min(100% - 28px, 1180px);
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .page-visual-copy h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  .page-visual-hero,
  .page-visual-hero.compact {
    min-height: 560px;
  }

  .editorial-section,
  .editorial-link-grid,
  .quiet-note,
  .content-light-technologies > .image-showcase,
  .content-cloud > .image-showcase,
  .content-industrial-inventory > .device-software,
  .content-industrial-inventory > .use-case-section,
  .content-industrial-inventory > .detail-box,
  .content-industrial-inventory > .faq-section,
  .content-optical-instrumentation > .image-showcase,
  .content-optical-instrumentation > .cta-band {
    width: min(100% - 28px, 1180px);
  }

  .business-card,
  .feature-list article,
  .contact-grid article,
  .service-panel,
  .notice-box,
  .pilot-package,
  .platform-grid article,
  .model-flow article,
  .partner-model-grid article,
  .device-capability-grid article,
  .guide-list article,
  .cta-band {
    padding: 18px;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .guide-list article {
    gap: 8px;
  }
}
