:root {
  --ink: #162026;
  --muted: #5b6870;
  --line: #d8e1e6;
  --soft: #f4f7f8;
  --panel: #17252d;
  --panel-2: #22343d;
  --cyan: #0b6f82;
  --red: #b84034;
  --gold: #b88428;
  --green: #2d7d56;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(216px, 72vw);
}

.brand:focus-visible,
.site-nav a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover { color: var(--cyan); }

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

main.page:has(.product-hero-large) {
  max-width: 1320px;
}

.section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-child { border-bottom: 0; }

.hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero.compact { min-height: 320px; }

.product-hero-large {
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  min-height: auto;
  padding: 48px 0 28px;
}

.product-hero-copy {
  max-width: 860px;
}

.hero-product-visual {
  width: 100%;
}

.hero-product-visual img {
  border-radius: 7px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.breadcrumb span:last-child {
  color: var(--ink);
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 { max-width: 820px; font-size: 44px; }
h2 { font-size: 30px; }
h3 { font-size: 19px; }

p {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  background: var(--cyan);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: var(--white);
  color: var(--cyan);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

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

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

.card, .metric, .download-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  padding: 22px;
}

.media-card img,
.product-visual img,
.image-tile img,
.plot-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.expandable-image {
  cursor: zoom-in;
}

.expandable-image-wrap {
  position: relative;
  display: block;
}

.image-stack .expandable-image-wrap + .expandable-image-wrap {
  margin-top: 10px;
}

.image-expand-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
  background: rgba(8, 14, 18, 0.68);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.image-expand-button:hover,
.image-expand-button:focus-visible {
  background: var(--cyan);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.expandable-image:hover {
  border-color: var(--cyan);
}

.expandable-image:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
}

.media-card img.contain-image {
  object-fit: contain;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.detail-card-wide {
  grid-column: 1 / -1;
}

.detail-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  margin-bottom: 16px;
}

.detail-card img.contain-image {
  max-height: 420px;
  object-fit: contain;
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.product-visual {
  margin: 0;
}

.product-visual img {
  box-shadow: 0 22px 42px rgba(20, 33, 41, 0.12);
}

.product-visual.narrow {
  max-width: 760px;
  margin-top: 22px;
}

.home-hero {
  position: relative;
  min-height: 610px;
  margin: -40px -24px 0;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.96) 38%, rgba(244,247,248,0.72) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 62%, rgba(255,255,255,0.94) 100%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.home-hero-copy {
  padding: 56px 0;
}

.home-hero-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  justify-self: stretch;
}

.home-hero-laser,
.home-hero-tagger {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(20, 33, 41, 0.18);
}

.home-hero-laser {
  width: 100%;
}

.home-hero-tagger {
  width: 100%;
  justify-self: stretch;
  margin-right: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.image-tile {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  padding: 14px;
}

.image-tile figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}


.contact-form-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(11, 111, 130, 0.18);
}

.contact-form .button {
  width: fit-content;
  margin-top: 8px;
  cursor: pointer;
}

.botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
}

.contact-lockup {
  margin: 0;
}

.contact-lockup img {
  display: block;
  width: min(420px, 100%);
  height: auto;
}

.contact-methods {
  display: grid;
  gap: 22px;
}

.contact-methods h2 {
  margin-bottom: 4px;
  font-size: 20px;
}

.contact-methods p {
  margin-bottom: 0;
}

.note {
  margin-top: 28px;
  font-size: 14px;
}

.video-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  padding: 14px;
}

.video-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 14, 18, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  width: min(1120px, 96vw);
  max-height: 92vh;
  margin: 0;
  display: grid;
  gap: 12px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 82vh;
  justify-self: center;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-caption {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.plot-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 12px;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 26px;
}

.instrument {
  border: 1px solid #31464f;
  border-radius: 8px;
  padding: 22px;
  color: #d9e8ed;
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
  box-shadow: 0 22px 42px rgba(20, 33, 41, 0.18);
}

.instrument-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #3b515b;
}

.screen {
  position: relative;
  min-height: 145px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid #415861;
  border-radius: 5px;
  background: #0d171c;
}

.trace {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #3c5d66;
}

.trace.one { top: 34px; }
.trace.two { top: 72px; }
.trace.three { top: 110px; }

.pulse {
  position: absolute;
  top: -13px;
  width: 5px;
  height: 28px;
  background: #51c7d9;
  box-shadow: 0 0 12px rgba(81, 199, 217, 0.45);
}

.pulse.gold { background: #e0aa45; }
.pulse.red { background: #df6a5f; }

.ports {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 9px;
}

.port {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 3px solid #536972;
  border-radius: 50%;
  background: #0f171b;
  color: #9cb0b8;
  font-size: 11px;
  font-weight: 700;
}

.mini-plot {
  position: relative;
  min-height: 150px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 19px, rgba(11, 111, 130, 0.08) 20px),
    linear-gradient(transparent 19px, rgba(11, 111, 130, 0.08) 20px),
    #fff;
  background-size: 20px 20px;
}

.peak {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 96px;
  height: 96px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(184, 64, 52, 0.85), rgba(184, 64, 52, 0.05));
  clip-path: polygon(0 100%, 12% 86%, 22% 70%, 34% 48%, 46% 18%, 54% 12%, 66% 44%, 78% 70%, 90% 88%, 100% 100%);
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 150px;
  padding: 18px;
}

.node {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  padding: 11px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--muted);
}

code {
  word-break: break-all;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 3px 6px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 32px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.footer-contact {
  display: block;
  margin-top: 6px;
}

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

  .brand-logo {
    height: 48px;
    max-width: 74vw;
  }

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

  h1 { font-size: 34px; }
  h2 { font-size: 25px; }

  .grid,
  .grid.four,
  .grid.two,
  .contact-panel,
  .detail-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .detail-card-wide {
    grid-column: auto;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.94) 54%, rgba(255,255,255,0.9) 100%);
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 24px 44px;
  }

  .home-hero-copy {
    padding: 0;
  }

  .home-hero-visuals {
    justify-self: stretch;
    gap: 14px;
  }

  .home-hero-laser,
  .home-hero-tagger {
    width: 100%;
    margin: 0;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
