:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, .1);
  --soft: #f5f5f7;
  --panel: rgba(255, 255, 255, .78);
  --blue: #0071e3;
  --blue-dark: #005bb8;
  --shadow: 0 24px 60px rgba(0, 0, 0, .08);
  --header-offset: 64px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding-top: var(--header-offset);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(251, 251, 253, .82);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: saturate(180%) blur(20px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}
.brand img {
  width: 212px;
  max-height: 56px;
  object-fit: contain;
}
.brand span { display: none; }
.nav {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  color: #424245;
  font-weight: 500;
  font-size: 14px;
}
.nav a:hover {
  background: rgba(0, 0, 0, .06);
  color: var(--ink);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 92px clamp(20px, 7vw, 108px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 35%, rgba(255,255,255,.42) 58%, rgba(255,255,255,0) 100%),
    url("hero-home.png?v=home2") center right / cover no-repeat;
  overflow: hidden;
}
.hero-copy { max-width: 780px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
}
.hero h1,
.page-hero h1,
.product-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 700;
}
.hero p,
.page-hero p,
.product-hero p {
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--muted);
  max-width: 760px;
  margin-top: 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover { background: var(--blue-dark); }
.btn.secondary {
  background: rgba(255, 255, 255, .78);
  color: var(--blue);
  border: 1px solid rgba(0, 113, 227, .28);
}

.section {
  padding: 78px clamp(20px, 7vw, 108px);
}
.section.muted { background: var(--soft); }
.section > p {
  max-width: 900px;
  color: var(--muted);
  font-size: 20px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}
.section-head h2,
.section h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid > a,
.feature-grid > div {
  display: block;
  text-decoration: none;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px;
  padding: 26px;
  min-height: 166px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.feature-grid > a:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow);
}
.feature-grid strong {
  display: block;
  font-size: 21px;
  margin-bottom: 12px;
  font-weight: 700;
}
.feature-grid span { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
#instruments .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background:
    radial-gradient(circle at 70% 82%, rgba(255,255,255,.96) 0, rgba(245,245,247,.98) 42%, rgba(235,236,240,.98) 100%);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px;
  overflow: hidden;
  min-height: 560px;
  position: relative;
}
.card-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  background: transparent;
  padding: 8px 0 0 14px;
  overflow: hidden;
  z-index: 1;
}
.card-img img {
  width: min(276%, 1120px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: translate(230px, 150px);
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .16));
}
.card-body {
  padding: 30px;
  position: relative;
  z-index: 2;
  background: transparent;
}
#pci-dispertech-75 .card-img {
  align-items: flex-start;
  height: 100%;
  padding-top: 0;
}
#pci-dispertech-75 .card-img img {
  width: min(150%, 620px);
  transform: translate(120px, 34px);
}
.card h3 {
  font-size: 26px;
  line-height: 1.12;
  margin: 0 0 10px;
  font-weight: 700;
}
.card p { color: var(--muted); }
.text-link {
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.page-hero {
  padding: 98px clamp(20px, 7vw, 108px) 76px;
  background: radial-gradient(circle at 80% 10%, #fff 0, #f5f5f7 42%, #ececf0 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 30px;
  align-items: start;
}
.info-panel,
.contact-card {
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px;
  padding: 30px;
}
.info-panel h3,
.contact-card h2 { margin-top: 0; }
.description-media-card {
  position: relative;
  z-index: 1;
  min-height: 520px;
  overflow: visible;
  border-radius: 8px;
  background: #fff;
}
.device-description,
.ss5100c-description {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: stretch;
  padding-bottom: 168px;
  overflow: visible;
}
.description-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.device-feature-panel,
.ss5100c-feature-panel {
  margin-top: auto;
}
.description-media-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 54% 58%;
  margin-bottom: -210px;
  transform: translateY(118px);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 7%, #000 15%, #000 85%, rgba(0,0,0,.22) 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 8%, #000 20%, #000 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 7%, #000 15%, #000 85%, rgba(0,0,0,.22) 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 8%, #000 20%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.device-description + .section,
.ss5100c-description + .section {
  position: relative;
  z-index: 3;
  margin-top: -118px;
  padding-top: 148px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .06);
  box-shadow: none;
}
.device-description p,
.device-software-copy p,
.table-wrap th,
.table-wrap td {
  font-size: 18px;
  line-height: 1.5;
}
.device-features,
.ss5100c-features {
  padding-top: 0;
}
.device-features .info-panel,
.ss5100c-features .info-panel {
  max-width: 1120px;
  margin: 0 auto;
}
.device-features ul,
.ss5100c-features ul {
  columns: 2;
  column-gap: 48px;
}
.accessory-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.accessory-card {
  display: grid;
  grid-template-rows: 260px auto;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  background: #fff;
}
.accessory-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}
.accessory-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill-row span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  font-weight: 600;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 42px;
  align-items: center;
  padding: 82px clamp(20px, 7vw, 108px);
  background: var(--soft);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.product-hero-bg {
  min-height: 660px;
  display: flex;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 35%, rgba(255,255,255,.36) 58%, rgba(255,255,255,0) 100%),
    var(--hero-bg) center right / cover no-repeat;
}
.pci-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 35%, rgba(255,255,255,.36) 58%, rgba(255,255,255,0) 100%),
    url("pci-dispertech-hero.png?v=20260629b") center right / cover no-repeat;
}
.product-hero-bg > div { max-width: 780px; }
.product-hero img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .16));
}

.software-hero {
  position: relative;
  z-index: 1;
  min-height: 690px;
  padding-bottom: 170px;
  overflow: visible;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, .98) 0, rgba(245, 245, 247, .9) 42%, rgba(232, 233, 237, .92) 100%);
}
.software-hero > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.software-hero img {
  position: relative;
  z-index: 1;
  width: min(66vw, 880px);
  max-width: none;
  justify-self: end;
  align-self: end;
  margin: -40px -34px -210px 0;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, .16));
}
.software-hero + .section {
  position: relative;
  z-index: 3;
  margin-top: -92px;
  padding-top: 108px;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -28px 70px rgba(0, 0, 0, .08);
}

.device-hero,
.ss5100c-hero {
  position: relative;
  z-index: 1;
  min-height: 760px;
  padding-bottom: 250px;
  overflow: visible;
  background:
    radial-gradient(circle at 74% 44%, rgba(255, 255, 255, .98) 0, rgba(245, 245, 247, .9) 44%, rgba(232, 233, 237, .92) 100%);
}
.device-hero > div,
.ss5100c-hero > div {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.device-hero img,
.ss5100c-hero img {
  position: relative;
  z-index: 1;
  width: min(78vw, 1060px);
  max-width: none;
  justify-self: end;
  align-self: end;
  margin: -20px -150px -340px 0;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, .18));
}
.device-hero img {
  transform: translateY(-72px);
}
.ss5100h-hero img,
.ss5100hw-hero img {
  width: min(82vw, 1120px);
  margin: -10px -145px -350px 0;
  transform: translateY(-58px);
}
#ss-5100h .card-img img,
#ss-5100hw .card-img img {
  width: min(190%, 880px);
  transform: translate(150px, 126px);
}
#ss-5100hw .card-img img {
  width: min(222%, 1020px);
  transform: translate(102px, 112px);
}
.software-cards .card-img img {
  width: 510px;
  max-width: none;
  transform: translate(164px, 150px);
  filter: drop-shadow(0 30px 48px rgba(25, 30, 45, .18));
}
.software-cards .card {
  min-height: 500px;
}
.software-group {
  padding-top: 76px;
  padding-bottom: 76px;
}
.software-group .section-head {
  max-width: 1060px;
}
.software-featured-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}
.software-featured-cards .card {
  min-height: 500px;
}
.module-list {
  display: grid;
  gap: 14px;
}
.module-list.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.module-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.module-list.cards .module-list-item {
  display: block;
  min-height: 190px;
  padding: 28px;
}
.module-list article.module-list-item {
  cursor: default;
}
.module-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .08);
}
.module-list article.module-list-item:hover {
  transform: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}
.module-list-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.2;
}
.module-list-item small {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.module-list-item em {
  color: var(--blue);
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}
.device-hero + .section,
.ss5100c-hero + .section {
  position: relative;
  z-index: 3;
  margin-top: -170px;
  padding-top: 190px;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -28px 70px rgba(0, 0, 0, .08);
}

.scanolite-hero {
  position: relative;
  z-index: 1;
  min-height: 760px;
  padding-bottom: 250px;
  overflow: visible;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, .98) 0, rgba(245, 245, 247, .9) 44%, rgba(232, 233, 237, .92) 100%);
}
.scanolite-hero > div {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.scanolite-hero img {
  position: relative;
  z-index: 1;
  width: min(92vw, 1280px);
  max-width: none;
  justify-self: end;
  align-self: end;
  margin: -8px -250px -345px 0;
  transform: translateY(-46px);
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, .16));
}
.scanolite-hero + .section {
  position: relative;
  z-index: 3;
  margin-top: -170px;
  padding-top: 190px;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -28px 70px rgba(0, 0, 0, .08);
}

.floating-lab-band {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 44vw, 640px);
  margin: -22px 0 0;
  padding: 26px clamp(20px, 7vw, 108px) 176px;
  overflow: visible;
  background: #fff;
}
.floating-lab-image {
  width: min(82vw, 1120px);
  height: clamp(360px, 38vw, 560px);
  margin: 0 auto -210px;
  overflow: visible;
}
.floating-lab-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% 68%;
  filter: drop-shadow(0 36px 62px rgba(0, 0, 0, .12));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 7%, #000 18%, #000 82%, rgba(0,0,0,.18) 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.26) 8%, #000 21%, #000 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 7%, #000 18%, #000 82%, rgba(0,0,0,.18) 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.26) 8%, #000 21%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.floating-lab-band + .section {
  position: relative;
  z-index: 3;
  margin-top: -112px;
  padding-top: 148px;
  background: #fff;
  box-shadow: 0 -34px 72px rgba(255, 255, 255, .96);
}
.device-software-block {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: stretch;
  padding-bottom: 158px;
  overflow: visible;
  background:
    radial-gradient(circle at 78% 46%, rgba(255, 255, 255, .98) 0, rgba(246, 247, 249, .96) 48%, rgba(232, 234, 238, .92) 100%);
}
.device-software-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.device-software-copy p {
  color: var(--muted);
}
.device-software-media {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.device-software-media img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: -20px auto -190px;
  filter: none;
}
.device-software-block + .section {
  position: relative;
  z-index: 3;
  margin-top: -118px;
  padding-top: 152px;
  background: #fff;
}

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  text-align: left;
  vertical-align: top;
}
th {
  width: 34%;
  background: #f5f5f7;
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 7vw, 108px);
  background: #f5f5f7;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.footer strong { color: var(--ink); }

@media (max-width: 1000px) {
  .product-hero,
  .split { grid-template-columns: 1fr; }
  .description-media-card,
  .description-media-card img { min-height: 360px; }
  .description-media-card img {
    transform: translateY(82px);
  }
  .device-features ul,
  .ss5100c-features ul { columns: 1; }
  .accessory-gallery {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
  .software-hero {
    min-height: auto;
    padding-bottom: 96px;
  }
  .software-hero img {
    width: min(94vw, 660px);
    justify-self: center;
    margin: 12px auto -150px;
  }
  .software-hero + .section {
    margin-top: -58px;
    padding-top: 86px;
  }
  .device-hero,
  .ss5100c-hero {
    min-height: auto;
    padding-bottom: 128px;
  }
  .device-hero img,
  .ss5100c-hero img {
    width: min(104vw, 760px);
    justify-self: center;
    margin: 12px auto -210px;
  }
  .device-hero img {
    transform: translateY(-48px);
  }
  .ss5100h-hero img,
  .ss5100hw-hero img {
    width: min(112vw, 820px);
    margin: 12px 0 -218px auto;
    transform: translateY(-42px);
  }
  .software-cards .card-img img {
    width: 500px;
    max-width: none;
    transform: translate(130px, 146px);
  }
  .software-cards .card {
    min-height: 460px;
  }
  .device-software-block {
    padding-bottom: 126px;
  }
  .device-software-media {
    min-height: 320px;
  }
  .device-software-media img {
    width: min(92vw, 620px);
    min-width: 0;
    margin: 12px auto -166px;
  }
  .device-software-block + .section {
    margin-top: -84px;
    padding-top: 116px;
  }
  .module-list.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scanolite-hero {
    min-height: auto;
    padding-bottom: 128px;
  }
  .scanolite-hero img {
    width: min(128vw, 920px);
    justify-self: center;
    margin: 12px -36px -218px auto;
    transform: translateY(-38px);
  }
  .scanolite-hero + .section {
    margin-top: -96px;
    padding-top: 128px;
  }
.device-hero + .section,
.ss5100c-hero + .section {
    margin-top: -96px;
    padding-top: 128px;
  }
  .floating-lab-band {
    min-height: 420px;
    padding: 16px 20px 136px;
  }
  .floating-lab-image {
    width: min(96vw, 820px);
    height: 380px;
    margin-bottom: -164px;
  }
  .floating-lab-band + .section {
    margin-top: -82px;
    padding-top: 112px;
  }
  .cards,
  .cards.compact,
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #instruments .cards {
    grid-template-columns: minmax(0, 1fr);
  }
  #instruments .card {
    min-height: 560px;
  }
  #ss-5100h .card-img img {
    width: 880px;
    transform: translate(158px, 126px);
  }
  #ss-5100hw .card-img img {
    width: 1020px;
    transform: translate(104px, 112px);
  }
  #pci-dispertech-75 .card-img img {
    width: 620px;
    transform: translate(112px, 34px);
  }
  .hero { min-height: 620px; background-position: center right; }
}

@media (max-width: 680px) {
  :root {
    --header-offset: 128px;
  }
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .nav { justify-content: flex-start; }
  .brand img {
    width: 190px;
    max-height: 58px;
  }
  .hero {
    min-height: 560px;
    padding: 62px 20px;
    background:
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 64%, rgba(255,255,255,.48) 100%),
      url("hero-home.png?v=home2") center right / cover no-repeat;
  }
  .hero h1,
  .page-hero h1,
  .product-hero h1 { font-size: 40px; }
  .hero p,
  .page-hero p,
  .product-hero p { font-size: 19px; }
  .device-description p,
  .device-software-copy p,
  .table-wrap th,
  .table-wrap td {
    font-size: 15px;
  }
  .accessory-gallery {
    grid-template-columns: minmax(0, 1fr);
  }
  .description-media-card,
  .description-media-card img { min-height: 300px; }
  .description-media-card img {
    transform: translateY(56px);
  }
  .software-hero {
    padding-bottom: 72px;
  }
  .software-hero img {
    width: min(106vw, 560px);
    margin: 4px auto -118px;
  }
  .software-hero + .section {
    margin-top: -44px;
    padding-top: 68px;
  }
  .device-hero,
  .ss5100c-hero {
    padding-bottom: 96px;
  }
  .device-hero img,
  .ss5100c-hero img {
    width: min(120vw, 620px);
    margin: 4px auto -160px;
  }
  .device-hero img {
    transform: translateY(-32px);
  }
  .ss5100h-hero img,
  .ss5100hw-hero img {
    width: min(132vw, 620px);
    margin: 4px 0 -168px auto;
    transform: translateY(-28px);
  }
  .software-cards .card-img img {
    width: 400px;
    max-width: none;
    transform: translate(96px, 126px);
  }
  .software-cards .card {
    min-height: 420px;
  }
  .software-featured-cards .card {
    min-height: 420px;
  }
  .device-software-block {
    padding-bottom: 104px;
  }
  .device-software-media {
    min-height: 260px;
  }
  .device-software-media img {
    width: min(94vw, 520px);
    margin: 0 auto -136px;
  }
  .device-software-block + .section {
    margin-top: -62px;
    padding-top: 92px;
  }
  .module-list-item {
    display: block;
  }
  .module-list.cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .module-list-item em {
    display: block;
    margin-top: 12px;
  }
  .scanolite-hero {
    padding-bottom: 96px;
  }
  .scanolite-hero img {
    width: min(150vw, 720px);
    margin: 4px -28px -168px auto;
    transform: translateY(-24px);
  }
  .scanolite-hero + .section {
    margin-top: -74px;
    padding-top: 104px;
  }
  .device-hero + .section,
  .ss5100c-hero + .section {
    margin-top: -74px;
    padding-top: 104px;
  }
  .floating-lab-band {
    min-height: 360px;
    padding: 8px 14px 104px;
  }
  .floating-lab-image {
    width: 106vw;
    height: 310px;
    margin-left: -8vw;
    margin-bottom: -130px;
  }
  .floating-lab-image img {
    object-position: 64% 62%;
  }
  .floating-lab-band + .section {
    margin-top: -62px;
    padding-top: 90px;
  }
  .cards,
  .cards.compact,
  .feature-grid { grid-template-columns: 1fr; }
  #instruments .cards {
    grid-template-columns: minmax(0, 1fr);
  }
  #instruments .card {
    min-height: 540px;
  }
  #instruments .card-body {
    display: inline-block;
    max-width: calc(100% - 32px);
    margin: 16px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
  }
  #ss-5100h .card-img img {
    width: 760px;
    transform: translate(116px, 138px);
  }
  #ss-5100hw .card-img img {
    width: 880px;
    transform: translate(82px, 126px);
  }
  #pci-dispertech-75 .card-img img {
    width: 560px;
    transform: translate(82px, 50px);
  }
  .section-head { display: block; }
  .footer { display: block; }
}

