:root {
  --color-ink: #172126;
  --color-muted: #647074;
  --color-soft: #f6f4ee;
  --color-paper: #fffdfa;
  --color-line: #d8ddd8;
  --color-teal: #0b8f8d;
  --color-teal-dark: #086b70;
  --color-amber: #c88a28;
  --color-forest: #29463e;
  --color-dark: #101719;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "D-DIN", Arial, Verdana, sans-serif;
  --shadow-soft: 0 18px 48px rgba(23, 33, 38, 0.12);
  --container: 1180px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--color-ink);
  color: #fff;
  padding: 10px 14px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--color-ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-bottom: 1px solid rgba(216, 221, 216, 0.85);
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 10px 28px rgba(23, 33, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  font-weight: 800;
}

.brand img {
  width: 156px;
  height: auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 7px;
  color: var(--color-teal-dark);
  font-size: 16px;
  line-height: 1;
}

.brand-text {
  font-size: 15px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--color-teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.88);
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.nav-open .nav-toggle-line {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-line::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-open .nav-toggle-line::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: min(790px, 88vh);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 5vw, 72px) 68px;
  background: #eeeeec;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 244, 238, 0.1) 0%, rgba(246, 244, 238, 0.4) 48%, rgba(246, 244, 238, 0.98) 70%),
    linear-gradient(0deg, rgba(255, 253, 250, 0.4) 0%, rgba(255, 253, 250, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.eyebrow,
.site-nav,
.button,
.hero-metrics,
.feature-icon,
.tab-button,
.compare-label,
.product-kicker,
.workflow-list strong,
.proof-list strong,
.contact-link span,
.contact-link strong,
.lineup-card-head,
.lineup-card-body h3,
.lineup-card-body li {
  font-family: var(--font-display);
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #3e4a4e;
  font-size: clamp(17px, 1.6vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-forest);
}

.button-secondary {
  border: 1px solid rgba(23, 33, 38, 0.18);
  background: rgba(255, 253, 250, 0.72);
  color: var(--color-ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 44px 0 0;
}

.hero-metrics div {
  border-left: 3px solid var(--color-amber);
  padding-left: 14px;
}

.hero-metrics dt {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 850;
  line-height: 1.1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(64px, 8vh, 110px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.section-intro {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: clamp(76px, 9vh, 120px);
  padding-bottom: clamp(76px, 9vh, 120px);
  background: var(--color-paper);
}

.intro-grid,
.split-layout,
.platform-grid,
.analysis-layout,
.company-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.intro-grid {
  align-items: start;
}

.intro-compare-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
}

.platform-grid {
  width: min(1360px, 100%);
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.55fr);
  gap: clamp(24px, 3vw, 44px);
}

.intro-copy {
  max-width: 570px;
}

.intro-copy .lead {
  margin-top: 24px;
}

.lead {
  margin: 33px 0 0;
  color: var(--color-muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.content-stack > * + * {
  margin-top: 20px;
}

.content-stack p {
  color: var(--color-muted);
  font-size: 17px;
}

.media-panel {
  min-height: 580px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f5f4f0 0%, #e4e6e2 100%);
}

.product-panel img {
  width: min(520px, 96%);
  margin-top: 38px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.feature-card,
.application-card,
.proof-list article,
.contact-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.8);
}

.feature-card {
  padding: 20px;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-amber);
  font-size: 12px;
  font-weight: 850;
}

.section-dark {
  background: var(--color-dark);
  color: #f7fbf9;
}

.section-dark .eyebrow {
  color: #6bd2cc;
}

.section-dark p,
.section-dark .workflow-list span {
  color: #b8c5c3;
}

.workflow-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.workflow-list strong {
  color: #fff;
}

.software-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #050708;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.software-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.analysis-layout {
  align-items: end;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tab-button {
  min-height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-paper);
  color: var(--color-muted);
  padding: 10px 15px;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.is-active {
  border-color: var(--color-teal);
  background: var(--color-teal-dark);
  color: #fff;
}

.analysis-media {
  margin: 0;
}

.analysis-media img {
  width: min(520px, 100%);
  margin-left: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.analysis-media figcaption {
  width: min(520px, 100%);
  margin: 16px 0 0 auto;
  color: var(--color-muted);
  font-size: 14px;
}

.section-band {
  background: var(--color-soft);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.product-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
}

.product-image-wrap {
  display: grid;
  place-items: center;
  min-height: 310px;
  background: var(--color-soft);
}

.product-card-featured .product-image-wrap {
  min-height: 360px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 410px;
  object-fit: contain;
}

.product-card-body {
  padding: clamp(22px, 3vw, 34px);
}

.product-card-body p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.product-kicker {
  margin: 0 0 12px !important;
  color: var(--color-teal-dark) !important;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: min(1080px, 100%);
  margin: 0 auto;
}

.application-card {
  grid-column: span 2;
  align-self: start;
  overflow: hidden;
}

.application-card-wide {
  grid-column: span 4;
}

.application-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 52%, rgba(0, 0, 0, 0.14) 78%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  object-fit: cover;
}

.application-card-wide img {
  aspect-ratio: 16 / 9;
}

.application-card-feature img {
  aspect-ratio: 2.05 / 1;
}

.application-screen {
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.application-feature-image {
  object-fit: cover;
}

.application-sample {
  padding: clamp(18px, 2.6vw, 34px);
  object-fit: contain !important;
  background:
    radial-gradient(circle at 50% 56%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.045) 52%, rgba(0, 0, 0, 0.12) 78%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.05);
}

.application-card-sample-large .application-sample {
  aspect-ratio: 1 / 1;
  padding: clamp(6px, 0.9vw, 12px);
}

.application-card div {
  padding: 20px;
}

.application-card-sample-large div {
  padding: 16px 18px 14px;
}

.application-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

@media (min-width: 981px) {
  #applications .application-card-feature:nth-child(1) div {
    padding-bottom: 58px;
  }

  #applications .application-card-feature:nth-child(4) div {
    padding-bottom: 33px;
  }
}

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

.proof-list article {
  padding: 22px;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  font-size: 18px;
}

.proof-list span {
  margin-top: 7px;
  color: var(--color-muted);
}

.contact-section {
  background: var(--color-forest);
  color: #fff;
}

.contact-section .eyebrow {
  color: #89dfd7;
}

.contact-section p {
  color: #d8e8e2;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  padding: 10px;
}

.contact-link {
  display: grid;
  gap: 4px;
  border-radius: 6px;
  padding: 18px;
  transition: background 160ms ease;
}

a.contact-link:hover,
a.contact-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.contact-link + .contact-link {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-link span {
  color: #b8d4ce;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(20px, 2.5vw, 28px);
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px);
  background: #0e1516;
  color: #b8c5c3;
}

.footer-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand-footer {
  color: #fff;
}

.brand-footer img {
  width: 138px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 67px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-paper);
    box-shadow: var(--shadow-soft);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 6px;
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--color-soft);
  }

  .hero {
    min-height: auto;
    align-items: end;
    padding-top: 92px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(246, 244, 238, 1) 0%, rgba(246, 244, 238, 0.88) 34%, rgba(246, 244, 238, 0) 62%);
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding-top: 36px;
    order: 1;
  }

  h1 {
    max-width: 13ch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .intro-grid,
  .split-layout,
  .platform-grid,
  .analysis-layout,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    margin-top: 0;
  }

  .intro-compare {
    width: min(620px, 100%);
    justify-self: start;
  }

  .media-panel {
    min-height: 440px;
  }

  .feature-grid,
  .product-family-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-image-wrap,
  .product-card-featured .product-image-wrap {
    min-height: 280px;
  }

  .application-card,
  .application-card-wide {
    grid-column: auto;
  }

  .application-card-sample-large .application-sample {
    aspect-ratio: 1 / 1;
  }

  .analysis-media img,
  .analysis-media figcaption {
    width: 100%;
  }

  .workflow-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-grid {
    gap: 10px;
  }

  .media-panel {
    min-height: 360px;
  }

  .product-panel img {
    width: min(390px, 96%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Spaceflight-inspired visual pass */
body {
  background: #050505;
  color: #fff;
}

.site-header {
  color: #fff;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: none;
}

.brand img {
  width: 148px;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.3));
}

.site-nav {
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a::after {
  background: #fff;
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  align-items: end;
  padding: 128px clamp(20px, 6vw, 76px) 74px;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  object-fit: cover;
  object-position: 64% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 22%, rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.04) 82%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.44) 100%);
}

.hero-content {
  width: min(500px, 100%);
  margin-right: auto;
  margin-left: clamp(0px, 3vw, 38px);
}

.eyebrow,
.product-kicker {
  color: #fff !important;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2 {
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1;
}

h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.02;
}

h3 {
  text-transform: uppercase;
}

.hero-copy {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 650;
}

.button {
  border-radius: 0;
  text-transform: uppercase;
}

.button-primary {
  border: 2px solid #fff;
  background: transparent;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff;
  color: #050505;
}

.button-secondary {
  border: 2px solid rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics div {
  border-left-color: #fff;
}

.hero-metrics {
  max-width: 500px;
  margin-top: 32px;
}

.hero-metrics dt {
  font-size: clamp(18px, 1.9vw, 24px);
}

.hero-metrics dd {
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.section,
.section-intro,
.section-band,
.section-dark,
.contact-section {
  background: #050505;
  color: #fff;
}

.section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section > .section-inner {
  position: relative;
  z-index: 2;
}

.lead,
.content-stack p,
.product-card-body p,
.application-card p,
.proof-list span,
.contact-section p,
.section-dark p,
.section-dark .workflow-list span {
  color: rgba(255, 255, 255, 0.68);
}

.media-panel,
.product-image-wrap,
.feature-card,
.product-card,
.application-card,
.proof-list article,
.contact-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: #0b0b0b;
}

.product-image-wrap {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12), transparent 48%),
    #0b0b0b;
}

.product-card-featured .product-image-wrap {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    #0b0b0b;
}

.product-card-body {
  background: #050505;
}

.feature-icon {
  color: #fff;
}

.software-frame {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.workflow-list li {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.compare-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.92) 44%, rgba(21, 26, 25, 0.94) 100%);
}

.compare-hint {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.image-compare {
  margin: 0;
}

.compare-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.compare-overlay {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.compare-divider span::before,
.compare-divider span::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
}

.compare-divider span::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare-divider span::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.compare-label-before {
  right: 16px;
}

.compare-label-after {
  left: 16px;
}

.compare-label-left {
  left: 16px;
}

.compare-label-right {
  right: 16px;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.image-compare figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.intro-compare {
  width: min(560px, 100%);
  justify-self: end;
}

.intro-compare .compare-stage {
  aspect-ratio: 800 / 814;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.intro-compare figcaption {
  width: min(500px, 100%);
  margin-left: auto;
}

.product-light-compare {
  width: min(620px, 100%);
  justify-self: start;
}

.product-light-compare .compare-stage {
  aspect-ratio: 1 / 1;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.product-light-compare .compare-image {
  object-fit: cover;
}

.product-light-compare figcaption {
  width: min(520px, 100%);
}

.fungal-roadmap-section {
  min-height: 100vh;
  min-height: 100svh;
  background: #050505;
}

.fungal-roadmap-video,
.fungal-roadmap-shade {
  position: absolute;
  inset: 0;
}

.fungal-roadmap-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: brightness(1.02) contrast(1.2) saturate(1.12);
}

.fungal-roadmap-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.7) 34%, rgba(5, 5, 5, 0.24) 58%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.04) 54%, rgba(5, 5, 5, 0.72) 100%);
  pointer-events: none;
}

.fungal-roadmap-inner {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(300px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.fungal-roadmap-copy {
  max-width: 680px;
  align-self: center;
}

.fungal-roadmap-copy h2 {
  max-width: 12ch;
}

.fungal-roadmap-copy p:last-of-type {
  max-width: 560px;
}

.fungal-timeline {
  --fungal-progress: 0%;
  position: relative;
  width: min(520px, 100%);
  min-height: 72px;
  margin-top: 36px;
  padding-top: 18px;
  cursor: ew-resize;
  touch-action: none;
}

.fungal-timeline-track {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 28px rgba(242, 223, 122, 0.08);
}

.fungal-timeline-track span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--fungal-progress);
  border-radius: inherit;
  background: #f2df7a;
  box-shadow: 0 0 22px rgba(242, 223, 122, 0.44);
}

.fungal-timeline-track::after {
  position: absolute;
  top: 50%;
  left: var(--fungal-progress);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: #f2df7a;
  box-shadow:
    0 0 0 7px rgba(242, 223, 122, 0.12),
    0 0 24px rgba(242, 223, 122, 0.48);
  content: "";
  transform: translate(-50%, -50%);
}

.fungal-timeline-range {
  position: absolute;
  top: 2px;
  left: -8px;
  width: calc(100% + 16px);
  height: 36px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.fungal-timeline:focus-within .fungal-timeline-track {
  outline: 2px solid rgba(242, 223, 122, 0.52);
  outline-offset: 8px;
}

.fungal-timeline-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
  pointer-events: none;
}

.fungal-timeline-labels span {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.fungal-timeline-labels span::before {
  position: absolute;
  top: -23px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: #f2df7a;
  box-shadow: 0 0 18px rgba(242, 223, 122, 0.42);
  content: "";
}

.application-card div,
.proof-list article,
.contact-panel {
  background: #0b0b0b;
}

.contact-link + .contact-link {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.product-line-section {
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #050505 0%, #090909 50%, #050505 100%);
}

.product-line-inner {
  width: min(1280px, 100%);
}

.product-line-copy {
  width: min(780px, 100%);
  margin-bottom: clamp(28px, 5vh, 54px);
}

.product-line-copy h2 {
  max-width: 760px;
}

.product-line-copy p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
}

.product-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: start;
  padding-top: clamp(10px, 2vh, 28px);
  padding-bottom: clamp(42px, 6vh, 72px);
}

.lineup-card {
  position: relative;
  display: flex;
  height: clamp(560px, 67vh, 620px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(9, 9, 9, 0.48);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.lineup-card-compact {
  margin-top: clamp(42px, 6vh, 72px);
}

.lineup-card-medium {
  margin-top: clamp(20px, 3vh, 38px);
}

.lineup-card-large {
  margin-top: 0;
}

.lineup-card::before {
  position: absolute;
  right: 18px;
  top: calc(18px + clamp(310px, 36vh, 350px));
  left: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.lineup-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.lineup-card-head p {
  margin: 0;
  text-align: right;
}

.lineup-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 clamp(310px, 36vh, 350px);
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 38px 18px 10px;
}

.lineup-visual::before {
  position: absolute;
  inset: 12% 8% 10%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 62%);
  content: "";
}

.lineup-visual img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 32px 40px rgba(0, 0, 0, 0.55));
}

.lineup-visual-starry img {
  width: min(96%, 410px);
  max-height: 360px;
}

.lineup-visual-1200 img {
  width: min(86%, 390px);
  max-height: 330px;
}

.lineup-visual-3500 img {
  width: min(92%, 430px);
  max-height: 350px;
}

.lineup-card-body {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  padding: 24px 22px 22px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.82) 42%),
    rgba(5, 5, 5, 0.42);
}

.lineup-card-body h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
}

.lineup-card-body p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.lineup-card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.lineup-card-body li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

@media (max-width: 980px) {
  .site-nav {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(5, 5, 5, 0.96);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: end;
    padding: 112px 20px 54px;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0.72) 100%);
  }

  .hero-content {
    width: min(520px, 100%);
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(30px, 8vw, 46px);
  }

  h2 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .product-card-featured .product-image-wrap {
    min-height: 300px;
  }

  .product-line-copy,
  .product-stage {
    grid-template-columns: 1fr;
  }

  .product-line-copy {
    width: 100%;
    margin-bottom: 30px;
  }

  .product-line-copy h2 {
    max-width: 100%;
  }

  .product-stage {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lineup-card-compact,
  .lineup-card-medium,
  .lineup-card-large {
    margin-top: 0;
  }

  .lineup-card {
    height: auto;
    min-height: 560px;
  }

  .lineup-card::before {
    top: auto;
    bottom: 196px;
  }

  .lineup-visual {
    flex: 1;
    min-height: 310px;
  }

  .lineup-card-body {
    flex: initial;
    min-height: 196px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 126px;
  }

  .compare-label {
    top: 10px;
    font-size: 11px;
  }

  .compare-label-before {
    right: 10px;
  }

  .compare-label-after {
    left: 10px;
  }

  .compare-label-left {
    left: 10px;
  }

  .compare-label-right {
    right: 10px;
  }

  .product-line-copy h2 {
    max-width: 100%;
  }

  .lineup-card {
    height: auto;
    min-height: 520px;
  }

  .lineup-card-head {
    padding: 16px 16px 0;
  }

  .lineup-visual {
    min-height: 280px;
    padding: 28px 12px 0;
  }

  .lineup-visual-starry img {
    width: min(92%, 340px);
  }

  .lineup-visual-1200 img {
    width: min(88%, 370px);
    max-height: 280px;
  }

  .lineup-visual-3500 img {
    width: min(90%, 380px);
    max-height: 290px;
  }

  .lineup-card-body {
    padding: 22px 16px 18px;
  }
}

/* Section image backgrounds */
.section-intro::before,
.product-line-section::before,
#imaging-hardware::before,
#platform::before,
.compare-section::before,
#applications::before,
#company::before,
#contact::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.section-intro::after,
.product-line-section::after,
#imaging-hardware::after,
#platform::after,
.compare-section::after,
#applications::after,
#company::after,
#contact::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.28) 44%, rgba(5, 5, 5, 0.56)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.04) 52%, rgba(5, 5, 5, 0.76));
  content: "";
}

.section-intro::before {
  background-image: url("../images/membrane-before-dark.jpg");
  background-position: 78% center;
  background-size: cover;
  filter: contrast(1.12) saturate(1.08);
  opacity: 0.72;
  transform: scale(1.02);
  transform-origin: center;
}

.section-intro::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.34) 46%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.02) 52%, rgba(5, 5, 5, 0.72) 100%);
}

.product-line-section::before {
  background-image: url("../images/product-starium-3500.png");
  background-position: 83% center;
  background-size: min(74vw, 980px) auto;
  filter: contrast(1.12) saturate(1.06);
  opacity: 0.82;
}

#imaging-hardware::before {
  background-image: url("../images/darkfield-on-side.jpg");
  background-position: 78% center;
  background-size: min(86vw, 1120px) auto;
  filter: contrast(1.14) saturate(1.08);
  opacity: 0.74;
  transform: scale(1.02);
  transform-origin: center;
}

#imaging-hardware::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.24) 46%, rgba(5, 5, 5, 0.68)),
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.03) 46%, rgba(5, 5, 5, 0.74));
}

#platform::before {
  background-image: url("../images/software-dashboard-en.png");
  background-position: center;
  filter: contrast(1.1) saturate(1.06);
  opacity: 0.84;
}

.compare-section::before {
  background-image: url("../images/morphology-irregular-ai.png");
  background-position: 82% center;
  background-size: min(72vw, 980px) auto;
  filter: contrast(1.12) saturate(1.08);
  opacity: 0.82;
  transform: scale(1.02);
  transform-origin: center;
}

#applications::before {
  background-image: url("../images/app-clinical-picture25-nobg.png");
  background-position: center;
  filter: contrast(1.12) saturate(1.08);
  opacity: 0.78;
  transform: scale(1.02);
  transform-origin: center;
}

#company::before {
  background-image: url("../images/pharma-lab.jpg");
  background-position: center;
  filter: contrast(1.12) saturate(1.06);
  opacity: 0.78;
}

#contact::before {
  background-image: url("../images/hero-starry-300.jpg");
  background-position: center;
  filter: contrast(1.12) saturate(1.06);
  opacity: 0.8;
}

.product-line-section::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.34) 44%, rgba(5, 5, 5, 0.52)),
    radial-gradient(circle at 76% 40%, rgba(255, 255, 255, 0.12), transparent 38%);
}

#platform::after,
#applications::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.28) 48%, rgba(5, 5, 5, 0.56)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.02) 46%, rgba(5, 5, 5, 0.76));
}

#applications::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.16) 48%, rgba(5, 5, 5, 0.44)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0) 46%, rgba(5, 5, 5, 0.66));
}

.feature-card,
.application-card,
.proof-list article,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.84), rgba(5, 5, 5, 0.9));
  backdrop-filter: blur(8px);
}

#applications .application-card {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

#applications .application-card img {
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 48%, rgba(0, 0, 0, 0.035) 78%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.012);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

#applications .application-card div {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.86));
}

.media-panel,
.software-frame {
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(6px);
}

.compare-stage {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

#imaging-hardware .feature-card {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.012) 48%, rgba(255, 255, 255, 0.045)),
    rgba(5, 5, 5, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 46px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#imaging-hardware .feature-card p {
  color: rgba(255, 255, 255, 0.68);
}

#company .proof-list article,
#contact .contact-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.012) 48%, rgba(255, 255, 255, 0.045)),
    rgba(5, 5, 5, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 46px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .section-intro {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .intro-compare-grid {
    grid-template-columns: 1fr;
  }

  .intro-compare {
    width: min(620px, 100%);
    justify-self: start;
  }

  .fungal-roadmap-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .fungal-roadmap-section {
    min-height: 100vh;
    min-height: 100svh;
  }

  .fungal-roadmap-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
  }

  .fungal-roadmap-shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.18) 54%, rgba(5, 5, 5, 0.82) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.24) 58%, rgba(5, 5, 5, 0.34));
  }

  .fungal-roadmap-copy h2 {
    max-width: 13ch;
  }

  .intro-compare figcaption {
    margin-left: 0;
  }

  .product-line-section::before,
  #imaging-hardware::before {
    background-position: center top;
    background-size: 110vw auto;
  }

  .section-intro::after,
  .product-line-section::after,
  #imaging-hardware::after,
  #platform::after,
  .compare-section::after,
  #applications::after,
  #company::after,
  #contact::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.22) 50%, rgba(5, 5, 5, 0.78));
  }

}

/* SpaceX-like type scale: strong titles, quieter copy, compact controls. */
.site-nav {
  font-size: 13px;
  font-weight: 800;
}

.eyebrow,
.product-kicker,
.lineup-card-head,
.feature-icon {
  font-size: 12px;
  font-weight: 800;
}

h1 {
  max-width: 15ch;
  font-size: 52px;
  line-height: 0.98;
}

h2 {
  font-size: 46px;
  line-height: 1;
}

h3 {
  font-size: 17px;
}

.hero-content {
  width: min(520px, 100%);
}

.hero-copy {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-metrics {
  max-width: 520px;
  margin-top: 30px;
}

.hero-metrics dt {
  font-size: 22px;
  line-height: 1.05;
}

.hero-metrics dd {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.25;
}

.lead {
  font-size: 18px;
  line-height: 1.48;
}

.content-stack p,
.section-dark p,
.section-dark .workflow-list span,
.product-line-copy p:last-child,
.fungal-roadmap-copy p,
.contact-section p {
  font-size: 15px;
  line-height: 1.55;
}

.lineup-card-body h3 {
  font-size: 32px;
  line-height: 1;
}

.lineup-card-body p {
  font-size: 14px;
  line-height: 1.55;
}

.lineup-card-body li,
.tab-button {
  font-size: 11px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-content {
    width: min(500px, 100%);
  }

  .lead {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    font-size: 13px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy,
  .content-stack p,
  .section-dark p,
  .section-dark .workflow-list span,
  .product-line-copy p:last-child,
  .fungal-roadmap-copy p,
  .contact-section p {
    font-size: 14px;
  }

  .button {
    min-height: 46px;
    font-size: 11px;
  }

  .hero-metrics dt {
    font-size: 20px;
  }

  .lineup-card-body h3 {
    font-size: 28px;
  }
}
