:root {
  --paper: #ffffff;
  --sheet: rgba(255, 255, 255, 0.22);
  --ink: #121b1f;
  --ink-2: #314148;
  --muted: #6d7b7b;
  --line: rgba(18, 27, 31, 0.14);
  --green: #0a6b61;
  --gold: #c89a2b;
  --blue: #245f96;
  --red: #ba5149;
  --violet: #7c5c90;
  --slate: #58656b;
  --glass: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
  --glass-soft: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  --glass-border: rgba(255, 255, 255, 0.46);
  --glass-border-dark: rgba(18, 27, 31, 0.1);
  --glass-shadow: 0 24px 70px rgba(31, 54, 72, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  --shadow: 0 28px 80px rgba(18, 27, 31, 0.08);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --ios-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --mono: var(--ios-font);
  --sans: var(--ios-font);
  font-family: var(--sans);
}

/* Workflow numbers: keep 1-6 visible after mobile polish overrides. */
.workflow .workflow-grid div {
  opacity: 0;
  filter: none !important;
  transform: translateY(18px) scale(0.96);
  animation: workflow-step-pop 560ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--step, 0) * 110ms);
}

.workflow .workflow-grid div.pop-reveal,
.workflow .workflow-grid div.pop-card,
.workflow .workflow-grid div.pop-left,
.workflow .workflow-grid div.pop-right {
  filter: none !important;
  opacity: 1;
}

.workflow .workflow-grid b {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  margin: 0 8px 0 0;
  color: #ffffff;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 145, 178, 0.2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .workflow .workflow-grid div {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
}

body::after {
  content: "";
  display: none;
}

.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 0, 126, 0.18), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(0, 127, 177, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.aurora-bg::before,
.aurora-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 145vw;
  min-width: 1080px;
  height: 72vh;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.72;
  transform: translateX(-50%);
  will-change: transform;
}

.aurora-bg::before {
  top: -30vh;
  background:
    linear-gradient(90deg, rgba(225, 0, 126, 0.42), rgba(0, 127, 177, 0.34), rgba(10, 107, 97, 0.28)),
    radial-gradient(circle at 45% 65%, rgba(255, 255, 255, 0.7), transparent 42%);
  animation: aurora-wave 13s ease-in-out infinite alternate;
}

.aurora-bg::after {
  top: 16vh;
  height: 56vh;
  background:
    linear-gradient(100deg, rgba(0, 127, 177, 0.2), rgba(225, 0, 126, 0.18), rgba(10, 107, 97, 0.16)),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.86), transparent 36%);
  opacity: 0.52;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

#app:focus {
  outline: none;
}

#app {
  flex: 1;
}

.atlas-map,
.atlas-node,
.capability-strip,
.scene-card,
.workflow-grid,
.index-filter,
.product-table,
.catalog-hero,
.catalog-proof,
.demo-card,
.smart-filter,
.results-panel,
.flow-steps b,
.lane,
.filter-note,
.result-preview,
.empty-state,
.signal-board,
.signal-card,
.evidence-stack,
.contact-card,
.footer {
  border-color: var(--glass-border);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.scene-card header,
.scene-card div,
.workflow-grid div,
.table-row,
.evidence-stack div {
  border-color: rgba(255, 255, 255, 0.26);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.blur-text {
  display: flex;
  flex-wrap: wrap;
}

.blur-text-segment {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(var(--blur-offset, -24px));
  transition:
    opacity var(--blur-duration, 420ms) ease,
    filter var(--blur-duration, 420ms) ease,
    transform var(--blur-duration, 420ms) cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--blur-delay, 0ms);
  will-change: opacity, filter, transform;
}

.blur-text.blur-visible .blur-text-segment {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.split-text {
  display: inline-flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.split-text-segment {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(var(--split-offset, 34px));
  transition:
    opacity var(--split-duration, 620ms) ease,
    transform var(--split-duration, 620ms) cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--split-delay, 0ms);
  will-change: opacity, transform;
}

.split-text.split-visible .split-text-segment {
  opacity: 1;
  transform: translateY(0);
}

.hero-intro h1.split-text,
.catalog-copy h1.split-text,
.page-title h1.split-text,
.evidence-copy h1.split-text {
  word-break: normal;
  overflow-wrap: normal;
}

.border-glow-layer,
.border-glow-edge,
.border-glow-fill {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: min(1440px, calc(100% - clamp(24px, 5vw, 80px)));
  margin: 14px auto 0;
  min-height: 144px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  pointer-events: none;
}

.brand {
  position: relative;
  left: auto;
  top: auto;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-right: 0;
  pointer-events: auto;
}

.brand-logo {
  display: block;
  width: min(226px, 48vw);
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.micro {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-height: 62px;
  padding: 10px clamp(12px, 2vw, 22px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  pointer-events: auto;
  scroll-behavior: smooth;
}

.nav a {
  position: relative;
  display: inline-grid;
  flex: 1 1 150px;
  min-height: 42px;
  place-items: center;
  padding: 0 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 10px 28px rgba(31, 54, 72, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
  font-size: 14px;
  font-weight: 800;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: rgba(0, 127, 177, 0.22);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.nav a.active {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.42), transparent 58%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.48),
    0 0 0 5px rgba(0, 127, 177, 0.08),
    0 16px 38px rgba(0, 127, 177, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-weight: 950;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  background: var(--glass-soft);
  transform: translateY(-1px) scale(var(--hover-scale));
}

.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 0;
}

.nav a.active::before {
  opacity: 0.24;
}

.nav a.active:is(:hover, :focus-visible)::before {
  opacity: 0;
}

.nav a.active::after {
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(0, 127, 177, 0.12);
}

.shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 78px) clamp(18px, 4vw, 66px);
}

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

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.3vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.atlas-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 58px);
  min-height: auto;
  align-items: start;
}

.hero-intro {
  max-width: 1120px;
}

.hero-intro h1 {
  max-width: 1040px;
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
  text-wrap: balance;
}

.hero-intro p,
.page-title p,
.evidence-copy p {
  max-width: 760px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.85;
}

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

.action {
  display: inline-grid;
  min-height: 50px;
  place-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 12px 32px rgba(0, 127, 177, 0.12);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.action.dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(225, 0, 126, 0.82), rgba(0, 127, 177, 0.86)),
    rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.64);
  text-shadow: 0 1px 16px rgba(18, 27, 31, 0.16);
}

.action.light {
  background: var(--glass-soft);
}

.atlas-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: auto;
  padding: 52px 18px 18px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 27, 31, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 27, 31, 0.045) 1px, transparent 1px),
    var(--glass-soft);
  background-size: 18px 18px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.atlas-map::before {
  content: "Featured products";
  position: absolute;
  left: 18px;
  top: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.atlas-node {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--glass);
  border-radius: var(--radius-md);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.55s ease-in-out,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.atlas-node.is-magnet-active {
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 26px 80px rgba(0, 127, 177, 0.16),
    0 0 0 2px rgba(255, 255, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 0.24s ease-out,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.atlas-node:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
}

.atlas-node span,
.atlas-node small {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.atlas-node strong {
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.04em;
}

.gold {
  background: rgba(245, 232, 184, 0.38);
}

.blue {
  background: rgba(220, 232, 246, 0.42);
}

.red {
  background: rgba(242, 213, 207, 0.42);
}

.violet {
  background: rgba(232, 223, 240, 0.42);
}

.green {
  background: rgba(220, 238, 232, 0.42);
}

.slate {
  background: rgba(228, 233, 235, 0.42);
}

.capability-strip {
  display: block;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--glass);
  color: var(--ink);
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.capability-marquee {
  display: flex;
  width: max-content;
  animation: capability-marquee-scroll 24s linear infinite;
  will-change: transform;
}

.capability-strip--marquee:hover .capability-marquee {
  animation-play-state: paused;
}

.capability-marquee__group {
  display: flex;
}

.capability-strip .capability-marquee__group > div {
  flex: 0 0 clamp(260px, 22vw, 390px);
  padding: 24px;
}

.capability-strip strong {
  display: block;
  font-family: var(--mono);
  font-size: clamp(24px, 3vw, 38px);
}

.capability-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

@keyframes capability-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-two {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) 1fr;
  gap: clamp(24px, 4vw, 58px);
}

.section-two > div:first-child {
  max-width: 340px;
}

.section-two h2 {
  max-width: 7em;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.scene-card {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(18, 27, 31, 0.08);
  background: var(--glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  transform: translate3d(0, 0, 0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  will-change: transform;
}

.scene-card:hover,
.scene-card:focus-within {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: var(--glass-shadow);
  transform: translateY(-2px) scale(1.018);
}

.scene-card header {
  padding: 18px 18px 8px;
}

.scene-card header span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.scene-card p {
  padding: 8px 18px 12px;
  margin-bottom: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.scene-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 18px 18px;
}

.scene-card b {
  padding: 6px 8px;
  border: 1px solid rgba(18, 27, 31, 0.16);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font-size: 12px;
}

.workflow {
  border-top: 0;
}

.workflow h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
}

.workflow-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  margin-top: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.workflow-grid div {
  position: relative;
  display: flex;
  min-height: auto;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-right: 0;
}

.workflow-grid b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(10, 107, 97, 0.16);
  border-radius: 999px;
  font-family: var(--mono);
  margin-bottom: 0;
  box-shadow: var(--glass-shadow);
}

.workflow-grid span {
  font-size: 20px;
  font-weight: 900;
}

.workflow-grid i {
  color: var(--green);
  font-style: normal;
  font-size: 28px;
  font-weight: 900;
  opacity: 0.72;
}

.workflow-grid div {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: workflow-step-pop 560ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--step, 0) * 110ms);
}

.workflow-grid b {
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1;
}

.workflow-grid i {
  display: none;
}

@keyframes workflow-step-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  70% {
    opacity: 1;
    transform: translateY(-2px) scale(1.015);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-grid div {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.page-title {
  display: grid;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 0;
}

.index-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.index-filter {
  align-self: start;
  position: sticky;
  top: 98px;
  padding: 16px;
  border: 1px solid var(--ink);
  background: var(--glass);
  border-radius: var(--radius-md);
}

.index-filter label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.index-filter input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-sm);
  outline: none;
}

.index-filter input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 107, 97, 0.16);
}

#productFilters {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

#productFilters button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  text-align: left;
}

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

.product-table {
  border: 1px solid var(--ink);
  background: var(--glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.table-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(140px, 0.42fr) 96px;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  min-height: 40px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.product-row strong,
.product-row em {
  display: block;
}

.product-row em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.product-row mark {
  padding: 4px 7px;
  background: var(--gold);
  border-radius: 999px;
  font-family: var(--mono);
  font-weight: 900;
}

.product-row[hidden] {
  display: none;
}

.catalog-pro {
  --catalog-bg: #ffffff;
  --catalog-ink: #164e63;
  --catalog-soft: rgba(232, 241, 246, 0.48);
  --catalog-line: #a5f3fc;
  --catalog-primary: #0891b2;
  --catalog-accent: #059669;
  --catalog-warm: #f7c948;
  --catalog-danger: #dc2626;
  color: var(--catalog-ink);
  padding-top: clamp(22px, 3.5vw, 52px);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(22, 78, 99, 0.28);
  background:
    radial-gradient(circle at 8% 12%, rgba(8, 145, 178, 0.08), transparent 30%),
    var(--glass);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
}

.catalog-copy p {
  max-width: 760px;
  color: #335f69;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.catalog-copy h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.catalog-download {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding-inline: 18px;
  border: 1px solid var(--glass-panel-border);
  border-radius: 999px;
  color: var(--catalog-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.5), transparent 42%),
    var(--glass-panel);
  box-shadow:
    0.32em -0.32em 0.7em rgba(22, 44, 39, 0.08),
    0 12px 34px rgba(22, 44, 39, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.catalog-download:hover,
.catalog-download:focus-visible {
  border-color: rgba(8, 145, 178, 0.36);
  background: var(--glass-panel-strong);
  box-shadow:
    0.4em -0.4em 0.75em rgba(22, 44, 39, 0.1),
    0 16px 42px rgba(22, 44, 39, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.46);
  transform: translateY(-1px) scale(1.018);
}

.catalog-download:active {
  transform: translateY(0) scale(1.006);
}

.catalog-copy,
.catalog-proof,
.smart-filter,
.results-panel {
  min-width: 0;
}

.catalog-proof {
  position: relative;
  min-height: 188px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(22, 78, 99, 0.2);
  background: var(--glass-soft);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: var(--radius-md);
}

.catalog-proof::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
}

.catalog-proof span,
.catalog-proof small,
.result-preview span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.catalog-proof strong {
  font-family: var(--mono);
  font-size: clamp(52px, 6.4vw, 88px);
  line-height: 0.9;
}

.catalog-proof small {
  max-width: 250px;
  color: #4f7680;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.assay-demo {
  display: grid;
  grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.demo-card,
.smart-filter,
.results-panel {
  border: 1px solid rgba(22, 78, 99, 0.26);
  background: var(--glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.demo-card {
  position: sticky;
  top: 98px;
  align-self: start;
  min-height: auto;
  padding: 18px;
  overflow: hidden;
}

.demo-card::after {
  content: none;
  position: absolute;
  left: -45%;
  top: 52%;
  width: 190%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--catalog-primary), transparent);
  opacity: 0.62;
  animation: catalog-scan 4.8s ease-in-out infinite;
}

.flow-steps {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 4px 0 4px 18px;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 36px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--catalog-primary), var(--catalog-warm), var(--catalog-accent));
  opacity: 0.72;
}

.flow-steps b {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 18px;
  font-weight: 900;
  animation: catalog-rise 0.62s calc(var(--step) * 80ms) both;
}

.flow-steps b::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -13px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--catalog-primary);
  border-bottom: 2px solid var(--catalog-primary);
  transform: rotate(45deg);
  opacity: 0.72;
}

.flow-steps b:last-child::after {
  content: none;
}

.flow-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  background: var(--catalog-primary);
  font-family: var(--mono);
  font-size: 12px;
  border-radius: 999px;
  box-shadow:
    0 8px 18px rgba(8, 145, 178, 0.2),
    0 0 0 5px rgba(255, 255, 255, 0.58);
}

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

.lane {
  --hover-scale: 1.02;
  position: relative;
  min-height: 132px;
  padding: 15px;
  border: 1px solid rgba(22, 78, 99, 0.26);
  background: var(--glass-soft);
  border-radius: var(--radius-md);
  color: var(--catalog-ink);
  text-align: left;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
  transform-origin: center;
  will-change: transform;
}

.lane::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 4px;
  background: rgba(22, 78, 99, 0.12);
  border-radius: 999px;
}

.lane span,
.lane small {
  display: block;
  color: #4f7680;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
}

.lane strong {
  display: block;
  margin: 16px 0 12px;
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1;
}

.lane:hover,
.lane:focus-visible {
  border-color: var(--catalog-primary);
  background: var(--glass-soft);
  box-shadow: var(--glass-shadow);
  transform: translateY(-2px) scale(var(--hover-scale));
}

.lane:active {
  transform: translateY(-1px) scale(1.006);
}

.lane.active {
  border-color: var(--catalog-primary);
  background: var(--glass-soft);
  box-shadow:
    var(--glass-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.lane.gold::after {
  background: var(--catalog-warm);
}

.lane.blue::after {
  background: #38bdf8;
}

.lane.red::after {
  background: #f87171;
}

.lane.violet::after {
  background: #a78bfa;
}

.lane.green::after {
  background: var(--catalog-accent);
}

.lane.slate::after {
  background: #64748b;
}

.product-workspace {
  display: grid;
  grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.smart-filter {
  position: sticky;
  top: 98px;
  align-self: start;
  padding: 18px;
}

.filter-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.smart-filter label {
  display: block;
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.smart-filter input {
  width: 100%;
  min-height: 48px;
  padding: 0 54px 0 16px;
  border: 1px solid rgba(22, 78, 99, 0.28);
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-sm);
  color: var(--catalog-ink);
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

.smart-filter input:focus {
  border-color: var(--catalog-primary);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.16);
}

.search-field {
  position: relative;
  margin-bottom: 10px;
}

.search-field::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-sm) + 4px);
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.22), rgba(247, 201, 72, 0.16)),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    0 16px 34px rgba(22, 78, 99, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.search-field input {
  position: relative;
  z-index: 1;
  border-color: rgba(8, 145, 178, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 253, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(22, 78, 99, 0.08);
}

.search-field input::placeholder {
  color: rgba(22, 78, 99, 0.56);
  font-weight: 700;
}

.search-field:focus-within::before {
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.34), rgba(5, 150, 105, 0.2)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    0 20px 40px rgba(8, 145, 178, 0.2),
    0 0 0 4px rgba(8, 145, 178, 0.12);
}

.search-field__icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(8, 145, 178, 0.28);
  border-radius: 999px;
  color: var(--catalog-ink);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(22, 78, 99, 0.12);
  transform: translateY(-50%);
  transform-origin: center;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  cursor: pointer;
}

.search-field__icon:hover,
.search-field__icon:focus-visible {
  border-color: var(--catalog-primary);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 24px rgba(8, 145, 178, 0.18);
  transform: translateY(-50%) scale(1.045);
  outline: none;
}

.search-field__icon:active {
  transform: translateY(-50%) scale(1.015);
}

.search-field__icon:disabled {
  opacity: 0.48;
  transform: translateY(-50%);
  cursor: default;
}

.search-field__icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.search-keyword {
  display: inline-flex;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  margin: 4px 0 16px;
  padding: 6px 10px;
  border: 1px solid rgba(22, 78, 99, 0.16);
  border-radius: 999px;
  color: rgba(22, 78, 99, 0.78);
  background: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.search-error {
  margin: -6px 0 16px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.search-error[hidden] {
  display: none;
}

.catalog-pro #productFilters button {
  --hover-scale: 1.018;
  min-height: 44px;
  padding: 0 12px;
  border-color: rgba(22, 78, 99, 0.24);
  color: var(--catalog-ink);
  background: rgba(255, 255, 255, 0.36);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
  transform-origin: center;
  will-change: transform;
}

.catalog-pro #productFilters button:hover,
.catalog-pro #productFilters button:focus-visible {
  border-color: var(--catalog-primary);
  background: var(--glass-soft);
  transform: scale(var(--hover-scale));
}

.catalog-pro #productFilters button:active {
  transform: scale(1.006);
}

.catalog-pro #productFilters button.active {
  color: var(--catalog-ink);
  background: var(--glass-soft);
  border-color: var(--catalog-primary);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 10px 26px rgba(31, 54, 72, 0.08);
}

#resetFilters {
  --hover-scale: 1.018;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--glass-panel-border);
  border-radius: 999px;
  color: var(--catalog-ink);
  background: var(--glass-panel);
  box-shadow:
    0.32em -0.32em 0.7em rgba(22, 44, 39, 0.08),
    0 12px 34px rgba(22, 44, 39, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  transform-origin: center;
}

#resetFilters:hover,
#resetFilters:focus-visible {
  border-color: rgba(8, 145, 178, 0.36);
  background: var(--glass-panel-strong);
  box-shadow:
    0.4em -0.4em 0.75em rgba(22, 44, 39, 0.1),
    0 16px 42px rgba(22, 44, 39, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.46);
  transform: scale(var(--hover-scale));
}

#resetFilters:active {
  transform: scale(1.006);
}

.filter-note {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border-left: 4px solid var(--catalog-accent);
  background: rgba(5, 150, 105, 0.06);
  border-radius: var(--radius-sm);
  color: #315d54;
  line-height: 1.65;
}

.filter-note strong {
  color: var(--catalog-ink);
}

.results-panel {
  padding: 14px;
}

.result-toolbar {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(22, 78, 99, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.22));
  border-radius: var(--radius-md);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 14px 34px rgba(22, 78, 99, 0.08);
}

.result-toolbar div {
  display: grid;
  gap: 5px;
}

.result-toolbar span {
  color: #4f7680;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.result-toolbar strong {
  color: var(--catalog-ink);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.1;
}

.result-toolbar p {
  max-width: 330px;
  margin: 0;
  color: #4f7680;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-align: right;
}

.result-preview {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(22, 78, 99, 0.24);
  background:
    linear-gradient(90deg, rgba(8, 145, 178, 0.1), transparent 52%),
    var(--glass-soft);
  border-radius: var(--radius-md);
}

.result-preview strong {
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.15;
}

.result-preview p {
  max-width: 720px;
  margin-bottom: 0;
  color: #4f7680;
  line-height: 1.65;
}

.pro-table {
  border-color: rgba(22, 78, 99, 0.26);
  background: var(--glass);
  overflow: hidden;
}

.pro-table .table-head {
  background: rgba(255, 255, 255, 0.54);
}

.product-row {
  --hover-scale: 1.012;
  cursor: pointer;
  outline: none;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
  transform-origin: center;
  will-change: transform;
}

.product-row:hover,
.product-row:focus-visible {
  position: relative;
  z-index: 1;
  background: var(--glass-soft);
  box-shadow: var(--glass-shadow);
  --hover-scale: 1.012;
  transform: scale(var(--hover-scale));
}

.product-row:active {
  transform: scale(1.004);
}

.product-row.selected {
  position: relative;
  z-index: 1;
  background: var(--glass-soft);
  box-shadow: var(--glass-shadow);
}

.product-row mark {
  color: #12343d;
  background: #bdf3ff;
}

.empty-state {
  margin: 12px 0 0;
  padding: 18px;
  border: 1px dashed rgba(220, 38, 38, 0.42);
  color: var(--catalog-danger);
  background: rgba(220, 38, 38, 0.06);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background:
    radial-gradient(circle at 20% 12%, rgba(225, 0, 126, 0.18), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(0, 127, 177, 0.2), transparent 36%),
    rgba(7, 32, 42, 0.42);
  backdrop-filter: blur(24px) saturate(142%);
  -webkit-backdrop-filter: blur(24px) saturate(142%);
}

.product-modal__panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 253, 0.66)),
    var(--glass);
  border-radius: var(--radius-lg);
  box-shadow:
    0 34px 90px rgba(7, 32, 42, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
}

.product-modal__close {
  position: fixed;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  z-index: 90;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: #ffffff;
  background: rgba(7, 32, 42, 0.82);
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(7, 32, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  line-height: 1;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.product-modal__close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.product-modal__close:hover,
.product-modal__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(220, 38, 38, 0.92);
  box-shadow:
    0 14px 32px rgba(220, 38, 38, 0.24),
    0 0 0 4px rgba(220, 38, 38, 0.14);
  outline: none;
  transform: scale(1.045);
}

.product-modal__close:active {
  transform: scale(1.015);
}

.product-modal__meta {
  display: block;
  padding-right: 58px;
  color: #4f7680;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal h2 {
  max-width: 760px;
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.08;
}

.product-modal p {
  max-width: 820px;
  color: #31515b;
  font-size: 17px;
  line-height: 1.85;
}

.product-modal__tables {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.detail-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(22, 78, 99, 0.22);
  background: rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-md);
}

.detail-table-wrap h3 {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(22, 78, 99, 0.16);
  font-size: 16px;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.detail-table th,
.detail-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(22, 78, 99, 0.14);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  color: #335f69;
  background: rgba(255, 255, 255, 0.56);
  font-weight: 900;
}

.detail-table tr:last-child td {
  border-bottom: 0;
}

.detail-empty {
  padding: 18px;
  border: 1px dashed rgba(22, 78, 99, 0.24);
  color: #4f7680;
  background: rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-md);
}

.product-modal__source {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 16px;
  border: 1px solid rgba(0, 127, 177, 0.34);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(225, 0, 126, 0.12), rgba(0, 127, 177, 0.18));
  border-radius: 999px;
  font-weight: 900;
}

.pop-reveal {
  --pop-x: 0px;
  --pop-y: 28px;
  --pop-scale: 0.965;
  --pop-rotate: 0deg;
  --pop-duration: 680ms;
  --pop-blur: 10px;
  opacity: 0;
  transform: translate3d(var(--pop-x), var(--pop-y), 0) scale(var(--pop-scale)) rotate(var(--pop-rotate));
  filter: blur(var(--pop-blur));
  transform-origin: 50% 22%;
  will-change: transform, opacity, filter;
}

.pop-reveal.pop-visible {
  animation: motion-pop-in var(--pop-duration) cubic-bezier(0.16, 1, 0.3, 1) var(--pop-delay, 0ms) both;
}

.pop-reveal.pop-soft {
  --pop-y: 18px;
  --pop-scale: 0.985;
  --pop-duration: 560ms;
  --pop-blur: 7px;
}

.pop-reveal.pop-card {
  --pop-y: 34px;
  --pop-scale: 0.955;
  --pop-duration: 720ms;
}

.pop-reveal.pop-left {
  --pop-x: -22px;
  --pop-y: 22px;
  --pop-rotate: -0.8deg;
}

.pop-reveal.pop-right {
  --pop-x: 22px;
  --pop-y: 22px;
  --pop-rotate: 0.8deg;
}

.pop-reveal.pop-compact {
  --pop-y: 18px;
  --pop-scale: 0.975;
  --pop-duration: 520ms;
  --pop-blur: 6px;
}

@keyframes motion-pop-in {
  0% {
    opacity: 0;
    transform: translate3d(var(--pop-x), var(--pop-y), 0) scale(var(--pop-scale)) rotate(var(--pop-rotate));
    filter: blur(var(--pop-blur));
  }

  68% {
    opacity: 1;
    transform: translate3d(0, -3px, 0) scale(1.012) rotate(0deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes catalog-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes catalog-scan {
  0%,
  100% {
    transform: translateY(-92px) rotate(-10deg);
  }

  50% {
    transform: translateY(88px) rotate(-10deg);
  }
}

@keyframes aurora-wave {
  0% {
    transform: translateX(-52%) translateY(0) rotate(-8deg) scaleX(1);
  }

  50% {
    transform: translateX(-47%) translateY(7vh) rotate(3deg) scaleX(1.08);
  }

  100% {
    transform: translateX(-55%) translateY(13vh) rotate(9deg) scaleX(0.96);
  }
}

@keyframes aurora-drift {
  0% {
    transform: translateX(-45%) translateY(0) rotate(8deg) scaleX(0.96);
  }

  100% {
    transform: translateX(-56%) translateY(-8vh) rotate(-5deg) scaleX(1.1);
  }
}

@keyframes biocare-bg-drift {
  0% {
    background-position: center center;
    transform: scale(1.045) translate3d(0, 0, 0);
  }

  50% {
    background-position: 53% 49%;
    transform: scale(1.07) translate3d(-10px, 8px, 0);
  }

  100% {
    background-position: 47% 52%;
    transform: scale(1.055) translate3d(12px, -6px, 0);
  }
}

@keyframes biocare-mist-drift {
  0% {
    opacity: 0.44;
    transform: translate3d(-2%, 1%, 0) scale(1);
  }

  100% {
    opacity: 0.68;
    transform: translate3d(2.5%, -1.5%, 0) scale(1.03);
  }
}

@keyframes biocare-light-pulse {
  0% {
    opacity: 0.28;
    transform: translate3d(1%, -1%, 0) scale(1);
  }

  100% {
    opacity: 0.48;
    transform: translate3d(-1.5%, 1.5%, 0) scale(1.04);
  }
}

.signal-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: 24px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.signal-card {
  --hover-scale: 1.018;
  display: grid;
  gap: 14px;
  min-height: 280px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  transform-origin: center;
  will-change: transform;
}

.signal-card:hover,
.signal-card:focus-visible {
  position: relative;
  z-index: 1;
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  transform: translateY(-2px) scale(var(--hover-scale));
}

.signal-card:active {
  transform: translateY(-1px) scale(1.006);
}

.signal-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.36);
}

.signal-card:nth-child(4n + 2) {
  background:
    radial-gradient(circle at 12% 12%, rgba(247, 201, 72, 0.12), transparent 36%),
    var(--glass);
}

.signal-card:nth-child(4n + 3) {
  background:
    radial-gradient(circle at 88% 10%, rgba(36, 95, 150, 0.12), transparent 38%),
    var(--glass);
}

.signal-card:nth-child(4n + 4) {
  background:
    radial-gradient(circle at 18% 90%, rgba(186, 81, 73, 0.1), transparent 40%),
    var(--glass);
}

.signal-card b,
.signal-card time {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.signal-card strong {
  font-size: 23px;
}

.signal-card span {
  color: var(--muted);
  line-height: 1.7;
}

.news-modal__panel {
  width: min(980px, 100%);
}

.news-modal__body {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: #31515b;
}

.news-modal__body p {
  max-width: 860px;
  margin: 0;
}

.news-modal__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 46px rgba(31, 54, 72, 0.12);
}

.news-modal__body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.news-modal__body td,
.news-modal__body th {
  padding: 12px;
  border: 1px solid rgba(22, 78, 99, 0.16);
}

.evidence-page {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(330px, 0.5fr);
  gap: 28px;
}

.evidence-stack {
  display: grid;
  gap: 14px;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.evidence-stack div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  border-radius: 18px;
  box-shadow:
    0 18px 48px rgba(22, 78, 99, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.evidence-stack b {
  color: var(--green);
  font-family: var(--mono);
}

.evidence-stack .glare-hover {
  --gh-angle: -30deg;
  --gh-duration: 800ms;
  --gh-size: 280%;
  --gh-rgba: rgba(255, 255, 255, 0.42);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  outline: none;
}

.evidence-stack .glare-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      var(--gh-angle),
      hsla(0, 0%, 100%, 0) 56%,
      var(--gh-rgba) 68%,
      hsla(0, 0%, 100%, 0) 78%,
      hsla(0, 0%, 100%, 0) 100%
    );
  background-size: var(--gh-size) var(--gh-size);
  background-repeat: no-repeat;
  background-position: -120% -120%;
  opacity: 0.92;
  pointer-events: none;
  transition: background-position var(--gh-duration) ease;
}

.evidence-stack .glare-hover > * {
  position: relative;
  z-index: 1;
}

.evidence-stack .glare-hover:hover,
.evidence-stack .glare-hover:focus-visible {
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 24px 68px rgba(22, 78, 99, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: translateY(-2px);
}

.evidence-stack .glare-hover:hover::before,
.evidence-stack .glare-hover:focus-visible::before {
  background-position: 120% 120%;
}

@media (prefers-reduced-motion: reduce) {
  .evidence-stack .glare-hover::before {
    transition: none;
  }

  .evidence-stack .glare-hover:hover,
  .evidence-stack .glare-hover:focus-visible {
    transform: none;
  }
}

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

.contact-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  min-height: 76px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--glass);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.contact-card--link {
  cursor: pointer;
}

.contact-link {
  display: block;
  min-width: 0;
  outline: none;
}

.contact-link strong,
.contact-card > strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-grid span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.inquiry-form {
  display: grid;
  gap: 22px;
  max-width: 920px;
  margin-top: 26px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(18, 27, 31, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28)),
    var(--glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

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

.inquiry-form__head span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.inquiry-form__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
}

.inquiry-form__head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

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

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

.inquiry-form label span b {
  color: #dc2626;
  font: inherit;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(18, 27, 31, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  font: inherit;
  outline: none;
}

.inquiry-form textarea {
  min-height: 128px;
  padding: 13px 14px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(0, 127, 177, 0.52);
  box-shadow:
    0 0 0 4px rgba(0, 127, 177, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.inquiry-form__wide {
  grid-column: 1 / -1;
}

.inquiry-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.inquiry-form__actions button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(0, 127, 177, 0.32);
  color: #ffffff;
  background: linear-gradient(135deg, #007fb1, #0b6f5f);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 127, 177, 0.18);
  font-weight: 900;
  cursor: pointer;
}

.inquiry-form__actions p {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.inquiry-form__actions p[data-state="success"] {
  color: var(--green);
}

.inquiry-form__actions p[data-state="error"] {
  color: #dc2626;
}

.inquiry-form__actions p[data-state="pending"] {
  color: #a16207;
}

.footer {
  display: grid;
  gap: 16px;
  padding: 32px clamp(18px, 4vw, 66px);
  border-top: 1px solid rgba(18, 27, 31, 0.12);
  background: var(--glass);
  color: var(--ink);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.footer strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.footer address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.atlas-map,
.atlas-node,
.capability-strip,
.scene-card,
.workflow-grid,
.index-filter,
.product-table,
.catalog-hero,
.catalog-proof,
.demo-card,
.smart-filter,
.results-panel,
.flow-steps b,
.lane,
.filter-note,
.result-preview,
.empty-state,
.signal-board,
.signal-card,
.evidence-stack,
.contact-card,
.footer {
  border-color: var(--glass-border);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.atlas-map,
.catalog-hero,
.result-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.24), transparent 34%);
}

.nav a,
#productFilters button,
.scene-card b,
.product-row mark,
.smart-filter input,
.index-filter input {
  border-color: var(--glass-border);
  background: var(--glass-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

@media (max-width: 1080px) {
  .atlas-hero,
  .section-two,
  .index-layout,
  .catalog-hero,
  .assay-demo,
  .product-workspace,
  .evidence-page {
    grid-template-columns: 1fr;
  }

  .atlas-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .index-filter,
  .demo-card,
  .smart-filter {
    position: static;
  }

  .capability-strip,
  .scene-list,
  .signal-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .topbar {
    width: 100%;
    margin-top: 8px;
    padding: 0 14px;
    min-height: auto;
    display: grid;
    gap: 10px;
  }

  .brand {
    position: relative;
    left: auto;
    top: auto;
    width: max-content;
    border-right: 0;
  }

  .brand-logo {
    width: min(260px, 64vw);
  }

  .nav {
    width: calc(100% + 28px);
    max-width: none;
    min-height: 58px;
    margin: 0 -14px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 6px max(14px, calc(50vw - 89px)) 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    scroll-padding-inline: max(14px, calc(50vw - 89px));
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 22px, #000 calc(100% - 22px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 22px, #000 calc(100% - 22px), transparent);
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 clamp(142px, 36vw, 178px);
    min-height: 50px;
    font-size: clamp(14px, 2.5vw, 18px);
    scroll-snap-align: center;
  }

  .shell {
    padding: clamp(34px, 6vw, 58px) clamp(24px, 6vw, 60px);
  }

  .page-title {
    gap: 14px;
    padding-bottom: 24px;
  }

  .page-title h1 {
    font-size: clamp(54px, 10vw, 88px);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .page-title p {
    max-width: 100%;
    font-size: clamp(20px, 3.4vw, 27px);
    line-height: 1.85;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .contact-grid span {
    font-size: 13px;
  }

  .contact-card strong {
    font-size: clamp(18px, 3.1vw, 25px);
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .footer {
    margin-top: 6px;
    padding: 28px clamp(24px, 6vw, 60px);
    border-radius: 22px 22px 0 0;
  }

  .footer strong {
    font-size: clamp(24px, 4.8vw, 36px);
    line-height: 1.25;
  }

  .footer address {
    font-size: clamp(16px, 2.8vw, 20px);
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(38px, 14vw, 68px);
  }

  body::after {
    content: "";
    display: none;
    font-size: 0;
    transform: none;
  }

  .aurora-bg {
    background:
      radial-gradient(circle at 16% 12%, rgba(225, 0, 126, 0.14), transparent 34%),
      radial-gradient(circle at 92% 6%, rgba(0, 127, 177, 0.14), transparent 38%),
      #ffffff;
  }

  .aurora-bg::before,
  .aurora-bg::after {
    min-width: 720px;
    filter: blur(34px);
    opacity: 0.46;
  }

  .atlas-map {
    grid-template-rows: none;
    min-height: auto;
  }

  .atlas-node,
  .atlas-node:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }

  .capability-strip,
  .scene-list,
  .signal-board,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .capability-strip,
  .demo-lanes,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-head {
    display: none;
  }

  .table-row,
  .pro-table .table-row,
  .evidence-stack div,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    padding: 18px;
  }

  .catalog-copy h1 {
    font-size: clamp(32px, 9.5vw, 38px);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .catalog-proof {
    min-height: 180px;
  }

  .demo-card {
    min-height: 260px;
  }

  .lane {
    min-height: 150px;
    padding: 14px;
  }

  .lane strong {
    margin: 16px 0 12px;
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.05;
  }

  .lane span,
  .lane small {
    font-size: 10px;
    line-height: 1.5;
  }

  .catalog-pro #productFilters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-pro #productFilters button {
    min-height: 46px;
    padding: 0 10px;
    text-align: center;
  }

  .product-workspace {
    gap: 16px;
  }

  .results-panel {
    padding: 10px;
  }

  .result-preview {
    padding: 16px;
  }

  .result-preview strong {
    font-size: clamp(24px, 7vw, 34px);
  }

  .pro-table {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .pro-table .product-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name type"
      "family date";
    gap: 8px 12px;
    min-height: 118px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: var(--glass);
    border-radius: 18px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(20px) saturate(145%);
    -webkit-backdrop-filter: blur(20px) saturate(145%);
  }

  .pro-table .product-row > span:nth-child(1) {
    grid-area: name;
  }

  .pro-table .product-row > span:nth-child(2) {
    grid-area: family;
  }

  .pro-table .product-row > span:nth-child(3) {
    grid-area: type;
    justify-self: end;
  }

  .pro-table .product-row > span:nth-child(4) {
    grid-area: date;
    align-self: end;
    justify-self: end;
    color: #4f7680;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 900;
  }

  .product-row strong {
    font-size: clamp(17px, 4.7vw, 22px);
    line-height: 1.35;
  }

  .product-row em {
    margin-top: 0;
    font-size: 13px;
  }

  .product-row mark {
    display: inline-grid;
    min-width: 48px;
    min-height: 30px;
    place-items: center;
  }

  .product-modal {
    align-items: start;
    overflow: auto;
  }

  .product-modal__panel {
    max-height: none;
  }

  .detail-table-wrap {
    overflow-x: auto;
  }

  .detail-table {
    min-width: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-bg,
  .aurora-bg::before,
  .aurora-bg::after,
  .capability-marquee {
    animation: none;
  }

  .aurora-bg {
    transform: none;
  }

  .capability-marquee,
  .capability-marquee__group {
    width: 100%;
    flex-wrap: wrap;
  }
}

/* Glass material base pass. The final override lives at the end of the file. */
:root {
  --card: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
  --card-solid: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
  --glass: linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.16));
  --glass-soft: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
  --glass-border: rgba(255, 255, 255, 0.58);
  --glass-shadow:
    0 24px 70px rgba(22, 44, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  --shadow:
    0 28px 82px rgba(22, 44, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

body {
  background:
    radial-gradient(circle at 12% 16%, rgba(225, 0, 126, 0.1), transparent 30%),
    radial-gradient(circle at 82% 4%, rgba(29, 111, 159, 0.12), transparent 34%),
    radial-gradient(circle at 48% 86%, rgba(11, 111, 95, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfdfb 0%, var(--paper) 42%, #eef5f1 100%);
  background-size: auto;
}

.topbar {
  background: linear-gradient(180deg, rgba(247, 250, 248, 0.74), rgba(247, 250, 248, 0.36));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.nav,
.nav a,
.action,
.atlas-map,
.atlas-node,
.capability-strip,
.scene-card,
.workflow-grid,
.catalog-hero,
.catalog-proof,
.demo-card,
.flow-steps b,
.lane,
.smart-filter,
.results-panel,
.result-preview,
.filter-note,
.result-toolbar,
.pro-table,
.table-row,
.product-row,
.signal-card,
.evidence-stack,
.contact-card,
.inquiry-form,
.product-modal__panel,
.detail-table-wrap,
.detail-empty {
  border-color: var(--glass-border);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.atlas-map,
.catalog-hero,
.result-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.26));
  background-size: auto, cover;
}

.atlas-map {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.24));
}

.catalog-hero,
.catalog-proof,
.smart-filter,
.results-panel,
.result-preview,
.pro-table {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2));
}

.workflow-grid,
.demo-card,
.flow-steps b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22));
}

.signal-board,
.signal-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22));
}

.evidence-stack,
.capability-strip {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22));
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22));
}

.atlas-node,
.lane,
.scene-card,
.signal-card,
.contact-card,
.flow-steps b {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18));
}

.atlas-node,
.scene-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18));
}

.lane {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18));
}

.signal-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18));
}

.contact-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18));
}

.capability-strip,
.workflow-grid,
.pro-table,
.evidence-stack {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22));
}

.workflow-grid {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22));
}

.pro-table,
.results-panel,
.smart-filter,
.catalog-proof {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2));
}

.nav a.active,
.nav a:hover,
.nav a:focus-visible,
.action.dark {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(11, 111, 95, 0.92), rgba(29, 111, 159, 0.72)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 46px rgba(11, 111, 95, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -3px 0 rgba(184, 137, 24, 0.82);
}

.action.light,
.catalog-pro #productFilters button,
.smart-filter input,
.index-filter input,
.scene-card b,
.product-row mark,
.product-modal__close,
.product-modal__source {
  border-color: var(--glass-border);
  background: var(--glass-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.catalog-pro #productFilters button.active,
.lane.active,
.product-row.selected,
.product-row:hover,
.product-row:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(238, 248, 244, 0.28)),
    rgba(11, 111, 95, 0.08);
  box-shadow:
    var(--glass-shadow),
    inset 0 0 0 1px rgba(11, 111, 95, 0.18);
}

.pro-table .table-head,
.detail-table th {
  background: rgba(255, 255, 255, 0.5);
}

.product-modal {
  background:
    radial-gradient(circle at 18% 12%, rgba(225, 0, 126, 0.14), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(29, 111, 159, 0.16), transparent 36%),
    rgba(7, 32, 42, 0.46);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
}

.product-modal .product-modal__panel {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 253, 0.68));
  box-shadow:
    0 34px 96px rgba(7, 32, 42, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.58) inset;
}

.product-modal .product-modal__close {
  border-color: rgba(255, 255, 255, 0.82);
  color: #ffffff;
  background: rgba(7, 32, 42, 0.84);
  box-shadow:
    0 12px 28px rgba(7, 32, 42, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.product-modal .product-modal__close:hover,
.product-modal .product-modal__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(220, 38, 38, 0.92);
  box-shadow:
    0 14px 32px rgba(220, 38, 38, 0.24),
    0 0 0 4px rgba(220, 38, 38, 0.14);
  transform: scale(1.045);
}

@media (max-width: 680px) {
  .product-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .product-modal__close svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 980px) {
  .nav {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 680px) {
  .pro-table .product-row {
    border-color: var(--glass-border);
    background: var(--glass);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
  }
}

/* Biomedical page background override. */
body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    #f6fbff;
}

.aurora-bg {
  display: block;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("./assets/biocare-page-background.png") center center / cover no-repeat,
    #f6fbff;
  transform: scale(1.045);
  transform-origin: center;
  animation: biocare-bg-drift 28s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

.aurora-bg::before,
.aurora-bg::after {
  display: block;
  content: "";
  position: absolute;
  inset: -12%;
  min-width: 0;
  height: auto;
  border-radius: 0;
  pointer-events: none;
  filter: blur(18px);
  transform: none;
}

.aurora-bg::before {
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.34), transparent 22%),
    radial-gradient(circle at 32% 78%, rgba(8, 145, 178, 0.13), transparent 28%),
    linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.22) 48%, transparent 70%);
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: biocare-mist-drift 18s ease-in-out infinite alternate;
}

.aurora-bg::after {
  background:
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.5), transparent 18%),
    radial-gradient(circle at 18% 86%, rgba(5, 150, 105, 0.1), transparent 30%);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: biocare-light-pulse 12s ease-in-out infinite alternate;
}

/* Contact card size override after white background reset. */
.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;
}

.contact-card {
  grid-template-columns: minmax(0, 1fr) clamp(76px, 9vw, 112px);
  min-height: clamp(112px, 10vw, 150px);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: clamp(68px, 8vw, 104px);
  height: clamp(68px, 8vw, 104px);
  aspect-ratio: 1;
}

.contact-icon img,
.contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-value strong,
.contact-link strong {
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.18;
}

@media (max-width: 680px) {
  .contact-card {
    grid-template-columns: minmax(0, 1fr) 64px;
    min-height: 104px;
  }

  .contact-icon {
    width: 64px;
    height: 64px;
  }

  .contact-value strong,
  .contact-link strong {
    font-size: clamp(18px, 6vw, 26px);
  }
}

/* Plain compact footer. */
.footer {
  display: block;
  width: fit-content;
  max-width: min(760px, calc(100vw - 32px));
  margin: clamp(18px, 4vw, 42px) 0 18px clamp(16px, 5vw, 72px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(49, 65, 72, 0.78);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer strong {
  display: block;
  margin: 0 0 6px;
  color: rgba(18, 27, 31, 0.78);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.45;
  font-weight: 650;
}

.footer address {
  color: rgba(49, 65, 72, 0.68);
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .footer {
    margin: 18px 16px 16px;
  }
}

@media (min-width: 1280px) {
  .capability-strip {
    display: flex;
    justify-content: center;
  }

  .capability-marquee {
    width: min(1480px, 100%);
    justify-content: center;
    animation: none;
    transform: none;
  }

  .capability-marquee__group {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .capability-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .capability-strip .capability-marquee__group > div {
    min-width: 0;
    padding: 24px clamp(14px, 1.6vw, 28px);
    text-align: center;
  }
}

/* Keep the compact footer at the page bottom and centered. */
.footer {
  align-self: center;
  margin: auto auto 18px;
  text-align: center;
}

.footer address {
  text-align: center;
}

@media (max-width: 680px) {
  .footer {
    margin: auto 16px 16px;
  }
}

/* React Bits GlassIcons-inspired module glass reset. */
:root {
  --glass-panel:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.18));
  --glass-panel-strong:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24));
  --glass-panel-border: rgba(255, 255, 255, 0.58);
  --glass-panel-shadow:
    0.5em -0.5em 0.9em rgba(22, 44, 39, 0.08),
    0 22px 70px rgba(22, 44, 39, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.atlas-map,
.atlas-node,
.capability-strip,
.scene-card,
.workflow-grid,
.catalog-hero,
.catalog-proof,
.demo-card,
.flow-steps b,
.lane,
.smart-filter,
.results-panel,
.result-preview,
.filter-note,
.pro-table,
.table-row,
.product-row,
.signal-board,
.signal-card,
.evidence-stack,
.contact-card,
.product-modal__panel,
.detail-table-wrap,
.detail-empty {
  border-color: var(--glass-panel-border);
  background: var(--glass-panel);
  background-image: none;
  box-shadow: var(--glass-panel-shadow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.catalog-hero,
.atlas-map,
.pro-table,
.results-panel,
.smart-filter,
.catalog-proof,
.workflow-grid,
.demo-card,
.signal-board,
.evidence-stack,
.capability-strip,
.inquiry-form {
  background: var(--glass-panel-strong);
  background-image: none;
}

@media (max-width: 680px) {
  .result-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-toolbar p {
    max-width: none;
    text-align: left;
  }

  .section-two > div:first-child,
  .section-two h2 {
    max-width: 100%;
  }

  .section-two h2 {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.22;
  }

  .inquiry-form {
    margin-top: 20px;
    padding: 16px;
    border-radius: 14px;
  }

  .inquiry-form__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .inquiry-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

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

.catalog-pro .search-field {
  isolation: isolate;
}

.catalog-pro .search-field input {
  border-color: rgba(8, 145, 178, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 253, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(22, 78, 99, 0.08),
    0 10px 24px rgba(22, 78, 99, 0.1);
}

.catalog-pro .search-field input:focus {
  border-color: var(--catalog-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 4px rgba(8, 145, 178, 0.16),
    0 16px 34px rgba(8, 145, 178, 0.16);
}

.section-two .scene-card header,
.section-two .scene-card div {
  border: 0;
}

.section-two .scene-card {
  border-color: rgba(255, 255, 255, 0.5);
}

.page-title {
  border-bottom: 0;
}

.evidence-page .evidence-stack {
  border: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.evidence-page .evidence-stack div {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  box-shadow:
    0 18px 48px rgba(22, 78, 99, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.workflow .workflow-grid {
  border: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.workflow .workflow-grid div {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.workflow .workflow-grid b {
  display: none;
}

.workflow .workflow-grid span {
  font-size: clamp(20px, 2vw, 28px);
}

.shell .signal-board {
  border: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.atlas-node,
.lane,
.scene-card,
.signal-card,
.contact-card,
.flow-steps b,
.product-row,
.table-row {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.46), transparent 38%),
    var(--glass-panel);
  background-image:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.46), transparent 38%),
    var(--glass-panel);
}

.signal-card:nth-child(4n + 2),
.signal-card:nth-child(4n + 3),
.signal-card:nth-child(4n + 4) {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.46), transparent 38%),
    var(--glass-panel);
}

.catalog-pro #productFilters button.active,
.lane.active,
.product-row.selected,
.product-row:hover,
.product-row:focus-visible,
.lane:hover,
.lane:focus-visible,
.scene-card:hover,
.scene-card:focus-within,
.signal-card:hover,
.signal-card:focus-visible,
.contact-card--link:hover,
.contact-card--link:focus-within {
  background: var(--glass-panel-strong);
  background-image: none;
  box-shadow:
    0.45em -0.45em 0.85em rgba(22, 44, 39, 0.1),
    0 26px 76px rgba(22, 44, 39, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

/* Compact contact modules. */
.contact-sheet {
  max-width: 1040px;
}

.contact-sheet .contact-grid {
  max-width: 920px;
  gap: 14px;
}

.contact-sheet .contact-card {
  grid-template-columns: minmax(0, 1fr) 56px;
  min-height: 92px;
  padding: 14px 18px;
  border-radius: 14px;
}

.contact-sheet .contact-icon {
  width: 52px;
  height: 52px;
}

.contact-sheet .contact-value strong,
.contact-sheet .contact-link strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

@media (max-width: 680px) {
  .contact-sheet {
    padding-inline: 24px;
  }

  .contact-sheet .contact-grid {
    max-width: 340px;
    margin-inline: auto;
    gap: 10px;
  }

  .contact-sheet .contact-card {
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 82px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .contact-sheet .contact-icon {
    width: 46px;
    height: 46px;
  }

  .contact-sheet .contact-value strong,
  .contact-sheet .contact-link strong {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.18;
  }
}

/* Final glass style for catalog download action. */
.catalog-download,
.action.light.catalog-download {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--glass-panel-border);
  border-radius: 999px;
  color: var(--catalog-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.5), transparent 42%),
    var(--glass-panel);
  box-shadow:
    0.32em -0.32em 0.7em rgba(22, 44, 39, 0.08),
    0 12px 34px rgba(22, 44, 39, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  font-weight: 800;
}

.catalog-download:hover,
.catalog-download:focus-visible,
.action.light.catalog-download:hover,
.action.light.catalog-download:focus-visible {
  border-color: rgba(8, 145, 178, 0.36);
  background: var(--glass-panel-strong);
  box-shadow:
    0.4em -0.4em 0.75em rgba(22, 44, 39, 0.1),
    0 16px 42px rgba(22, 44, 39, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.46);
  transform: translateY(-1px) scale(1.018);
}

/* Final layout fixes: wide capability strip and centered bottom footer. */
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

#app {
  flex: 1 0 auto;
}

.footer {
  align-self: center;
  margin: auto auto 18px;
  text-align: center;
}

.footer address {
  text-align: center;
}

@media (min-width: 900px) {
  .capability-strip {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .capability-marquee {
    width: min(1480px, 100%);
    justify-content: center;
    animation: none;
    transform: none;
  }

  .capability-marquee__group {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .capability-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .capability-strip .capability-marquee__group > div {
    display: grid;
    min-height: 132px;
    flex-basis: auto;
    min-width: 0;
    grid-template-rows: 48px auto;
    align-content: center;
    align-items: end;
    justify-items: center;
    gap: 8px;
    padding: 24px clamp(14px, 1.6vw, 28px);
    text-align: center;
  }

  .capability-strip strong {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
  }

  .capability-strip span {
    margin-top: 0;
    line-height: 1.45;
  }
}

@media (max-width: 680px) {
  .footer {
    margin: auto 16px 16px;
  }
}

.workflow {
  display: grid;
  justify-items: center;
  text-align: center;
}

.workflow h2 {
  text-align: center;
}

.workflow-grid {
  justify-content: center;
}

/* Rounded inquiry-path steps. */
.flow-steps b {
  min-height: 62px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.2));
  box-shadow:
    0 14px 34px rgba(22, 78, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.flow-steps b::after {
  content: none;
}

.flow-steps span {
  flex: 0 0 auto;
  margin-left: 0;
}

/* Mobile homepage product sections: use a single vertical column. */
@media (max-width: 680px) {
  .atlas-hero,
  .section-two {
    min-width: 0;
  }

  .hero-intro h1,
  .catalog-copy h1,
  .page-title h1 {
    max-width: 100%;
    padding-bottom: 0.08em;
    font-size: clamp(32px, 10.4vw, 40px);
    line-height: 1.24;
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .atlas-hero {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .atlas-map,
  .scene-list {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    inline-size: 100%;
    max-inline-size: 100%;
  }

  .atlas-map {
    gap: 12px;
    padding: 48px 14px 14px;
    overflow: visible;
    justify-self: stretch;
  }

  .atlas-node,
  .atlas-node:nth-child(n),
  .scene-card {
    min-width: 0;
    width: 100%;
  }

  .atlas-node {
    min-height: 170px;
    padding: 18px;
  }

  .atlas-node strong,
  .scene-card h3 {
    overflow-wrap: anywhere;
  }
}

/* Mobile polish pass: calm, single-column, scan-friendly layouts. */
@media (max-width: 680px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  .topbar {
    position: sticky;
    top: 0;
    gap: 8px;
    padding: 8px 14px 10px;
    background: rgba(246, 251, 255, 0.74);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .brand-logo {
    width: min(206px, 58vw);
  }

  .nav {
    width: calc(100% + 28px);
    min-height: 48px;
    padding: 4px 14px 6px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-width: 112px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
    scroll-snap-align: start;
  }

  .shell {
    padding: 28px 20px;
  }

  .hero-intro h1,
  .catalog-copy h1,
  .page-title h1 {
    font-size: clamp(31px, 9.8vw, 38px);
    line-height: 1.22;
    text-wrap: pretty;
  }

  .hero-intro p,
  .catalog-copy p,
  .page-title p,
  .evidence-copy p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.78;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .action {
    min-height: 44px;
    padding: 0 16px;
    font-size: 15px;
  }

  .atlas-map {
    border-radius: 22px;
  }

  .atlas-node,
  .scene-card {
    min-height: 156px;
    border-radius: 18px;
  }

  .atlas-node strong,
  .scene-card h3 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.05;
  }

  .capability-strip {
    display: block;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .capability-strip::-webkit-scrollbar {
    display: none;
  }

  .capability-marquee {
    width: max-content;
    min-width: 100%;
    animation: none;
    transform: none;
  }

  .capability-marquee__group {
    display: flex;
  }

  .capability-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .capability-strip .capability-marquee__group > div {
    flex: 0 0 150px;
    min-height: 96px;
    padding: 18px 16px;
    text-align: center;
  }

  .capability-strip strong {
    font-size: 28px;
    line-height: 1;
  }

  .capability-strip span {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.35;
  }

  .catalog-hero {
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .catalog-proof {
    min-height: auto;
    padding: 16px;
    border-radius: 16px;
  }

  .catalog-proof strong {
    font-size: 58px;
  }

  .assay-demo {
    gap: 14px;
  }

  .demo-card {
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .flow-steps {
    gap: 10px;
    padding: 0;
  }

  .flow-steps::before {
    content: none;
  }

  .flow-steps b {
    min-height: 54px;
    padding: 8px 12px;
    gap: 10px;
    border-radius: 15px;
    font-size: 17px;
  }

  .flow-steps span {
    width: 34px;
    height: 34px;
    font-size: 11px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.56);
  }

  .demo-lanes {
    display: flex;
    gap: 10px;
    margin-inline: -20px;
    padding: 0 20px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .demo-lanes::-webkit-scrollbar {
    display: none;
  }

  .lane {
    flex: 0 0 min(76vw, 280px);
    min-height: 132px;
    scroll-snap-align: start;
  }

  .product-workspace {
    gap: 14px;
  }

  .smart-filter,
  .results-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .catalog-pro #productFilters {
    display: flex;
    gap: 8px;
    margin-inline: -14px;
    padding-inline: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-pro #productFilters::-webkit-scrollbar {
    display: none;
  }

  .catalog-pro #productFilters button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .result-toolbar {
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .result-toolbar strong {
    font-size: 25px;
  }

  .pro-table {
    gap: 9px;
  }

  .pro-table .product-row {
    min-height: auto;
    padding: 13px;
    border-radius: 16px;
  }

  .product-row strong {
    font-size: 17px;
  }

  .product-row em {
    font-size: 12px;
  }

  .footer {
    max-width: calc(100vw - 40px);
    margin: auto 20px 18px;
    text-align: center;
  }
}

/* Workflow numbers final override: show 1-6 beside each step. */
.workflow .workflow-grid div {
  opacity: 0;
  filter: none !important;
  transform: translateY(18px) scale(0.96);
  animation: workflow-step-pop 560ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--step, 0) * 110ms);
}

.workflow .workflow-grid b {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  margin: 0 8px 0 0;
  color: #ffffff;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 145, 178, 0.2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .workflow .workflow-grid div {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Final topbar override: remove the outer frame around logo and navigation. */
.topbar {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Desktop LineSidebar-style navigation trial. */
@media (min-width: 981px) {
  body {
    padding-left: 168px;
  }

  .topbar {
    position: fixed;
    top: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 30;
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: start;
    gap: 30px;
    width: 132px;
    min-height: 0;
    margin: 0;
    padding: 6px 0;
    pointer-events: auto;
  }

  .brand {
    display: block;
    width: 118px;
    padding: 0;
  }

  .brand-logo {
    width: 116px;
    max-width: 116px;
  }

  .nav {
    --accent-color: #0b6f5f;
    --text-color: #35505a;
    --marker-color: rgba(52, 83, 94, 0.34);
    --marker-length: 28px;
    --max-shift: 13px;
    counter-reset: nav-item;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    width: 132px;
    min-height: 0;
    height: 100%;
    padding: 4px 0 4px 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  .nav a {
    --effect: 0;
    counter-increment: nav-item;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    min-height: 30px;
    padding: 0 0 0 28px;
    border: 0;
    border-radius: 0;
    color: color-mix(in srgb, var(--accent-color) calc(var(--effect) * 100%), var(--text-color));
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.15;
    overflow: visible;
    white-space: nowrap;
    transform: translateX(calc(var(--effect) * var(--max-shift)));
  }

  .nav a.active {
    --effect: 1;
    color: var(--accent-color);
    font-weight: 860;
  }

  .nav a::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--marker-length));
    top: 50%;
    width: var(--marker-length);
    height: 1px;
    background: color-mix(in srgb, var(--accent-color) calc(var(--effect) * 100%), var(--marker-color));
    opacity: calc(0.55 + var(--effect) * 0.45);
    transform: translateY(-50%) scaleX(calc(0.72 + var(--effect) * 0.55));
    transform-origin: left center;
    pointer-events: none;
  }

  .nav a::after {
    content: var(--nav-index);
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    border: 0;
    color: color-mix(in srgb, var(--accent-color) calc(var(--effect) * 100%), rgba(53, 80, 90, 0.5));
    font-size: 10px;
    font-weight: 760;
    line-height: 1;
    opacity: calc(0.55 + var(--effect) * 0.45);
    transform: translateY(-50%);
    box-shadow: none;
    pointer-events: none;
  }

  .nav a:not(:last-child) .border-glow-layer::after {
    content: "";
    position: absolute;
    left: calc(-1 * var(--marker-length) - 28px);
    top: calc(100% + 9px);
    width: calc(var(--marker-length) * 0.5);
    height: 1px;
    background: var(--marker-color);
    opacity: 0.48;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--accent-color);
    transform: translateX(var(--max-shift)) !important;
  }

  .nav a:hover::before,
  .nav a:focus-visible::before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1.22);
  }

  .nav a > .border-glow-layer {
    inset: -8px -10px -8px -42px;
    padding: 1px;
    border-radius: 12px;
    opacity: 0;
  }

  .nav a:is(:hover, :focus-visible) > .border-glow-layer {
    opacity: 0.32;
  }

  .shell {
    width: min(1320px, 100%);
  }
}

/* Keep the homepage hero title on one line on desktop. */
.hero-intro h1.split-text {
  display: inline-flex;
  flex-wrap: nowrap;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.04;
}

.hero-intro h1.split-text .split-text-segment {
  white-space: pre;
}

/* Give animated headline glyphs enough breathing room so English capitals are not clipped. */
.hero-intro h1.split-text,
.catalog-copy h1.split-text,
.page-title h1.split-text,
.evidence-copy h1.split-text {
  overflow: visible;
  padding-block: 0.08em 0.12em;
}

.catalog-copy h1.split-text,
.page-title h1.split-text,
.evidence-copy h1.split-text {
  line-height: 1.12;
}

.split-text-segment {
  padding-block: 0.02em;
}

@media (max-width: 980px) {
  .hero-intro h1.split-text {
    flex-wrap: wrap;
    max-width: 100%;
    white-space: normal;
    font-size: clamp(32px, 9.5vw, 58px);
  }
}

.load-more-products {
  display: grid;
  min-height: 46px;
  place-items: center;
  margin-top: 12px;
  border: 1px solid rgba(0, 127, 177, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 900;
}

.load-more-products[hidden] {
  display: none;
}

body[data-route="cpzx"] .catalog-hero,
body[data-route="cpzx"] .catalog-proof,
body[data-route="cpzx"] .demo-card,
body[data-route="cpzx"] .lane,
body[data-route="cpzx"] .smart-filter,
body[data-route="cpzx"] .results-panel,
body[data-route="cpzx"] .result-preview,
body[data-route="cpzx"] .pro-table,
body[data-route="cpzx"] .product-row,
body[data-route="cpzx"] .table-row {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  will-change: auto !important;
}

body[data-route="cpzx"] .product-row {
  animation: product-row-reveal 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--row-delay, 0ms);
  contain: content;
}

@keyframes product-row-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  body[data-route="cpzx"] .result-preview {
    display: none;
  }
}

/* Product index cleanup: make the catalog page feel like a precise sourcing tool. */
body[data-route="cpzx"] .catalog-pro {
  --catalog-ink: #16323a;
  --catalog-primary: #0b6f80;
  --catalog-accent: #0f766e;
  --catalog-line: rgba(22, 50, 58, 0.13);
  padding-top: clamp(18px, 3vw, 44px);
}

body[data-route="cpzx"] .catalog-hero,
body[data-route="cpzx"] .smart-filter,
body[data-route="cpzx"] .results-panel,
body[data-route="cpzx"] .catalog-proof,
body[data-route="cpzx"] .lane,
body[data-route="cpzx"] .result-toolbar,
body[data-route="cpzx"] .pro-table,
body[data-route="cpzx"] .filter-note {
  border-color: var(--catalog-line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(22, 50, 58, 0.07);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body[data-route="cpzx"] .catalog-hero {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  align-items: stretch;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 18px;
  overflow: visible;
}

body[data-route="cpzx"] .catalog-copy h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.12;
}

body[data-route="cpzx"] .catalog-copy p {
  max-width: 720px;
  color: #42616a;
  font-size: 16px;
  line-height: 1.65;
}

body[data-route="cpzx"] .catalog-actions {
  margin-top: 16px;
}

body[data-route="cpzx"] .catalog-download,
body[data-route="cpzx"] #resetFilters {
  min-height: 40px;
  border-color: rgba(11, 111, 128, 0.18);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(22, 50, 58, 0.06);
}

body[data-route="cpzx"] .catalog-proof {
  min-height: 0;
  padding: 18px;
  border-radius: 16px;
}

body[data-route="cpzx"] .catalog-proof::before {
  content: none;
}

body[data-route="cpzx"] .catalog-proof strong {
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1;
}

body[data-route="cpzx"] .catalog-proof small {
  max-width: none;
  color: #5d7379;
  font-size: 12px;
  line-height: 1.55;
}

body[data-route="cpzx"] .assay-demo {
  display: block;
  margin-top: 14px;
}

body[data-route="cpzx"] .demo-card {
  display: none;
}

body[data-route="cpzx"] .demo-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

body[data-route="cpzx"] .lane {
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 10px 12px 13px;
  border-radius: 12px;
  transform: none !important;
}

body[data-route="cpzx"] .lane::after {
  inset: auto 12px 8px 12px;
  height: 3px;
  opacity: 0.86;
}

body[data-route="cpzx"] .lane span {
  display: none;
}

body[data-route="cpzx"] .lane strong {
  display: -webkit-box;
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.12;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body[data-route="cpzx"] .lane small {
  display: none;
}

body[data-route="cpzx"] .lane:hover,
body[data-route="cpzx"] .lane:focus-visible,
body[data-route="cpzx"] .lane.active {
  border-color: rgba(11, 111, 128, 0.36);
  background: #f7fbfc;
  box-shadow: 0 12px 28px rgba(11, 111, 128, 0.09);
}

body[data-route="cpzx"] .product-workspace {
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}

body[data-route="cpzx"] .smart-filter,
body[data-route="cpzx"] .results-panel {
  padding: 16px;
  border-radius: 18px;
}

body[data-route="cpzx"] .filter-heading {
  gap: 12px;
  margin-bottom: 14px;
}

body[data-route="cpzx"] .smart-filter label {
  color: #30515a;
  font-size: 11px;
  letter-spacing: 0.02em;
}

body[data-route="cpzx"] .search-field {
  margin-bottom: 8px;
}

body[data-route="cpzx"] .search-field::before {
  content: none;
}

body[data-route="cpzx"] .search-field input,
body[data-route="cpzx"] .smart-filter input {
  min-height: 46px;
  border-color: rgba(22, 50, 58, 0.16);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(22, 50, 58, 0.03);
  font-size: 14px;
  font-weight: 760;
}

body[data-route="cpzx"] .search-field__icon {
  border-color: rgba(11, 111, 128, 0.18);
  background: #eef8fa;
  box-shadow: none;
}

body[data-route="cpzx"] .search-keyword {
  min-height: 0;
  margin: 4px 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b7f84;
  font-size: 12px;
  font-weight: 700;
}

body[data-route="cpzx"] .catalog-pro #productFilters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

body[data-route="cpzx"] .catalog-pro #productFilters button {
  justify-content: flex-start;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  color: #42616a;
  font-size: 13px;
  font-weight: 780;
  text-align: left;
  transform: none !important;
}

body[data-route="cpzx"] .catalog-pro #productFilters button:hover,
body[data-route="cpzx"] .catalog-pro #productFilters button:focus-visible,
body[data-route="cpzx"] .catalog-pro #productFilters button.active {
  border-color: rgba(11, 111, 128, 0.16);
  background: #eef8fa;
  color: #12343d;
}

body[data-route="cpzx"] .filter-note {
  margin-top: 14px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: #f2f8f6;
  color: #46655f;
  font-size: 13px;
  line-height: 1.55;
}

body[data-route="cpzx"] .result-toolbar {
  margin-bottom: 10px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--catalog-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-route="cpzx"] .result-toolbar strong {
  font-size: clamp(20px, 1.6vw, 24px);
}

body[data-route="cpzx"] .result-toolbar p {
  color: #6b7f84;
  font-size: 13px;
  font-weight: 720;
}

body[data-route="cpzx"] .result-preview {
  display: none;
}

body[data-route="cpzx"] .pro-table {
  border: 1px solid var(--catalog-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

body[data-route="cpzx"] .pro-table .table-head {
  background: #f4f8f9;
  color: #526970;
  font-size: 11px;
  text-transform: uppercase;
}

body[data-route="cpzx"] .product-row {
  min-height: 58px;
  background: #ffffff;
  box-shadow: none;
  transform: none !important;
}

body[data-route="cpzx"] .product-row:hover,
body[data-route="cpzx"] .product-row:focus-visible,
body[data-route="cpzx"] .product-row.selected {
  background: #f7fbfc;
  box-shadow: inset 3px 0 0 var(--catalog-primary);
}

body[data-route="cpzx"] .product-row strong {
  color: #162f36;
  font-size: 15px;
  line-height: 1.35;
}

body[data-route="cpzx"] .product-row em {
  color: #587177;
  font-size: 12px;
}

body[data-route="cpzx"] .product-row mark {
  min-width: 54px;
  border: 1px solid rgba(11, 111, 128, 0.14);
  border-radius: 999px;
  background: #ecf8fa;
  color: #0b5c6a;
  box-shadow: none;
}

@media (max-width: 980px) {
  body[data-route="cpzx"] .catalog-hero,
  body[data-route="cpzx"] .product-workspace {
    grid-template-columns: 1fr;
  }

  body[data-route="cpzx"] .demo-lanes {
    display: flex;
    margin-inline: -18px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  body[data-route="cpzx"] .lane {
    flex: 0 0 min(70vw, 260px);
    scroll-snap-align: start;
  }

  body[data-route="cpzx"] .smart-filter {
    position: static;
  }

  body[data-route="cpzx"] .catalog-pro #productFilters {
    display: flex;
    gap: 8px;
    margin-inline: -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
  }

  body[data-route="cpzx"] .catalog-pro #productFilters button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* English headline rhythm: animate by word and never break inside words. */
.hero-intro h1.split-text,
.catalog-copy h1.split-text,
.page-title h1.split-text,
.evidence-copy h1.split-text {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual;
}

.hero-intro h1.split-text .split-text-segment,
.catalog-copy h1.split-text .split-text-segment,
.page-title h1.split-text .split-text-segment,
.evidence-copy h1.split-text .split-text-segment {
  white-space: nowrap;
}

/* Brand typography pass: unified iOS system font. */
:root {
  --display: var(--ios-font);
  --data: var(--ios-font);
  --headline-ink: #103f4a;
}

.hero-intro h1,
.catalog-copy h1,
.page-title h1,
.evidence-copy h1,
.workflow h2 {
  color: var(--headline-ink);
  font-family: var(--display);
  font-weight: 860;
}

.hero-intro h1.split-text .split-text-segment,
.catalog-copy h1.split-text .split-text-segment,
.page-title h1.split-text .split-text-segment,
.evidence-copy h1.split-text .split-text-segment {
  color: var(--headline-ink);
}

.nav a {
  font-family: var(--display);
  font-weight: 760;
}

.atlas-node span,
.atlas-node small,
.scene-card header span,
.capability-strip strong,
.capability-strip span,
.workflow .workflow-grid b,
.workflow-grid span,
.catalog-proof strong,
.catalog-proof span,
.catalog-proof small,
.lane span,
.lane small,
.result-toolbar span,
.product-row mark {
  font-family: var(--data);
  letter-spacing: 0.01em;
}

.atlas-node strong,
.scene-card h3,
.lane strong {
  font-family: var(--display);
  font-weight: 780;
  letter-spacing: -0.02em;
}

.capability-strip .capability-marquee__group > div {
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.capability-strip strong {
  color: #122b31;
  font-size: clamp(22px, 2.45vw, 34px);
  font-weight: 800;
  line-height: 0.95;
  white-space: nowrap;
}

.capability-strip strong sup {
  position: relative;
  top: -0.48em;
  margin-left: 0.08em;
  font-size: 0.46em;
  line-height: 0;
}

.capability-strip span {
  color: #5b6f74;
  font-family: var(--display);
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.25;
}

/* Detail pass from review comments. */
.atlas-node strong {
  font-family: var(--ios-font);
  font-size: clamp(28px, 3.35vw, 48px);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.atlas-node span,
.atlas-node small {
  font-family: var(--ios-font);
  font-weight: 650;
}

.evidence-stack div {
  grid-template-columns: 130px 1fr;
  min-height: 112px;
  padding: 22px 24px;
}

.evidence-stack b {
  color: var(--green);
  font-family: var(--data);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.evidence-stack span {
  color: #14272d;
  font-family: var(--display);
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 780;
  line-height: 1.35;
}

/* Homepage atlas module: add a distinct product-map surface. */
.atlas-map {
  isolation: isolate;
  perspective: 950px;
  gap: 16px;
  padding: 58px 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.78), rgba(225, 245, 246, 0.34) 48%, rgba(213, 233, 249, 0.34)),
    radial-gradient(circle at 8% 12%, rgba(225, 0, 126, 0.1), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(0, 127, 177, 0.18), transparent 34%),
    url("./assets/module-atlas-bg.svg") center / cover no-repeat;
  box-shadow:
    0 28px 80px rgba(24, 73, 91, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(255, 255, 255, 0.36);
}

.atlas-map::before {
  content: "Featured product families";
  z-index: 2;
  left: 22px;
  top: 18px;
  color: #24515d;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.atlas-map::after {
  content: none;
  position: absolute;
  z-index: 0;
  inset: 14px;
  border-radius: calc(var(--radius-lg) - 10px);
  background:
    linear-gradient(90deg, rgba(11, 111, 95, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(29, 111, 159, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.atlas-node {
  --card-accent: #0b6f5f;
  --card-accent-soft: rgba(11, 111, 95, 0.14);
  --card-wash: rgba(237, 249, 245, 0.78);
  position: relative;
  z-index: 1;
  min-height: 224px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.86), var(--card-wash)),
    radial-gradient(circle at 88% 10%, var(--card-accent-soft), transparent 42%);
  box-shadow:
    0 18px 42px rgba(18, 61, 74, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform-origin: center;
  transform-style: preserve-3d;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
  will-change: transform;
}

.atlas-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--card-accent), rgba(255, 255, 255, 0));
  opacity: 0.94;
}

.atlas-node::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 148px;
  height: 148px;
  border: 24px solid var(--card-accent-soft);
  border-radius: 999px;
  opacity: 0.85;
  pointer-events: none;
}

.atlas-node.gold {
  --card-accent: #c89a2b;
  --card-accent-soft: rgba(200, 154, 43, 0.18);
  --card-wash: rgba(255, 246, 221, 0.82);
}

.atlas-node.blue {
  --card-accent: #1d6f9f;
  --card-accent-soft: rgba(29, 111, 159, 0.18);
  --card-wash: rgba(226, 242, 252, 0.86);
}

.atlas-node.red {
  --card-accent: #ba5149;
  --card-accent-soft: rgba(186, 81, 73, 0.15);
  --card-wash: rgba(255, 234, 231, 0.82);
}

.atlas-node.green {
  --card-accent: #0b6f5f;
  --card-accent-soft: rgba(11, 111, 95, 0.16);
  --card-wash: rgba(229, 247, 241, 0.86);
}

.atlas-node.violet {
  --card-accent: #7c5c90;
  --card-accent-soft: rgba(124, 92, 144, 0.16);
  --card-wash: rgba(243, 235, 248, 0.84);
}

.atlas-node.slate {
  --card-accent: #58656b;
  --card-accent-soft: rgba(88, 101, 107, 0.14);
  --card-wash: rgba(237, 242, 244, 0.86);
}

.atlas-node span,
.atlas-node small,
.atlas-node strong {
  position: relative;
  z-index: 1;
  transform: translateZ(24px);
}

.atlas-node span,
.atlas-node small {
  color: rgba(19, 52, 64, 0.86);
}

.atlas-node strong {
  display: block;
  color: #12384b;
}

.atlas-node:hover,
.atlas-node:focus-visible,
.atlas-node.is-magnet-active {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 24px 58px rgba(18, 61, 74, 0.16),
    0 0 0 1px var(--card-accent-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.tilt-card-caption {
  position: absolute;
  z-index: 8;
  left: 0;
  top: 0;
  max-width: calc(100% - 28px);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #133440;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(18, 61, 74, 0.16);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.15;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--tilt-caption-x, 14px), var(--tilt-caption-y, 14px), 54px) rotate(var(--tilt-caption-rotate, 0deg));
  transition:
    opacity 160ms ease,
    transform 120ms ease;
  white-space: nowrap;
}

.atlas-node.is-tilt-active .tilt-card-caption {
  opacity: 1;
}

.capability-strip .capability-marquee__group > div {
  display: grid;
  grid-template-rows: 42px minmax(34px, auto);
  align-content: center;
  justify-items: center;
  row-gap: 6px;
  min-height: 126px;
}

.capability-strip strong {
  display: flex;
  min-height: 42px;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
}

.capability-strip span {
  margin-top: 0;
}

/* Compact capability capsules: replace the heavy full-width strip. */
.capability-strip {
  width: min(1040px, calc(100% - clamp(28px, 6vw, 96px))) !important;
  margin: clamp(20px, 3vw, 38px) auto clamp(30px, 5vw, 58px) !important;
  border: 0 !important;
  border-radius: 999px;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
}

.capability-marquee {
  display: flex !important;
  width: max-content !important;
  min-width: 0 !important;
  gap: 12px;
  justify-content: flex-start !important;
  animation: capability-capsule-drift 46s linear infinite !important;
  transform: none;
}

.capability-strip--marquee:hover .capability-marquee {
  animation-play-state: paused !important;
}

.capability-marquee__group,
.capability-marquee__group[aria-hidden="true"] {
  display: flex !important;
  width: auto !important;
  grid-template-columns: none !important;
  gap: 12px;
  padding: 4px 0;
}

.capability-strip .capability-marquee__group > div {
  display: grid !important;
  flex: 0 0 clamp(136px, 12vw, 174px) !important;
  min-width: 0 !important;
  min-height: 76px !important;
  grid-template-rows: 32px 24px !important;
  align-content: center;
  align-items: center;
  justify-items: center;
  row-gap: 4px;
  padding: 10px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(230, 247, 248, 0.28)),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    0 12px 32px rgba(18, 61, 74, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  text-align: center;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.capability-strip strong {
  display: flex !important;
  min-height: 32px !important;
  align-items: flex-end;
  justify-content: center;
  color: #12384b;
  background-image: linear-gradient(112deg, #12384b 0%, #12384b 34%, #ffffff 50%, #12384b 66%, #12384b 100%);
  background-size: 220% auto;
  background-position: 150% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shiny-text-sweep 3.8s linear infinite;
  font-size: clamp(20px, 1.65vw, 27px) !important;
  font-weight: 840;
  line-height: 1 !important;
  white-space: nowrap;
}

.capability-strip strong sup {
  top: -0.5em;
  font-size: 0.46em;
}

.capability-strip span {
  max-width: 100%;
  margin-top: 0 !important;
  color: #597078;
  background-image: linear-gradient(112deg, #597078 0%, #597078 36%, #ffffff 50%, #597078 64%, #597078 100%);
  background-size: 220% auto;
  background-position: 150% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shiny-text-sweep 4.8s linear infinite;
  font-size: clamp(11px, 0.85vw, 13px) !important;
  font-weight: 680;
  line-height: 1.15 !important;
}

.capability-strip .capability-marquee__group > div:nth-child(2n) strong {
  animation-delay: 0.42s;
}

.capability-strip .capability-marquee__group > div:nth-child(3n) strong {
  animation-delay: 0.86s;
}

.capability-strip .capability-marquee__group > div:nth-child(2n) span {
  animation-delay: 0.58s;
}

.capability-strip .capability-marquee__group > div:nth-child(3n) span {
  animation-delay: 1.06s;
}

.capability-strip:hover strong,
.capability-strip:hover span {
  animation-play-state: paused;
}

@keyframes shiny-text-sweep {
  from {
    background-position: 150% center;
  }

  to {
    background-position: -50% center;
  }
}

@keyframes capability-capsule-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

@media (max-width: 680px) {
  .capability-strip {
    width: calc(100% - 28px) !important;
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .capability-strip::-webkit-scrollbar {
    display: none;
  }

  .capability-marquee {
    animation: none !important;
  }

  .capability-marquee__group[aria-hidden="true"] {
    display: none !important;
  }

  .capability-strip .capability-marquee__group > div {
    flex-basis: 150px !important;
    min-height: 72px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-strip strong,
  .capability-strip span {
    background-image: none;
    -webkit-text-fill-color: currentColor;
    animation: none;
  }
}

@media (max-width: 680px) {
  .atlas-map {
    gap: 12px;
    padding: 54px 14px 14px;
  }

  .atlas-map::before {
    left: 18px;
    top: 17px;
  }

  .atlas-node {
    min-height: 176px;
  }

  .tilt-card-caption {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-map {
    perspective: none;
  }

  .atlas-node,
  .atlas-node span,
  .atlas-node small,
  .atlas-node strong {
    transform: none !important;
  }

  .tilt-card-caption {
    display: none;
  }
}

/* Final type lock: keep every visible UI element on the iOS system stack. */
body,
body :where(*),
button,
input,
select,
textarea {
  font-family: var(--ios-font) !important;
}

/* Mobile comfort pass: keep dense pages readable on narrow screens. */
@media (max-width: 680px) {
  html {
    scroll-padding-top: 118px;
  }

  body {
    min-width: 0;
    background-attachment: scroll;
  }

  .aurora-bg {
    opacity: 0.82;
  }

  .topbar {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: max(8px, env(safe-area-inset-top)) 14px 10px;
    border-bottom: 1px solid rgba(18, 27, 31, 0.08);
  }

  .brand {
    width: 100%;
    padding: 0;
  }

  .brand-logo {
    width: min(188px, 54vw);
  }

  .nav {
    width: calc(100% + 28px);
    max-width: none;
    min-height: 44px;
    margin-inline: -14px;
    padding: 4px 14px 2px;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .shell {
    width: 100%;
    padding: 24px 16px 34px;
  }

  .hero-intro h1,
  .catalog-copy h1,
  .page-title h1,
  .evidence-copy h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(29px, 8.6vw, 36px) !important;
    line-height: 1.18;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero-intro h1.split-text,
  .catalog-copy h1.split-text,
  .page-title h1.split-text,
  .evidence-copy h1.split-text {
    display: block;
    white-space: normal;
  }

  .hero-intro h1.split-text .split-text-segment,
  .catalog-copy h1.split-text .split-text-segment,
  .page-title h1.split-text .split-text-segment,
  .evidence-copy h1.split-text .split-text-segment {
    white-space: normal;
  }

  .hero-intro p,
  .catalog-copy p,
  .page-title p,
  .evidence-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions,
  .catalog-actions,
  .inquiry-form__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .action,
  .catalog-download,
  .load-more-products,
  .inquiry-form button {
    width: 100%;
    min-height: 44px;
  }

  .atlas-hero,
  .page-title,
  .evidence-page,
  .product-workspace,
  body[data-route="cpzx"] .product-workspace {
    gap: 18px;
  }

  .atlas-map {
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding: 48px 12px 12px;
    border-radius: 18px;
  }

  .atlas-map::before {
    left: 14px;
    top: 15px;
    font-size: 11px;
  }

  .atlas-node,
  .scene-card {
    min-height: 138px;
    padding: 18px;
    border-radius: 14px;
  }

  .atlas-node strong,
  .scene-card h3 {
    font-size: clamp(25px, 7.4vw, 32px) !important;
    line-height: 1.08;
  }

  .workflow .workflow-grid,
  .workflow-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .workflow .workflow-grid div,
  .workflow-grid div {
    min-height: 0;
    padding: 14px;
    border-radius: 14px;
  }

  .workflow .workflow-grid b {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  body[data-route="cpzx"] .catalog-pro {
    padding-top: 18px;
  }

  body[data-route="cpzx"] .catalog-hero,
  .catalog-hero {
    grid-template-columns: 1fr !important;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  body[data-route="cpzx"] .catalog-proof,
  .catalog-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    align-items: center;
    padding: 12px;
  }

  body[data-route="cpzx"] .catalog-proof strong,
  .catalog-proof strong {
    justify-self: end;
    font-size: clamp(28px, 9vw, 42px);
  }

  body[data-route="cpzx"] .catalog-proof small,
  .catalog-proof small {
    grid-column: 1 / -1;
  }

  body[data-route="cpzx"] .catalog-proof small,
  .catalog-proof small,
  body[data-route="cpzx"] .catalog-proof span,
  .catalog-proof span {
    font-size: 11px;
    line-height: 1.25;
  }

  body[data-route="cpzx"] .demo-lanes,
  .demo-lanes {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  body[data-route="cpzx"] .lane,
  .lane {
    flex-basis: min(78vw, 250px);
    min-height: 74px;
    border-radius: 12px;
  }

  body[data-route="cpzx"] .smart-filter,
  body[data-route="cpzx"] .results-panel,
  .smart-filter,
  .results-panel {
    padding: 14px;
    border-radius: 16px;
  }

  .filter-heading,
  .result-toolbar,
  body[data-route="cpzx"] .result-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .search-field input,
  .smart-filter input,
  .index-filter input {
    font-size: 16px;
  }

  body[data-route="cpzx"] .catalog-pro #productFilters {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  body[data-route="cpzx"] .catalog-pro #productFilters button {
    min-height: 36px;
    border-radius: 999px;
  }

  body[data-route="cpzx"] .pro-table,
  .pro-table {
    border: 0;
    background: transparent;
  }

  body[data-route="cpzx"] .pro-table .table-head,
  .pro-table .table-head {
    display: none;
  }

  body[data-route="cpzx"] .product-row,
  .pro-table .product-row,
  .table-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name type"
      "family family";
    gap: 8px 10px;
    min-height: 0;
    padding: 13px;
    border: 1px solid rgba(22, 50, 58, 0.12);
    border-radius: 14px;
  }

  body[data-route="cpzx"] .product-row span:first-child,
  .product-row span:first-child {
    grid-area: name;
    min-width: 0;
  }

  body[data-route="cpzx"] .product-row span:nth-child(2),
  .product-row span:nth-child(2) {
    grid-area: family;
  }

  body[data-route="cpzx"] .product-row mark,
  .product-row mark {
    grid-area: type;
    align-self: start;
    min-width: 0;
    padding: 5px 9px;
    font-size: 11px;
    white-space: nowrap;
  }

  .product-modal {
    padding: 12px;
    align-items: end;
  }

  .product-modal__panel {
    width: 100%;
    max-height: min(82vh, 720px);
    padding: 18px;
    border-radius: 18px 18px 0 0;
    overflow-y: auto;
  }

  .product-modal__close {
    top: 12px;
    right: 12px;
  }

  .detail-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .signal-board,
  .contact-grid,
  .inquiry-form__grid,
  .evidence-stack div {
    grid-template-columns: 1fr !important;
  }

  .signal-card,
  .contact-card,
  .inquiry-form {
    border-radius: 16px;
  }

  .contact-sheet .contact-card,
  .contact-card {
    grid-template-columns: minmax(0, 1fr) 48px !important;
    gap: 12px;
    padding: 14px;
  }

  .contact-value,
  .contact-link,
  .contact-value strong,
  .contact-link strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .inquiry-form {
    padding: 16px;
  }

  .footer {
    width: calc(100% - 32px);
    max-width: none;
    margin: auto 16px max(16px, env(safe-area-inset-bottom));
    padding: 18px 14px;
  }

  .footer address {
    overflow-wrap: anywhere;
  }

  .pop-reveal.pop-left,
  .pop-reveal.pop-right {
    --pop-x: 0px;
    --pop-rotate: 0deg;
  }
}

@media (max-width: 380px) {
  .shell {
    padding-inline: 12px;
  }

  .topbar {
    padding-inline: 12px;
  }

  .nav {
    width: calc(100% + 24px);
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .nav a {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 12px;
  }

  body[data-route="cpzx"] .demo-lanes,
  .demo-lanes,
  body[data-route="cpzx"] .catalog-pro #productFilters,
  .catalog-pro #productFilters {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .hero-intro h1,
  .catalog-copy h1,
  .page-title h1,
  .evidence-copy h1 {
    font-size: 28px !important;
  }
}

.mobile-nav-toggle,
.mobile-nav-backdrop {
  display: none;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 70;
    display: flex;
    width: 100%;
    min-height: 66px;
    margin: 0;
    padding: max(10px, env(safe-area-inset-top)) 16px 10px;
    border-bottom: 1px solid rgba(18, 27, 31, 0.08);
    background: rgba(246, 251, 255, 0.82);
    box-shadow: 0 14px 34px rgba(18, 61, 74, 0.08);
    backdrop-filter: blur(18px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
    pointer-events: auto;
  }

  .brand {
    width: auto;
    max-width: calc(100% - 52px);
    padding: 0;
  }

  .brand-logo {
    width: min(190px, 54vw);
  }

  .mobile-nav-toggle {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 95;
    display: grid;
    width: 36px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(18, 61, 74, 0.12);
    border-left: 0;
    border-radius: 0 999px 999px 0;
    color: #113c47;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(18, 61, 74, 0.14);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    transform: translateY(-50%);
    transition:
      left 260ms cubic-bezier(0.16, 1, 0.3, 1),
      background 160ms ease,
      box-shadow 160ms ease;
  }

  .mobile-nav-toggle span,
  .mobile-nav-toggle span::before,
  .mobile-nav-toggle span::after {
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-toggle span {
    position: relative;
    transform: rotate(0deg);
    transition: transform 220ms ease;
  }

  .mobile-nav-toggle span::before,
  .mobile-nav-toggle span::after {
    content: "";
    position: absolute;
    right: 0;
    transform-origin: right center;
  }

  .mobile-nav-toggle span::before {
    top: -1px;
    transform: rotate(42deg);
  }

  .mobile-nav-toggle span::after {
    top: 1px;
    transform: rotate(-42deg);
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus-visible {
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(18, 61, 74, 0.18);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 78;
    display: block;
    border: 0;
    background: rgba(8, 22, 28, 0.24);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-nav-backdrop[hidden] {
    display: none !important;
  }

  .nav {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 86;
    display: flex !important;
    width: min(286px, 86vw) !important;
    max-width: none !important;
    height: 100dvh;
    min-height: 0;
    margin: 0 !important;
    padding: max(22px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom)) !important;
    flex-direction: column;
    flex-wrap: nowrap !important;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-left: 0;
    border-radius: 0 24px 24px 0 !important;
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(232, 247, 249, 0.86)),
      rgba(255, 255, 255, 0.86);
    box-shadow: 24px 0 70px rgba(18, 61, 74, 0.18);
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
    transform: translateX(-108%);
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-type: none !important;
    scrollbar-width: none;
    backdrop-filter: blur(24px) saturate(155%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(155%) !important;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav::before {
    content: "Navigation";
    display: block;
    margin: 8px 4px 12px;
    color: #5b737a;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav a {
    display: grid !important;
    flex: 0 0 auto !important;
    width: 100%;
    min-width: 0 !important;
    min-height: 48px;
    place-items: center start;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    scroll-snap-align: none;
  }

  .nav a.active {
    border-color: rgba(11, 111, 128, 0.22);
    background: #eef8fa;
    box-shadow: inset 4px 0 0 #0b6f80, 0 10px 26px rgba(11, 111, 128, 0.08);
  }

  body.mobile-nav-open .nav {
    transform: translateX(0);
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-nav-open .mobile-nav-toggle {
    left: min(286px, 86vw);
    background: #ffffff;
  }

  body.mobile-nav-open .mobile-nav-toggle span {
    transform: rotate(180deg);
  }
}

@media (max-width: 380px) {
  .mobile-nav-toggle {
    width: 32px;
    height: 64px;
  }

  .nav {
    width: min(274px, 88vw) !important;
  }

  body.mobile-nav-open .mobile-nav-toggle {
    left: min(274px, 88vw);
  }
}

/* React Bits inspired StaggeredMenu for tablet and mobile navigation. */
@media (max-width: 980px) {
  .topbar {
    min-height: 68px;
    align-items: center;
    justify-content: center;
  }

  .brand {
    margin-right: auto;
  }

  .mobile-nav-toggle {
    left: auto;
    right: 14px;
    top: max(18px, calc(env(safe-area-inset-top) + 12px));
    display: inline-flex;
    width: auto;
    height: 42px;
    min-width: 98px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0 14px 0 16px;
    border: 1px solid rgba(18, 61, 74, 0.12);
    border-radius: 999px;
    color: #113c47;
    background: rgba(255, 255, 255, 0.88);
    transform: none;
  }

  .mobile-nav-toggle__text {
    position: relative;
    display: block;
    height: 1em;
    min-width: 42px;
    overflow: hidden;
    font-size: 13px;
    font-weight: 860;
    line-height: 1;
    text-align: left;
  }

  .mobile-nav-toggle__text span {
    display: block;
    height: 1em;
    line-height: 1;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-toggle__icon {
    position: relative;
    display: inline-grid;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    place-items: center;
    transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-toggle__icon span {
    position: absolute;
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-toggle__icon span:nth-child(2) {
    transform: rotate(90deg);
  }

  .mobile-nav-toggle__text::before,
  .mobile-nav-toggle__text::after,
  .mobile-nav-toggle__text span::before,
  .mobile-nav-toggle__text span::after,
  .mobile-nav-toggle__icon::before,
  .mobile-nav-toggle__icon::after,
  .mobile-nav-toggle__icon span::before,
  .mobile-nav-toggle__icon span::after {
    content: none !important;
    display: none !important;
  }

  .mobile-nav-toggle > span:not(.mobile-nav-toggle__text):not(.mobile-nav-toggle__icon),
  .mobile-nav-toggle > span:not(.mobile-nav-toggle__text):not(.mobile-nav-toggle__icon)::before,
  .mobile-nav-toggle > span:not(.mobile-nav-toggle__text):not(.mobile-nav-toggle__icon)::after {
    display: none;
  }

  .mobile-nav-backdrop {
    z-index: 78;
    background: rgba(8, 22, 28, 0.2);
  }

  .mobile-nav-backdrop::before,
  .mobile-nav-backdrop::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100dvh;
    pointer-events: none;
    transform: translateX(104%);
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-backdrop::before {
    z-index: 1;
    background: #b7dfe5;
    transition-delay: 0ms;
  }

  .mobile-nav-backdrop::after {
    z-index: 2;
    width: min(390px, 94vw);
    background: #0b6f80;
    transition-delay: 58ms;
  }

  .nav {
    left: auto !important;
    right: 0 !important;
    width: min(360px, 92vw) !important;
    padding: max(86px, calc(env(safe-area-inset-top) + 72px)) 24px max(24px, env(safe-area-inset-bottom)) !important;
    border: 0;
    border-radius: 26px 0 0 26px !important;
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 250, 0.94)),
      #ffffff;
    box-shadow: -28px 0 84px rgba(8, 22, 28, 0.22);
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition:
      clip-path 640ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 640ms;
  }

  .nav::before {
    content: "Biocare Navigation";
    margin: 0 0 28px;
    color: #0b6f80;
    font-size: 12px;
    letter-spacing: 0.11em;
  }

  .nav a {
    position: relative;
    min-height: auto;
    padding: 0.1em 2.1em 0.1em 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #102f38;
    font-size: clamp(37px, 10.5vw, 54px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    opacity: 0;
    overflow: hidden;
    transform: translateY(110%) rotate(8deg);
    transform-origin: 0 100%;
    transition:
      color 180ms ease,
      opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0ms;
  }

  .nav a::after {
    content: attr(data-stagger-index);
    position: absolute;
    right: 0;
    top: 0.18em;
    inset: auto 0 auto auto;
    border: 0;
    color: #0b6f80;
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0;
    opacity: 0;
    transition: opacity 420ms ease;
  }

  .nav a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 2.3em;
    bottom: 0;
    height: 2px;
    background: #0b6f80;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 220ms ease, transform 260ms ease;
  }

  .nav a:hover,
  .nav a:focus-visible,
  .nav a.active {
    color: #0b6f80;
    background: transparent;
    box-shadow: none;
    transform: translateY(110%) rotate(8deg);
  }

  .nav a.active::before,
  .nav a:hover::before,
  .nav a:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
  }

  body.mobile-nav-open .mobile-nav-backdrop::before {
    transform: translateX(0);
  }

  body.mobile-nav-open .mobile-nav-backdrop::after {
    transform: translateX(0);
  }

  body.mobile-nav-open .nav {
    clip-path: inset(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 120ms;
  }

  body.mobile-nav-open .nav a {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }

  body.mobile-nav-open .nav a::after {
    opacity: 0.78;
  }

  body.mobile-nav-open .nav a:nth-of-type(1) {
    transition-delay: 260ms;
  }

  body.mobile-nav-open .nav a:nth-of-type(2) {
    transition-delay: 340ms;
  }

  body.mobile-nav-open .nav a:nth-of-type(3) {
    transition-delay: 420ms;
  }

  body.mobile-nav-open .nav a:nth-of-type(4) {
    transition-delay: 500ms;
  }

  body.mobile-nav-open .nav a:nth-of-type(5) {
    transition-delay: 580ms;
  }

  body.mobile-nav-open .mobile-nav-toggle {
    left: auto;
    right: 14px;
    color: #ffffff;
    background: #102f38;
  }

  body.mobile-nav-open .mobile-nav-toggle__text span {
    transform: translateY(-100%);
  }

  body.mobile-nav-open .mobile-nav-toggle__icon {
    transform: rotate(225deg);
  }

}

@media (max-width: 380px) {
  .mobile-nav-toggle {
    right: 10px;
    width: auto;
    height: 40px;
    min-width: 90px;
  }

  .nav {
    width: min(330px, 94vw) !important;
    padding-inline: 20px !important;
  }

  body.mobile-nav-open .mobile-nav-toggle {
    left: auto;
    right: 10px;
  }
}

/* Unified StaggeredMenu navigation on every viewport. */
.topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 70;
  display: flex !important;
  width: 100% !important;
  min-height: 72px !important;
  margin: 0 !important;
  padding: max(12px, env(safe-area-inset-top)) clamp(16px, 3vw, 34px) 12px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: auto !important;
}

.brand {
  width: auto !important;
  max-width: calc(100% - 136px);
  margin-right: auto;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.brand-logo {
  width: min(206px, 46vw);
  filter: drop-shadow(0 8px 18px rgba(18, 61, 74, 0.08));
}

.mobile-nav-toggle {
  position: fixed;
  left: auto !important;
  right: clamp(16px, 3vw, 34px) !important;
  top: max(18px, calc(env(safe-area-inset-top) + 12px)) !important;
  z-index: 95;
  display: inline-flex !important;
  width: auto !important;
  height: 44px !important;
  min-width: 104px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 15px 0 17px;
  border: 1px solid rgba(18, 61, 74, 0.12);
  border-radius: 999px;
  color: #113c47;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(18, 61, 74, 0.14);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  transform: none !important;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(18, 61, 74, 0.18);
}

.mobile-nav-toggle__text {
  position: relative;
  display: block;
  height: 1em;
  min-width: 44px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 860;
  line-height: 1;
  text-align: left;
}

.mobile-nav-toggle__text span {
  display: block;
  height: 1em;
  line-height: 1;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle__icon {
  position: relative;
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle__icon span {
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-toggle__icon span:nth-child(2) {
  transform: rotate(90deg);
}

.mobile-nav-toggle__text::before,
.mobile-nav-toggle__text::after,
.mobile-nav-toggle__text span::before,
.mobile-nav-toggle__text span::after,
.mobile-nav-toggle__icon::before,
.mobile-nav-toggle__icon::after,
.mobile-nav-toggle__icon span::before,
.mobile-nav-toggle__icon span::after {
  content: none !important;
  display: none !important;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 78;
  display: block;
  border: 0;
  background: rgba(8, 22, 28, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-nav-backdrop[hidden] {
  display: none !important;
}

.mobile-nav-backdrop::before,
.mobile-nav-backdrop::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100dvh;
  pointer-events: none;
  transform: translateX(104%);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-backdrop::before {
  z-index: 1;
  background: #b7dfe5;
}

.mobile-nav-backdrop::after {
  z-index: 2;
  width: min(440px, 94vw);
  background: #0b6f80;
  transition-delay: 58ms;
}

.nav {
  position: fixed !important;
  left: auto !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  z-index: 86;
  display: flex !important;
  width: min(430px, 100vw) !important;
  max-width: none !important;
  height: 100dvh !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: max(96px, calc(env(safe-area-inset-top) + 82px)) 28px max(28px, env(safe-area-inset-bottom)) !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 250, 0.94)),
    #ffffff !important;
  box-shadow: -28px 0 84px rgba(8, 22, 28, 0.22) !important;
  clip-path: inset(0 0 0 100%);
  overflow-x: hidden !important;
  overflow-y: auto !important;
  pointer-events: none !important;
  transform: none !important;
  visibility: hidden;
  scroll-snap-type: none !important;
  scrollbar-width: none;
  transition:
    clip-path 640ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 640ms !important;
  backdrop-filter: blur(24px) saturate(155%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(155%) !important;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav::before {
  content: "Biocare Navigation" !important;
  display: block;
  margin: 0 0 30px;
  color: #0b6f80;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav a {
  position: relative !important;
  display: grid !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: auto !important;
  place-items: center start !important;
  padding: 0.08em 3em 0.08em 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #102f38 !important;
  font-size: clamp(30px, 3.6vw, 46px) !important;
  font-weight: 850 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
  text-align: left !important;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  overflow: hidden !important;
  transform: translateY(110%) rotate(8deg) !important;
  transform-origin: 0 100%;
  transition:
    color 180ms ease,
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-delay: 0ms;
}

.nav a::after {
  content: attr(data-stagger-index) !important;
  position: absolute;
  right: 0.2em;
  top: 0.28em;
  inset: auto 0.2em auto auto !important;
  border: 0 !important;
  color: #0b6f80;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  opacity: 0;
  box-shadow: none !important;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.nav a::before {
  content: "" !important;
  position: absolute;
  left: 0;
  right: 2.3em;
  bottom: 0;
  height: 2px;
  background: #0b6f80 !important;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 260ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: #0b6f80 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav a.active::before,
.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open .mobile-nav-backdrop::before,
body.mobile-nav-open .mobile-nav-backdrop::after {
  transform: translateX(0);
}

body.mobile-nav-open .nav {
  clip-path: inset(0);
  pointer-events: auto !important;
  visibility: visible;
  transition-delay: 120ms !important;
}

body.mobile-nav-open .nav a {
  opacity: 1;
  transform: translateY(0) rotate(0) !important;
}

body.mobile-nav-open .nav a::after {
  opacity: 0.78;
}

body.mobile-nav-open .nav a:nth-of-type(1) {
  transition-delay: 260ms !important;
}

body.mobile-nav-open .nav a:nth-of-type(2) {
  transition-delay: 340ms !important;
}

body.mobile-nav-open .nav a:nth-of-type(3) {
  transition-delay: 420ms !important;
}

body.mobile-nav-open .nav a:nth-of-type(4) {
  transition-delay: 500ms !important;
}

body.mobile-nav-open .nav a:nth-of-type(5) {
  transition-delay: 580ms !important;
}

body.mobile-nav-open .mobile-nav-toggle {
  color: #ffffff;
  background: #102f38;
}

body.mobile-nav-open .mobile-nav-toggle__text span {
  transform: translateY(-100%);
}

body.mobile-nav-open .mobile-nav-toggle__icon {
  transform: rotate(225deg);
}

@media (max-width: 680px) {
  .nav {
    width: min(360px, 92vw) !important;
    padding: max(86px, calc(env(safe-area-inset-top) + 72px)) 24px max(24px, env(safe-area-inset-bottom)) !important;
  }

  .nav a {
    font-size: clamp(28px, 8.2vw, 40px) !important;
  }

  .brand-logo {
    width: min(190px, 54vw);
  }
}

@media (max-width: 380px) {
  .nav {
    width: min(330px, 94vw) !important;
    padding-inline: 22px !important;
  }
}

/* Final StaggeredMenu tune-up: readable labels, underline below text, visible Menu label. */
.mobile-nav-toggle__text,
.mobile-nav-toggle__text span {
  width: auto !important;
  min-width: 44px !important;
  height: 1em !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  line-height: 1 !important;
}

.mobile-nav-toggle__text span {
  position: static !important;
  right: auto !important;
  top: auto !important;
}

.nav a {
  padding-right: 3.35em !important;
  font-size: clamp(27px, 3.1vw, 40px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

.nav a::before {
  top: auto !important;
  bottom: -0.08em !important;
  right: 3.3em !important;
  height: 2px !important;
}

.nav a::after {
  top: 0.34em !important;
  right: 0.2em !important;
}

@media (max-width: 680px) {
  .mobile-nav-toggle__text {
    display: block !important;
    min-width: 44px !important;
    font-size: 13px !important;
  }

  .nav a {
    padding-right: 3.15em !important;
    font-size: clamp(25px, 7vw, 34px) !important;
  }

  .nav a::before {
    right: 3.1em !important;
  }
}

/* Homepage headline should wrap instead of clipping on common desktop widths. */
body[data-route="sy"] .hero-intro {
  max-width: min(1180px, 100%);
}

body[data-route="sy"] .hero-intro h1,
body[data-route="sy"] .hero-intro h1.split-text {
  display: flex !important;
  max-width: min(1180px, calc(100vw - clamp(32px, 8vw, 132px))) !important;
  flex-wrap: wrap !important;
  row-gap: 0.02em;
  column-gap: 0.18em;
  white-space: normal !important;
  overflow: visible !important;
  font-size: clamp(44px, 5.2vw, 76px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
  text-wrap: balance;
}

body[data-route="sy"] .hero-intro h1.split-text .split-text-segment {
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  body[data-route="sy"] .hero-intro h1,
  body[data-route="sy"] .hero-intro h1.split-text {
    max-width: 100% !important;
    font-size: clamp(34px, 9vw, 56px) !important;
    line-height: 1.14 !important;
  }
}

.mobile-nav-toggle .mobile-nav-toggle__text,
.mobile-nav-toggle .mobile-nav-toggle__text span {
  transform: translateY(0) rotate(0deg) !important;
}

body.mobile-nav-open .mobile-nav-toggle .mobile-nav-toggle__text {
  transform: translateY(0) rotate(0deg) !important;
}

body.mobile-nav-open .mobile-nav-toggle .mobile-nav-toggle__text span {
  transform: translateY(-100%) rotate(0deg) !important;
}

body.mobile-nav-open .mobile-nav-toggle .mobile-nav-toggle__icon {
  transform: rotate(225deg) !important;
}

body.mobile-nav-open .mobile-nav-toggle .mobile-nav-toggle__icon span {
  transform: translate(0, 0) rotate(0deg) !important;
}

body.mobile-nav-open .mobile-nav-toggle .mobile-nav-toggle__icon span:nth-child(2) {
  transform: translate(0, 0) rotate(90deg) !important;
}

/* Keep the homepage capability ticker moving cleanly on mobile. */
@media (max-width: 680px) {
  body[data-route="sy"] .capability-strip {
    overflow: hidden !important;
    touch-action: pan-y;
  }

  body[data-route="sy"] .capability-marquee {
    display: flex !important;
    width: max-content !important;
    min-width: 0 !important;
    animation: capability-marquee-scroll 24s linear infinite !important;
    transform: translate3d(0, 0, 0);
  }

  body[data-route="sy"] .capability-marquee__group,
  body[data-route="sy"] .capability-marquee__group[aria-hidden="true"] {
    display: flex !important;
    flex: 0 0 auto;
  }

  body[data-route="sy"] .capability-strip .capability-marquee__group > div {
    flex: 0 0 clamp(172px, 48vw, 220px) !important;
    min-height: 98px;
    padding: 18px 16px !important;
    text-align: center;
    scroll-snap-align: none;
  }

  body[data-route="sy"] .capability-strip strong {
    font-size: clamp(26px, 8.2vw, 34px) !important;
    line-height: 1;
    white-space: nowrap;
  }

  body[data-route="sy"] .capability-strip span {
    max-width: 12em;
    margin-inline: auto;
    font-size: 13px !important;
    line-height: 1.25;
    overflow-wrap: normal;
  }
}

button.contact-card {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
}

.contact-card[data-copied="true"] {
  position: relative;
}

.contact-card[data-copied="true"]::after {
  content: "Copied";
  position: absolute;
  right: 14px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

@media (max-width: 680px) {
  body[data-route="sy"] .workflow .workflow-grid,
  body[data-route="sy"] .workflow-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    max-width: min(420px, 100%);
    margin-inline: auto;
  }

  body[data-route="sy"] .workflow .workflow-grid div,
  body[data-route="sy"] .workflow-grid div {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: start !important;
    width: 100%;
    min-height: 54px;
    padding: 10px 12px !important;
    text-align: left;
  }

  body[data-route="sy"] .workflow .workflow-grid b,
  body[data-route="sy"] .workflow-grid b {
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    flex: 0 0 30px !important;
    justify-self: center;
  }

  body[data-route="sy"] .workflow-grid span {
    min-width: 0;
    font-size: clamp(18px, 5.6vw, 22px) !important;
    line-height: 1.15;
  }
}

/* Final capability marquee guard: keep duplicate tracks separated at every width. */
body[data-route="sy"] .capability-strip {
  --capability-card-width: clamp(180px, 16vw, 240px);
  --capability-card-gap: 16px;
  --capability-track-width: calc(
    var(--capability-card-width) + var(--capability-card-width) + var(--capability-card-width) +
    var(--capability-card-width) + var(--capability-card-width) + var(--capability-card-width) +
    var(--capability-card-gap) + var(--capability-card-gap) + var(--capability-card-gap) +
    var(--capability-card-gap) + var(--capability-card-gap) + var(--capability-card-gap)
  );
}

body[data-route="sy"] .capability-marquee {
  gap: 0 !important;
  animation: capability-track-scroll 34s linear infinite !important;
}

body[data-route="sy"] .capability-marquee__group,
body[data-route="sy"] .capability-marquee__group[aria-hidden="true"] {
  flex: 0 0 var(--capability-track-width) !important;
  width: var(--capability-track-width) !important;
  gap: var(--capability-card-gap) !important;
  padding-right: var(--capability-card-gap) !important;
}

body[data-route="sy"] .capability-strip .capability-marquee__group > div {
  flex: 0 0 var(--capability-card-width) !important;
  width: var(--capability-card-width) !important;
}

@keyframes capability-track-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(0px - var(--capability-track-width)), 0, 0);
  }
}

@media (max-width: 680px) {
  body[data-route="sy"] .capability-strip {
    --capability-card-width: clamp(172px, 48vw, 220px);
    --capability-card-gap: 12px;
  }

  body[data-route="sy"] .capability-marquee {
    animation-duration: 28s !important;
  }

  body[data-route="sy"] .capability-marquee__group[aria-hidden="true"] {
    display: flex !important;
  }
}

/* Colored contact icons for a warmer inquiry page. */
.contact-icon {
  position: relative;
  border-radius: 999px;
  color: var(--contact-icon-color, var(--green));
  isolation: isolate;
}

.contact-icon::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(135deg, var(--contact-icon-bg-a, rgba(10, 107, 97, 0.18)), var(--contact-icon-bg-b, rgba(0, 127, 177, 0.16)));
  opacity: 0.88;
  filter: blur(0.2px);
}

.contact-icon svg {
  color: inherit;
  fill: currentColor;
  filter: drop-shadow(0 7px 12px var(--contact-icon-shadow, rgba(10, 107, 97, 0.18)));
}

.contact-icon--company {
  --contact-icon-color: #0a6b61;
  --contact-icon-bg-a: rgba(10, 107, 97, 0.18);
  --contact-icon-bg-b: rgba(28, 184, 166, 0.14);
  --contact-icon-shadow: rgba(10, 107, 97, 0.22);
}

.contact-icon--location {
  --contact-icon-color: #e0522d;
  --contact-icon-bg-a: rgba(224, 82, 45, 0.18);
  --contact-icon-bg-b: rgba(250, 174, 64, 0.16);
  --contact-icon-shadow: rgba(224, 82, 45, 0.22);
}

.contact-icon--phone {
  --contact-icon-color: #178f5f;
  --contact-icon-bg-a: rgba(23, 143, 95, 0.2);
  --contact-icon-bg-b: rgba(104, 211, 145, 0.16);
  --contact-icon-shadow: rgba(23, 143, 95, 0.22);
}

.contact-icon--mail {
  --contact-icon-color: #2563eb;
  --contact-icon-bg-a: rgba(37, 99, 235, 0.18);
  --contact-icon-bg-b: rgba(56, 189, 248, 0.15);
  --contact-icon-shadow: rgba(37, 99, 235, 0.22);
}

.contact-icon--wechat {
  --contact-icon-color: #17a34a;
  --contact-icon-bg-a: rgba(23, 163, 74, 0.2);
  --contact-icon-bg-b: rgba(74, 222, 128, 0.15);
  --contact-icon-shadow: rgba(23, 163, 74, 0.22);
}

.contact-icon--qq {
  --contact-icon-color: #12a8e8;
  --contact-icon-bg-a: rgba(18, 168, 232, 0.18);
  --contact-icon-bg-b: rgba(245, 158, 11, 0.13);
  --contact-icon-shadow: rgba(18, 168, 232, 0.24);
}
