:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5e6c78;
  --line: #d9e2e8;
  --panel: #ffffff;
  --soft: #eef5f6;
  --soft-2: #f7faf9;
  --teal: #087f8c;
  --teal-dark: #075965;
  --blue: #1e6fb8;
  --green: #4d8b57;
  --amber: #b07a23;
  --shadow: 0 22px 70px rgba(22, 41, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--soft-2);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 226, 232, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  background-color: var(--teal);
  background-image: url("assets/yx-endovision-mark.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 8px 20px rgba(8, 127, 140, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark);
  background: #e7f3f4;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  font-weight: 700;
}

.header-cta {
  padding: 0 16px;
  color: #fff;
  background: var(--teal);
  font-size: 14px;
  white-space: nowrap;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(8, 127, 140, 0.2);
}

.button.secondary {
  color: var(--teal-dark);
  border-color: #b7d5d9;
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px) 58px;
  background:
    linear-gradient(135deg, rgba(238, 245, 246, 0.92), rgba(255, 255, 255, 0.65)),
    linear-gradient(90deg, #f8fbfb, #e8f2f4);
}

.hero-compact {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  min-height: 720px;
  background:
    linear-gradient(135deg, rgba(238, 245, 246, 0.96), rgba(255, 255, 255, 0.76)),
    url("assets/technology-hero.png") right center/56% auto no-repeat,
    linear-gradient(90deg, #f8fbfb, #e8f2f4);
}

.about-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  min-height: 700px;
}

.product-hero,
.application-hero {
  min-height: 700px;
}

.product-hero {
  background:
    linear-gradient(100deg, rgba(248, 251, 251, 0.98) 0 48%, rgba(248, 251, 251, 0.7) 72%),
    url("assets/technology-hero.png") right center/54% auto no-repeat,
    linear-gradient(90deg, #f8fbfb, #e8f2f4);
}

.application-hero {
  background:
    linear-gradient(120deg, rgba(238, 245, 246, 0.98), rgba(255, 255, 255, 0.74)),
    linear-gradient(90deg, #f8fbfb, #e8f2f4);
}

.insights-hero {
  min-height: 620px;
  background:
    linear-gradient(120deg, rgba(238, 245, 246, 0.98), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, #f8fbfb, #e8f2f4);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.62fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  min-height: 560px;
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(238, 245, 246, 0.98), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, #f8fbfb, #e8f2f4);
}

.contact-intro {
  max-width: 760px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(380px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 89, 101, 0.86);
  backdrop-filter: blur(14px);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.proof-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(160deg, rgba(7, 89, 101, 0.92), rgba(23, 33, 43, 0.9));
  box-shadow: var(--shadow);
}

.proof-panel-head span,
.number {
  display: block;
  margin-bottom: 14px;
  color: #bde6e5;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-panel-head strong {
  display: block;
  max-width: 420px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list span {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.about-signal {
  align-self: center;
  padding: 34px;
  border: 1px solid #c8dadd;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-signal span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-signal strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.about-signal p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.product-hero-panel,
.application-hero-panel {
  align-self: center;
  max-width: 460px;
  margin-left: auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, rgba(7, 89, 101, 0.92), rgba(23, 33, 43, 0.9));
  box-shadow: var(--shadow);
}

.application-hero-panel {
  background: #fff;
  color: var(--ink);
  border-color: #c8dadd;
}

.product-hero-panel span,
.application-hero-panel span {
  display: block;
  margin-bottom: 16px;
  color: #bde6e5;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.application-hero-panel span {
  color: var(--teal-dark);
}

.product-hero-panel strong,
.application-hero-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.product-hero-panel p,
.application-hero-panel p {
  margin-bottom: 0;
}

.product-hero-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.application-hero-panel p {
  color: var(--muted);
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, rgba(7, 89, 101, 0.94), rgba(23, 33, 43, 0.92));
  box-shadow: var(--shadow);
}

.contact-card span {
  display: block;
  margin-bottom: 16px;
  color: #bde6e5;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.contact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 40px;
  align-items: end;
  padding: 54px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--teal-dark);
}

.intro-band .section-kicker {
  color: #bde6e5;
}

.intro-band .section-kicker::before {
  background: #bde6e5;
}

.intro-band h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.intro-band p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.section,
.verification,
.cta {
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section.alt {
  background: #fff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(9, minmax(110px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

.workflow li {
  position: relative;
  min-height: 110px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 28px rgba(22, 41, 54, 0.06);
}

.workflow li::before {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  content: "0" counter(list-item);
}

.workflow li:not(:last-child)::after {
  position: absolute;
  right: -12px;
  top: 50%;
  z-index: 2;
  width: 12px;
  height: 2px;
  background: var(--green);
  content: "";
}

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

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.differentiator-card {
  grid-column: span 2;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 41, 54, 0.07);
}

.differentiator-card:nth-child(4),
.differentiator-card:nth-child(5) {
  grid-column: span 3;
}

.differentiator-card.highlight {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--teal-dark), #173442);
}

.differentiator-card.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.differentiator-card p {
  color: var(--muted);
}

.capability-card {
  min-height: 420px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(22, 41, 54, 0.07);
}

.focus-grid,
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.focus-grid article,
.expertise-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 41, 54, 0.06);
}

.focus-grid p,
.expertise-grid p {
  color: var(--muted);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 41, 54, 0.07);
}

.product-card.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--teal-dark), #173442);
}

.product-card.featured p,
.product-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.product-card span,
.application-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card.featured span {
  color: #bde6e5;
}

.product-card p {
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  color: #344653;
  font-size: 15px;
}

.product-card li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.spec-section,
.application-matrix {
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

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

.spec-grid span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(22, 41, 54, 0.06);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.application-grid article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 41, 54, 0.06);
}

.application-grid p {
  color: var(--muted);
}

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

.matrix-grid article {
  min-height: 250px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--teal-dark), #173442);
  box-shadow: var(--shadow);
}

.matrix-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(22, 41, 54, 0.06);
}

.article-list span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-list h3,
.article-list p {
  margin-bottom: 0;
}

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

.article-hero {
  min-height: 520px;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(248, 251, 251, 0.98) 0 50%, rgba(248, 251, 251, 0.72) 78%),
    url("assets/technology-hero.png") right center/54% auto no-repeat,
    linear-gradient(90deg, #f8fbfb, #e8f2f4);
}

.article-hero-copy {
  max-width: 820px;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.source-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-2);
}

.source-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.source-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.source-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.source-card .text-link {
  display: inline-block;
  margin-top: 14px;
}

.article-body {
  max-width: 820px;
}

.article-body p {
  color: #344653;
  font-size: 18px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 38px);
}

.article-question {
  margin: 42px 0 26px;
  padding: 26px;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--soft);
}

.article-question strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  text-transform: uppercase;
}

.article-question p,
.article-tags,
.article-disclaimer {
  margin-bottom: 0;
}

.article-tags {
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
}

.article-disclaimer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: start;
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.contact-form-panel,
.contact-side .side-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 41, 54, 0.07);
}

.contact-form-panel {
  padding: clamp(24px, 4vw, 42px);
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form label.full {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.inquiry-form label span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c8dadd;
  border-radius: 6px;
  color: var(--ink);
  background: #f8fbfb;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(8, 127, 140, 0.18);
  border-color: var(--teal);
}

.inquiry-form button {
  width: fit-content;
  min-width: 220px;
  cursor: pointer;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-side .side-block {
  padding: 26px;
}

.side-block ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.side-block li {
  position: relative;
  padding-left: 18px;
  color: #344653;
}

.side-block li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.side-block.accent {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--teal-dark), #173442);
}

.side-block.accent p {
  color: rgba(255, 255, 255, 0.78);
}

.technical-lead {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.lead-portrait {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-portrait img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.lead-copy p {
  color: var(--muted);
  font-size: 18px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.expertise-tags span {
  padding: 10px 12px;
  border: 1px solid #b7d5d9;
  border-radius: 6px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

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

.philosophy {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  align-items: end;
}

.philosophy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.capability-card.emphasis {
  border-color: #82c8cc;
  background: linear-gradient(180deg, #ecf8f8, #fff);
}

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

.capability-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 18px;
  color: #344653;
  font-size: 15px;
}

.capability-card li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e8f4f5;
  position: relative;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon.optic::before {
  inset: 14px 10px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.icon.sensor::before {
  inset: 13px;
  border: 3px solid var(--blue);
}

.icon.sensor::after {
  inset: 22px;
  background: var(--blue);
}

.icon.tip::before {
  left: 11px;
  top: 15px;
  width: 30px;
  height: 20px;
  border: 3px solid var(--teal);
  border-radius: 14px;
}

.icon.mechanics::before {
  left: 12px;
  top: 24px;
  width: 28px;
  height: 4px;
  background: var(--amber);
  box-shadow: 0 -10px 0 var(--amber), 0 10px 0 var(--amber);
}

.icon.light::before {
  left: 22px;
  top: 9px;
  width: 8px;
  height: 34px;
  border-radius: 10px;
  background: var(--green);
}

.icon.light::after {
  left: 15px;
  top: 16px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.icon.factory::before {
  left: 10px;
  top: 26px;
  width: 32px;
  height: 16px;
  background: var(--teal);
}

.icon.factory::after {
  left: 13px;
  top: 16px;
  width: 28px;
  height: 16px;
  background: linear-gradient(135deg, transparent 0 28%, var(--teal) 29% 100%);
}

.verification {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--soft);
}

.verification-copy p {
  color: var(--muted);
  font-size: 18px;
}

.verification-list {
  display: grid;
  gap: 12px;
}

.verification-list span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 16px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(22, 41, 54, 0.07);
  font-weight: 800;
}

.working-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: working;
}

.working-steps li {
  display: grid;
  grid-template-columns: 82px minmax(230px, 0.4fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(22, 41, 54, 0.06);
  counter-increment: working;
}

.working-steps li::before {
  color: var(--teal);
  font-size: 28px;
  font-weight: 800;
  content: "0" counter(working);
}

.working-steps strong {
  font-size: 18px;
  line-height: 1.25;
}

.working-steps span {
  color: var(--muted);
}

.partner-section {
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

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

.partner-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 41, 54, 0.06);
}

.partner-grid p {
  color: var(--muted);
}

.industry-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.industry-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 800;
  text-align: center;
}

.industry-strip span:last-child {
  border-right: 0;
}

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

.insight-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 41, 54, 0.06);
}

.insight-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: 20px;
}

.cta {
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(7, 89, 101, 0.9), rgba(7, 89, 101, 0.9)),
    url("assets/technology-hero.png") center/cover;
}

.cta .section-kicker {
  color: #c6eceb;
}

.cta .section-kicker::before {
  background: #c6eceb;
}

.cta h2,
.cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.cta .button {
  margin-top: 14px;
  background: #fff;
  color: var(--teal-dark);
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #d1e6e8;
  background: #102b33;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

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

  .hero-compact {
    background:
      linear-gradient(135deg, rgba(238, 245, 246, 0.96), rgba(255, 255, 255, 0.84)),
      linear-gradient(90deg, #f8fbfb, #e8f2f4);
  }

  .product-hero {
    background:
      linear-gradient(135deg, rgba(238, 245, 246, 0.96), rgba(255, 255, 255, 0.84)),
      linear-gradient(90deg, #f8fbfb, #e8f2f4);
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    min-height: 440px;
  }

  .capability-grid,
  .insight-grid,
  .partner-grid,
  .focus-grid,
  .expertise-grid,
  .product-grid,
  .spec-grid,
  .application-grid,
  .matrix-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-lead {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-section,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero {
    background:
      linear-gradient(135deg, rgba(238, 245, 246, 0.96), rgba(255, 255, 255, 0.84)),
      linear-gradient(90deg, #f8fbfb, #e8f2f4);
  }

  .article-sidebar {
    position: static;
  }

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

  .differentiator-card,
  .differentiator-card:nth-child(4),
  .differentiator-card:nth-child(5) {
    grid-column: span 1;
  }

  .workflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
  }

  .workflow li:not(:last-child)::after {
    display: none;
  }
}

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

  .brand {
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 18px 36px;
  }

  .hero-lead,
  .section-heading p,
  .verification-copy p,
  .cta p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
  }

  .hero-stat {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .intro-band,
  .verification,
  .philosophy {
    grid-template-columns: 1fr;
  }

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

  .section-heading.inline {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 8px;
  }

  .capability-grid,
  .insight-grid,
  .partner-grid,
  .focus-grid,
  .expertise-grid,
  .product-grid,
  .spec-grid,
  .application-grid,
  .matrix-grid,
  .industry-strip,
  .differentiator-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .application-grid article {
    min-height: auto;
  }

  .lead-portrait img {
    min-height: 320px;
  }

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

  .working-steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .inquiry-form button {
    width: 100%;
  }

  .industry-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
