@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --titanium-white: #ffffff;
  --porcelain: #f8fbfc;
  --surface-gray: #f4f4f5;
  --line: #e4e4e7;
  --soft-line: #f1f5f9;
  --muted: #64748b;
  --muted-soft: #9aa7b3;
  --ink: #090e17;
  --navy: #07111f;
  --navy-2: #0b3340;
  --teal: #007a8d;
  --teal-hover: #006373;
  --teal-soft: #e8f6f6;
  --teal-line: #c8e9e9;
  --teal-deep: #004d59;
  --ok: #10b981;
  --warn: #b7791f;
  --info: #2563eb;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, "Courier New", monospace;
  --hard-shadow: 6px 6px 0 0 var(--ink);
  --soft-shadow: 0 10px 30px rgba(8, 17, 31, 0.05);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--titanium-white);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.8vw, 78px);
}

h2 {
  max-width: 880px;
  font-size: clamp(28px, 3vw, 44px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 12px 13px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

th:last-child,
td:last-child {
  border-right: 0;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

thead th {
  background: #f4f8f9;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody th {
  width: 160px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav,
.nav-menu,
.nav-item,
.nav-item > a {
  height: 100%;
}

.site-nav,
.nav-item,
.nav-item > a {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.nav-item > a {
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-item > a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 18px;
}

.nav-command-trigger {
  position: relative;
}

.vs-command-trigger-caret {
  margin-left: 8px;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-command-trigger:hover .vs-command-trigger-caret,
.nav-command-trigger.is-touch-open .vs-command-trigger-caret {
  transform: translateY(2px);
}

.vs-command-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  z-index: 1200;
  display: grid;
  grid-template-columns: 30% 45% 25%;
  width: min(1100px, calc(100vw - 40px));
  min-height: 436px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 12px 12px 0 0 var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-command-trigger:hover .vs-command-menu,
.nav-command-trigger.is-touch-open .vs-command-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.vs-command-ghost {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.vs-command-ghost-bg {
  position: absolute;
  inset: 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  transition: background-image 0.35s ease, transform 0.45s ease;
}

.vs-command-ghost-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px 28px;
}

.vs-command-spec-chip {
  align-self: flex-start;
  padding: 6px 9px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.vs-command-data-stack {
  position: relative;
  min-height: 80px;
}

.vs-command-data {
  position: absolute;
  inset: auto auto 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.vs-command-data-default {
  opacity: 1;
  transform: translateY(0);
}

.vs-command-data small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.vs-command-data strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.vs-command-menu:has(.vs-command-sku:hover) .vs-command-ghost-bg {
  background-image: url('../img/viasurg-navigation-thumbnails.png');
  background-size: auto 300%;
  filter: grayscale(0.2) contrast(1.1) brightness(0.7);
  transform: scale(1.05);
}

.vs-command-routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 30px;
  background: #fff;
}

.vs-command-group-title {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.vs-command-link-stack {
  display: grid;
  gap: 8px;
}

.vs-command-sku {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--muted-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.vs-command-sku strong {
  padding: 2px 5px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 9px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.vs-command-sku:hover,
.vs-command-sku.is-active {
  color: var(--ink);
  transform: translateX(4px);
}

.vs-command-sku:hover strong,
.vs-command-sku.is-active strong {
  opacity: 1;
  transform: translateX(0);
}

.vs-command-aside {
  position: relative;
  border-left: 1px solid var(--line);
  background: var(--teal-soft);
  color: var(--ink);
  text-decoration: none;
}

.vs-command-aside-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px;
}

.vs-command-aside-kicker {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.vs-command-aside h3 {
  margin: 10px 0;
  font-size: 28px;
  line-height: 1;
}

.vs-command-aside p {
  color: var(--muted);
  font-size: 13px;
}

.vs-command-aside-cta {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 900;
}


.container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

.layout {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-top: 38px;
}

.page-content {
  min-width: 0;
}

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

.section:first-child,
main > .container:first-child + section + .container.section {
  border-top-color: transparent;
}

.flow-section {
  padding: 46px 4px;
  border-top: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
  padding: 10px 0;
  color: var(--muted);
}

.side-nav strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-nav a {
  position: relative;
  padding: 8px 0 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.side-nav a::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 3px;
  height: 16px;
  background: transparent;
}

.side-nav a.is-active {
  color: var(--ink);
}

.side-nav a.is-active::before {
  background: var(--teal);
}



.nav-wrapper + main > .container:first-child {
  display: flex;
  align-items: center;
  height: 48px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  margin: 0;
  color: var(--muted-soft);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #425065;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb span {
  display: inline-flex;
  align-items: center;
}


.surface-card,
.media,
.product-collection-grid a,
.pathway-grid a,
.family-wall-grid a,
.task-grid a {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.surface-dark,
.dark-panel,
.reference-card,
.about-card,
.bundle-core,
.step.active,
.compare-hero,
.process-hero,
.rfq-hero,
.cluster-hero,
.request-process-hero,
.home-proof-band {
  background: var(--navy);
  color: #fff;
}

.surface-dark h1,
.surface-dark h2,
.surface-dark h3,
.surface-dark h4,
.dark-panel h1,
.dark-panel h2,
.dark-panel h3,
.dark-panel h4,
.reference-card h1,
.reference-card h2,
.reference-card h3,
.reference-card h4,
.about-card h1,
.about-card h2,
.about-card h3,
.about-card h4,
.bundle-core h1,
.bundle-core h2,
.bundle-core h3,
.bundle-core h4,
.compare-hero h1,
.compare-hero h2,
.compare-hero h3,
.compare-hero h4,
.process-hero h1,
.process-hero h2,
.process-hero h3,
.process-hero h4,
.rfq-hero h1,
.rfq-hero h2,
.rfq-hero h3,
.rfq-hero h4,
.cluster-hero h1,
.cluster-hero h2,
.cluster-hero h3,
.cluster-hero h4,
.request-process-hero h1,
.request-process-hero h2,
.request-process-hero h3,
.request-process-hero h4,
.home-proof-band h1,
.home-proof-band h2,
.home-proof-band h3,
.home-proof-band h4 {
  color: #fff;
}

.surface-dark .lede,
.surface-dark .muted,
.dark-panel .lede,
.dark-panel .muted,
.compare-hero .lede,
.process-hero .lede,
.rfq-hero .lede,
.cluster-hero .lede,
.request-process-hero .lede,
.home-proof-band .lede,
.home-proof-band p,
.reference-card ul,
.about-card p {
  color: rgba(255, 255, 255, 0.74);
}

.surface-cta,
.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0;
  padding: 34px;
  border-top: 1px solid var(--teal-line);
  border-bottom: 1px solid var(--teal-line);
  background: var(--teal-soft);
}

.surface-lines,
.module-grid,
.card-grid,
.proof-lanes,
.process-steps,
.input-lanes,
.trust-story,
.document-catalog,
.compare-board,
.signal-lab,
.request-stepper {
  gap: 0;
  margin-top: 28px;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--teal-hover);
  box-shadow: var(--hard-shadow);
}

.btn-secondary {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--surface-gray);
  box-shadow: var(--hard-shadow);
}

.kicker {
  margin-bottom: 16px;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.trust-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-pill,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chip {
  min-height: auto;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.signal.ok {
  background: #e8f6ef;
  color: var(--ok);
}

.signal.warn {
  background: #fff4d7;
  color: var(--warn);
}

.signal.info {
  background: #eaf2fb;
  color: var(--info);
}

.media {
  margin: 0;
  overflow: hidden;
}

.media-frame {
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.media img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: contain;
}

.media figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.signal-strip-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

.signal-tile {
  padding: 20px 18px;
  border-right: 1px solid var(--soft-line);
}

.signal-tile:last-child {
  border-right: 0;
}

.signal-tile span,
.entry-router span,
.route-band span,
.axis-selector span,
.compare-axis span,
.document-catalog span,
.process-steps span,
.signal-lab span,
.family-wall-grid span,
.task-grid span,
.request-side-note span,
.pathway-grid span,
.term-map span,
.document-condition span,
.market-fields span,
.problem-map strong {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-tile strong {
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-weight: 800;
}

.check-item::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 900;
}

.check-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.check-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.42;
}

.table-wrap,
.responsive-table {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--line);
}

.responsive-table table {
  min-width: 0;
}

.responsive-table th,
.responsive-table td {
  overflow-wrap: anywhere;
}

.mobile-compare-cards {
  display: none;
  margin-top: 18px;
}

.mobile-compare-cards details,
.faq-list details {
  border-bottom: 1px solid var(--soft-line);
  background: transparent;
  padding: 18px 0;
}

.mobile-compare-cards details:last-child,
.faq-list details:last-child {
  border-bottom: 0;
}

.mobile-compare-cards summary,
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.mobile-compare-cards p,
.faq-list p,
.module-grid article p,
.mini-card p {
  margin-top: 10px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-grid,
.card-grid {
  display: block;
}

.module-grid article,
.mini-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
  background: transparent;
  text-decoration: none;
}

.module-grid article:last-child,
.mini-card:last-child {
  border-bottom: 0;
}

.mini-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card p {
  grid-column: 2;
}

.input-lanes,
.document-catalog,
.process-steps,
.proof-lanes,
.trust-story,
.signal-lab,
.compare-board,
.request-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.request-stepper {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.input-lanes > div,
.document-catalog > article,
.process-steps > div,
.proof-lanes > article,
.trust-story > article,
.signal-lab > div,
.compare-axis,
.step {
  padding: 22px 20px;
  border-right: 1px solid var(--soft-line);
  background: transparent;
}

.input-lanes > div:last-child,
.document-catalog > article:last-child,
.process-steps > div:last-child,
.proof-lanes > article:last-child,
.trust-story > article:last-child,
.signal-lab > div:last-child,
.compare-axis:last-child,
.step:last-child {
  border-right: 0;
}

.input-lanes span,
.process-steps span,
.request-process-timeline span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 10px;
  background: transparent;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.request-panel {
  margin: 24px 0 0;
  padding: 38px;
}

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

.intent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.intent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.field textarea {
  min-height: 92px;
}

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

.sticky-request {
  position: fixed;
  bottom: 18px;
  left: 50%;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(760px, calc(100% - 28px));
  padding: 10px 12px 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(28px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.show-sticky-request .sticky-request {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-request span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}


.hero,
.home-hero,
.category-hero,
.collection-hero,
.compare-hero,
.reference-hero,
.current-ref-hero,
.docs-hero,
.document-detail-hero,
.guide-hero,
.market-hero,
.rfq-hero,
.process-hero,
.request-process-hero,
.capability-hero,
.solution-hero,
.signals-hero,
.about-hero,
.usecase-hero,
.cluster-hero {
  padding: 66px 0 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--porcelain) 100%);
}

.compare-hero,
.process-hero,
.rfq-hero,
.cluster-hero,
.request-process-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}

.guide-hero,
.market-hero,
.signals-hero {
  background: linear-gradient(180deg, #fff 0%, #eef8f8 100%);
}

.about-hero,
.capability-hero {
  background: #fff;
}

.home-hero-expanded {
  padding-top: 84px;
}

.hero-grid,
.home-grid,
.reference-grid,
.capability-grid,
.about-grid,
.current-ref-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 44px;
  align-items: center;
}

.current-ref-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.capability-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.58fr);
}

.entry-router,
.family-rows,
.journey-list,
.capability-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.entry-router a,
.entry-router-strong a,
.family-rows a,
.journey-list a,
.capability-stack div {
  display: block;
  padding: 19px 0;
  border-bottom: 1px solid var(--soft-line);
  color: inherit;
  text-decoration: none;
}

.entry-router a:last-child,
.family-rows a:last-child,
.journey-list a:last-child,
.capability-stack div:last-child {
  border-bottom: 0;
}

.entry-router a:hover,
.family-rows a:hover,
.journey-list a:hover {
  color: var(--teal-deep);
}

.entry-router strong,
.route-band strong,
.axis-selector strong,
.family-rows strong {
  display: block;
  font-size: 18px;
}

.family-rows strong {
  font-size: 22px;
}

.family-rows span,
.product-collection-grid small,
.pathway-grid small,
.family-wall-grid small,
.task-grid small,
.term-map p,
.problem-map span,
.request-process-timeline p {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.route-band,
.axis-selector,
.filter-strip,
.document-condition,
.market-fields {
  display: grid;
  gap: 0;
  margin-top: 38px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.route-band,
.axis-selector {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.filter-strip {
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border-radius: 999px;
}

.document-condition,
.market-fields {
  grid-template-columns: repeat(3, 1fr);
}

.route-band > div,
.axis-selector > div,
.filter-strip span,
.document-condition > div,
.market-fields > div {
  padding: 18px 20px;
  border-right: 1px solid var(--soft-line);
  font-weight: 900;
}

.route-band > div:last-child,
.axis-selector > div:last-child,
.filter-strip span:last-child,
.document-condition > div:last-child,
.market-fields > div:last-child {
  border-right: 0;
}

.journey-board,
.category-map,
.bundle-map,
.task-switchboard,
.proof-grid,
.home-request-split {
  display: grid;
  gap: 28px;
  align-items: start;
  margin-top: 44px;
  margin-bottom: 24px;
}

.journey-board {
  grid-template-columns: 0.9fr 1.1fr;
}

.category-map,
.bundle-map {
  grid-template-columns: 0.8fr 1.2fr;
}

.task-switchboard {
  grid-template-columns: 0.72fr 1.28fr;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.proof-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.home-request-split {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.journey-main,
.task-panel,
.panel-soft {
  padding: 12px 4px;
}

.product-collection-grid,
.pathway-grid,
.family-wall-grid,
.task-grid,
.bundle-items,
.home-checkbox-grid,
.term-map,
.problem-map,
.request-process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-collection-grid,
.pathway-grid,
.term-map,
.problem-map,
.request-process-timeline {
  margin-top: 38px;
  margin-bottom: 26px;
}

.product-collection-grid,
.pathway-grid {
  grid-template-columns: repeat(4, 1fr);
}

.request-process-timeline {
  grid-template-columns: repeat(4, 1fr);
}

.product-collection-grid a,
.pathway-grid a,
.family-wall-grid a,
.task-grid a,
.term-map > div,
.problem-map > div,
.request-process-timeline > div {
  display: block;
  min-height: 150px;
  padding: 22px;
  text-decoration: none;
}

.term-map > div,
.problem-map > div,
.request-process-timeline > div {
  border: 1px solid var(--line);
  background: #fff;
}

.product-collection-grid strong,
.pathway-grid strong,
.family-wall-grid strong,
.task-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.family-wall-grid strong {
  font-size: 24px;
}

.home-category-wall {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-section-head {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

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

.home-proof-band {
  margin-top: 28px;
  padding: 58px 0;
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-list div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
}

.proof-list div:last-child {
  border-bottom: 0;
}

.proof-list strong {
  display: block;
  font-size: 20px;
}

.proof-list span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.request-card-large,
.request-side-note {
  padding: 0;
  background: transparent;
}

.request-card-large p {
  color: var(--muted);
  font-size: 18px;
}

.home-checkbox-grid {
  margin-top: 24px;
  gap: 8px;
}

.home-checkbox-grid label {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
}

.home-checkbox-grid input {
  margin-right: 8px;
  accent-color: var(--teal);
}

.request-side-note {
  align-content: center;
  display: grid;
}

.request-side-note strong {
  font-size: 22px;
  line-height: 1.25;
}

.reference-card,
.about-card,
.bundle-core {
  padding: 28px;
}

.reference-card ul {
  margin: 16px 0 22px;
  padding-left: 20px;
}

.about-card {
  display: grid;
  align-content: center;
  align-self: stretch;
}

.about-card p {
  margin-top: 12px;
}

.bundle-items {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bundle-items span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-right: 1px solid var(--soft-line);
  text-align: center;
  font-weight: 900;
}

.bundle-items span:nth-child(3n),
.bundle-items span:last-child {
  border-right: 0;
}

.family-wall-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.compare-table table {
  min-width: 860px;
}

.always-show {
  display: grid;
}

.rep-footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.rep-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.rep-eyebrow {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rep-meta {
  color: var(--muted);
}

.rep-footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.rep-footer li {
  margin-top: 8px;
}

.rep-footer a {
  text-decoration: none;
}

.rep-supply-terminal {
  padding: 18px;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.rep-terminal-input {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line);
}

.rep-terminal-action {
  display: inline-block;
  margin-top: 8px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
  font-size: 12px;
}

.rep-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rep-social-token,
.rep-footer-badge {
  padding: 4px 8px;
  border: 1px solid var(--line);
}


@media (max-width: 1040px) {
  .hero-grid,
  .home-grid,
  .reference-grid,
  .capability-grid,
  .about-grid,
  .current-ref-grid,
  .journey-board,
  .category-map,
  .bundle-map,
  .task-switchboard,
  .proof-grid,
  .home-request-split,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    width: 100%;
  }

  .side-nav {
    position: static;
    display: flex;
    width: auto;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  body:not(.show-section-nav) .side-nav {
    display: none;
  }

  .side-nav strong {
    display: none;
  }

  .side-nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
  }

  .side-nav a.is-active {
    border-color: var(--teal);
    background: var(--teal-soft);
  }

  .side-nav a.is-active::before {
    display: none;
  }

  .signal-strip,
  .route-band,
  .axis-selector,
  .filter-strip,
  .document-condition,
  .market-fields,
  .compare-board,
  .input-lanes,
  .document-catalog,
  .request-stepper,
  .process-steps,
  .proof-lanes,
  .trust-story,
  .signal-lab,
  .product-collection-grid,
  .pathway-grid,
  .term-map,
  .problem-map,
  .request-process-timeline,
  .family-wall-grid,
  .task-grid,
  .bundle-items,
  .module-grid.four,
  .family-wall-grid.compact,
  .rep-footer-grid,
  .form-grid,
  .intent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-strip {
    border-radius: 0;
  }

  .filter-strip span:nth-child(2n),
  .document-condition > div:nth-child(2n),
  .market-fields > div:nth-child(2n) {
    border-right: 0;
  }

  .wide {
    grid-column: auto;
  }

  .bottom-cta {
    display: block;
  }

  .bottom-cta .hero-actions {
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-menu {
    display: none;
  }

  .nav-wrapper,
  .nav-container {
    height: 72px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero,
  .home-hero,
  .category-hero,
  .collection-hero,
  .compare-hero,
  .reference-hero,
  .current-ref-hero,
  .docs-hero,
  .document-detail-hero,
  .guide-hero,
  .market-hero,
  .rfq-hero,
  .process-hero,
  .request-process-hero,
  .capability-hero,
  .solution-hero,
  .signals-hero,
  .about-hero,
  .usecase-hero,
  .cluster-hero {
    padding: 40px 0 32px;
  }

  .home-hero-expanded {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .section {
    padding: 36px 0;
  }

  .signal-strip,
  .route-band,
  .axis-selector,
  .filter-strip,
  .document-condition,
  .market-fields,
  .compare-board,
  .input-lanes,
  .document-catalog,
  .request-stepper,
  .process-steps,
  .proof-lanes,
  .trust-story,
  .signal-lab,
  .product-collection-grid,
  .pathway-grid,
  .term-map,
  .problem-map,
  .request-process-timeline,
  .family-wall-grid,
  .task-grid,
  .bundle-items,
  .home-checkbox-grid,
  .module-grid.four,
  .family-wall-grid.compact,
  .rep-footer-grid,
  .form-grid,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .route-band > div,
  .axis-selector > div,
  .filter-strip span,
  .document-condition > div,
  .market-fields > div,
  .input-lanes > div,
  .document-catalog > article,
  .process-steps > div,
  .proof-lanes > article,
  .trust-story > article,
  .signal-lab > div,
  .compare-axis,
  .step,
  .bundle-items span {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .route-band > div:last-child,
  .axis-selector > div:last-child,
  .filter-strip span:last-child,
  .document-condition > div:last-child,
  .market-fields > div:last-child,
  .input-lanes > div:last-child,
  .document-catalog > article:last-child,
  .process-steps > div:last-child,
  .proof-lanes > article:last-child,
  .trust-story > article:last-child,
  .signal-lab > div:last-child,
  .compare-axis:last-child,
  .step:last-child,
  .bundle-items span:last-child {
    border-bottom: 0;
  }

  .product-collection-grid a,
  .pathway-grid a,
  .family-wall-grid a,
  .task-grid a,
  .term-map > div,
  .problem-map > div,
  .request-process-timeline > div {
    min-height: auto;
  }

  .module-grid article,
  .mini-card {
    grid-template-columns: 1fr;
  }

  .mini-card p {
    grid-column: auto;
  }

  .responsive-table,
  .compare-table {
    display: none;
  }

  .mobile-compare-cards {
    display: block;
  }

  .media-frame {
    min-height: 240px;
  }

  .media img {
    height: 240px;
  }

  .home-category-wall,
  .home-proof-band {
    padding: 38px 0;
  }

  .task-switchboard,
  .home-request-split {
    padding-top: 34px;
  }

  .request-panel,
  .bottom-cta,
  .reference-card,
  .about-card,
  .bundle-core {
    padding: 24px;
  }

  .sticky-request {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 12px;
  }

  .sticky-request .btn {
    width: 100%;
  }

  .footer-bottom {
    display: block;
  }
}

.nav-container > nav:not(.site-nav) { display: flex; align-items: center; }
.nav-menu > li:not(.nav-item) { display: flex; align-items: center; }
.nav-menu > li:not(.nav-item) > a { padding: 0 12px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.nav-menu > li:not(.nav-item) > a:hover { color: var(--ink); }
.vs-command-menu a { text-decoration: none; }
.vs-command-menu { transform: translate(-50%, 0); }
.nav-command-trigger:hover .vs-command-menu,
.nav-command-trigger.is-open .vs-command-menu,
.nav-command-trigger.is-touch-open .vs-command-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); visibility: visible; }
.hero { padding: 72px 0 56px; background: #fff; min-width: 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr); gap: 48px; align-items: start; min-width: 0; }
.hero-grid > * { min-width: 0; }
.hero-panel { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--porcelain); }
.kicker { margin-bottom: 12px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.lede { max-width: 780px; margin: 0 0 28px; color: var(--muted); font-size: 18px; }
.hero-panel-copy, .bottom-cta-copy { margin: 12px 0 0; font-size: 15px; }
.bottom-cta-copy { margin: 0; }
.reference-steps { margin: 24px 0; }
.rfq-sidebar-title { color: #fff; font-size: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; min-width: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 20px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; font-weight: 900; text-align: center; text-decoration: none; text-transform: uppercase; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-hover); }
.btn-secondary { border-color: var(--line); background: #fff; color: var(--ink); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 420px); gap: 32px; align-items: end; margin-bottom: 28px; min-width: 0; }
.section-head p { color: var(--muted); }
.entry-grid, .family-wall, .module-grid, .product-collection-grid, .document-catalog, .request-stepper, .input-lanes, .process-steps, .compare-board { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; min-width: 0; }
.entry-grid a, .family-wall a, .family-card, .mini-card, .module-grid article, .document-catalog article, .request-stepper .step, .request-stepper div, .input-lanes div, .process-steps div, .compare-board div, .proof-list div, .check-item, .route-row { display: block; min-width: 0; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: #fff; text-decoration: none; }
.entry-grid span, .family-wall span, .family-card span, .mini-card span, .document-catalog span, .request-stepper span, .input-lanes span, .process-steps span, .compare-board span, .filter-strip span, .axis-selector span { display: block; margin-bottom: 8px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.entry-grid strong, .family-wall strong, .family-card strong, .route-row strong { display: block; margin-bottom: 8px; font-size: 18px; line-height: 1.3; }
.entry-grid em, .family-wall small, .family-card small, .mini-card p, .module-grid p, .document-catalog p, .request-stepper p, .input-lanes p, .process-steps p, .compare-board p, .check-item span, .route-row span { display: block; margin: 0; color: var(--muted); font-size: 14px; font-style: normal; }
.card-img { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 4 / 3; margin-bottom: 16px; overflow: hidden; border-radius: 8px; background: #fff; color: var(--muted); font-weight: 900; text-transform: uppercase; }
.card-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.filter-strip, .axis-selector { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; min-width: 0; padding: 28px 24px; }
.filter-strip span, .axis-selector div { min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.axis-selector strong { display: block; font-size: 16px; }
.product-browser-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 28px; align-items: start; min-width: 0; }
.product-browser-nav { position: sticky; top: 96px; min-width: 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.product-browser-title { margin-bottom: 10px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.product-browser-links { display: grid; gap: 8px; }
.product-browser-link { display: block; min-width: 0; padding: 10px 12px; border: 1px solid var(--soft-line); border-radius: 8px; text-decoration: none; }
.product-browser-link:hover { border-color: var(--teal-line); background: var(--teal-soft); }
.product-browser-nav-name { display: block; overflow-wrap: anywhere; font-weight: 800; }
.product-browser-nav-count { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.product-groups { display: grid; gap: 28px; min-width: 0; }
.product-group { scroll-margin-top: 96px; min-width: 0; padding-top: 20px; border-top: 1px solid var(--line); }
.product-group-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; min-width: 0; margin-bottom: 16px; }
.product-group-head span { display: block; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.product-group-head a { color: var(--teal); font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.product-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; min-width: 0; }
.product-card.is-hidden { display: none; }
.product-toggle { max-width: 100%; margin-top: 14px; padding: 11px 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer; font: inherit; font-size: 14px; font-weight: 800; white-space: normal; }
.product-toggle:hover { border-color: var(--teal-line); background: var(--teal-soft); }
.route-map { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr); gap: 36px; align-items: start; min-width: 0; }
.family-rows, .proof-list, .check-list, .faq-list { display: grid; gap: 12px; min-width: 0; }
.proof-band { border-top: 1px solid var(--teal-line); border-bottom: 1px solid var(--teal-line); background: var(--teal-soft); }
.proof-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr); gap: 36px; min-width: 0; }
.proof-band .proof-list { border: 0; gap: 12px; }
.proof-band .proof-list div { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.proof-band .proof-list strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 18px; line-height: 1.3; }
.proof-band .proof-list span { display: block; color: var(--muted); font-size: 14px; line-height: 1.55; }
.check-item { display: grid; grid-template-columns: 22px minmax(0, 1fr); column-gap: 14px; align-items: start; }
.check-item::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 999px; background: var(--teal-soft); color: var(--teal); font-weight: 900; }
.check-item strong, .check-item span { grid-column: 2; min-width: 0; }
.faq-list details { padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin-top: 10px; color: var(--muted); }
.table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.request-panel { min-width: 0; padding: 36px; border-radius: 8px; background: var(--ink); color: #fff; }
.request-panel h2, .request-panel h3 { color: #fff; }
.request-panel .lede, .request-panel .muted { color: #d1d5db; }
.intent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; min-width: 0; margin: 24px 0; }
.intent { display: flex; gap: 12px; align-items: flex-start; min-width: 0; padding: 16px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 8px; }
.intent input { flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--teal); }
.rfq-quick-form { align-items: stretch; margin-top: 28px; }
.rfq-quick-form .rfq-control { width: min(360px, 100%); border-color: var(--line); background: var(--porcelain); }
.rfq-quick-form .btn { white-space: nowrap; }
.hero-form-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.rfq-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 56px; align-items: start; min-width: 0; padding: 48px 0 86px; }
.rfq-main-form { min-width: 0; border-radius: 8px; background: #fff; }
.rfq-form { display: grid; gap: 18px; }
.rfq-main-form .rfq-form { gap: 24px; }
.rfq-field-grid, .rfq-main-form .rfq-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.rfq-form label, .rfq-main-form .rfq-form label { display: grid; gap: 8px; color: var(--ink); font-size: 14px; font-weight: 800; }
.rfq-control { width: 100%; min-width: 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); font: inherit; }
.rfq-control:focus { border-color: var(--teal); outline: 3px solid rgba(0, 122, 141, 0.16); outline-offset: 1px; }
textarea.rfq-control { min-height: 126px; resize: vertical; }
.rfq-form-section-title { margin: 8px 0 0; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
.rfq-required { margin-left: 4px; color: var(--warn); }
.rfq-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.rfq-email-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.rfq-sidebar { position: sticky; top: 96px; min-width: 0; padding: 32px; border-radius: 8px; background: var(--ink); color: #fff; }
.rfq-sidebar h2, .rfq-sidebar h3 { color: #fff; }
.rfq-sidebar .kicker { color: var(--teal-line); }
.rfq-sidebar .lede { margin-bottom: 24px; color: #d1d5db; font-size: 15px; }
.summary-item { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.summary-item:last-child { margin-bottom: 0; border-bottom: 0; }
.summary-item span { display: block; margin-bottom: 4px; color: #94a3b8; font-size: 11px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.summary-item strong { display: block; overflow-wrap: anywhere; color: #fff; font-size: 15px; }
.trust-badges { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.trust-badges h4 { margin: 0 0 12px; color: #fff; font-size: 14px; }
.trust-badges ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.trust-badges li { color: #cbd5e1; font-size: 13px; }
.request-continue-band { padding: 52px 0; border-top: 1px solid var(--teal-line); border-bottom: 1px solid var(--teal-line); background: var(--teal-soft); }
.request-continue-layout { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-width: 0; }
.request-continue-layout > * { min-width: 0; }
.request-continue-layout .hero-actions { flex: 0 0 auto; justify-content: flex-end; }
.sticky-request { position: fixed; left: 50%; bottom: 20px; z-index: 80; display: flex; align-items: center; justify-content: space-between; gap: 18px; width: calc(100vw - 24px); max-width: min(760px, calc(100vw - 24px)); padding: 10px 12px 10px 22px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12); }
.sticky-request span { min-width: 0; color: var(--muted); font-size: 14px; font-weight: 800; }
.rep-footer { padding: 54px 0 28px; background: #0f172a; color: #e5e7eb; }
.rep-footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1.1fr; gap: 24px; }
.rep-footer h4 { margin: 0 0 10px; color: #fff; }
.rep-footer p, .rep-footer a, .rep-footer li { color: #cbd5e1; font-size: 14px; }
.rep-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.rep-footer a { text-decoration: none; }
.rep-terminal-action { display: inline-flex; margin-top: 10px; padding: 10px 14px; border-radius: 8px; background: #fff; color: var(--ink) !important; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #94a3b8; font-size: 12px; }
.rep-footer-badge { display: inline-flex; margin-left: 6px; padding: 4px 8px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; }
.product-layout { display: grid; grid-template-columns: 172px minmax(0, 1fr); gap: 32px; align-items: start; padding-top: 38px; }
.page-content { min-width: 0; }
.pdp-media { min-width: 0; padding: 18px; }
.media-frame { display: grid; place-items: center; width: 100%; min-height: 360px; background: #fff; }
.pdp-media-img { display: block; width: 100%; height: min(460px, 48vw); object-fit: contain; }
.pdp-media-placeholder { display: grid; place-items: center; min-height: 260px; color: var(--muted); font-weight: 900; text-transform: uppercase; }
.signal-strip-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.signal-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.signal-tile { min-width: 0; padding: 20px 18px; border-right: 1px solid var(--soft-line); }
.signal-tile:last-child { border-right: 0; }
.signal-tile span { display: block; margin-bottom: 7px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.signal-tile strong { display: block; font-size: 18px; line-height: 1.25; }
.compact-spec-section { padding: 46px 4px; border-top: 1px solid var(--line); }
.spec-brand-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr); gap: 24px; align-items: start; }
.compact-heading { font-size: 24px; }
.compact-note { margin-bottom: 16px; color: var(--muted); font-size: 15px; }
.compact-table { width: 100%; min-width: 0; }
.brand-chips-compact { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-chip-compact { display: inline-flex; align-items: center; min-height: 32px; padding: 7px 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 12px; font-weight: 800; }
.benchmark-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 12px; border-bottom: 1px solid var(--line); }
.benchmark-label { margin-right: 8px; color: var(--ink); font-size: 14px; }
.benchmark-chip { padding: 7px 10px; border: 1px solid var(--line); background: #fff; color: var(--muted); cursor: pointer; font: inherit; font-size: 12px; font-weight: 800; }
.benchmark-chip.active { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-deep); }
.benchmark-note, .matrix-note { color: var(--muted); font-size: 13px; }
.matrix-note { padding: 12px; border-top: 1px solid var(--line); }
.table-scroll { overflow-x: auto; }
.compare-table .brand { display: block; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.hidden-col { display: none; }
.fit-level { display: inline-flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.fit-mark { display: inline-flex; align-items: center; min-height: 22px; padding: 3px 7px; border-radius: 999px; font-size: 11px; font-weight: 900; }
.bg-ok { border: 1px solid #a8e6bd; background: #dff8ea; color: #075c3f; }
.bg-comparable, .bg-warn { border: 1px solid #bfe7d1; background: #e8f7ef; color: #14543b; }
.bg-differs { border: 1px solid #d7c99a; background: #f3efd9; color: #5f5329; }
.bg-diff { border: 1px solid #f2d67a; background: #fff4bd; color: #704c00; }
.bg-review { border: 1px solid var(--teal-line); background: var(--teal-soft); color: var(--teal-deep); }
.solution-banner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-width: 0; margin: 24px 0 0; padding: 24px; border-radius: 8px; background: var(--teal); color: #fff; }
.solution-banner h3 { color: #fff; }
.solution-banner p { color: rgba(255, 255, 255, 0.86); }
.request-inverse-btn { background: #fff; color: var(--teal); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
.related-title { margin: 48px 0 24px; color: var(--ink); font-size: 22px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card-modern { min-width: 0; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--soft-shadow); }
.card-modern h3 { margin-bottom: 8px; }
.card-modern p { color: var(--muted); font-size: 14px; }
.card-link { display: inline-flex; margin-top: 14px; color: var(--teal); font-size: 13px; font-weight: 900; text-decoration: none; }
.documents-section { padding-bottom: 120px; }
.documents-section details { margin-top: 14px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.documents-section summary { cursor: pointer; font-weight: 800; }
.documents-section p { margin-top: 10px; color: var(--muted); }
.inquiry-copilot { position: fixed; left: 50%; bottom: 20px; z-index: 85; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; gap: 18px; width: calc(100vw - 24px); max-width: min(760px, calc(100vw - 24px)); padding: 10px 12px 10px 22px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.96); box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12); }
.copilot-intents { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; min-width: 0; color: var(--muted); font-size: 13px; font-weight: 800; }
.copilot-start { border-radius: 100px; padding: 10px 24px; }
.form-control { width: 100%; min-width: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); font: inherit; }
.modal-overlay { position: fixed; inset: 0; z-index: 1300; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(9, 14, 23, 0.58); }
.modal-overlay.active { display: flex; }
.modal-content { width: min(620px, 100%); max-height: calc(100vh - 40px); overflow: auto; border: 1px solid var(--ink); background: #fff; box-shadow: 12px 12px 0 0 var(--ink); }
.modal-header, .modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.modal-footer { border-top: 1px solid var(--line); border-bottom: 0; }
.modal-body { display: grid; gap: 16px; padding: 20px; }
.btn-close { border: 0; background: transparent; color: var(--ink); cursor: pointer; font-size: 28px; line-height: 1; }
.modal-section-title { color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.intent-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.intent-tag { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-deep); font-size: 12px; font-weight: 900; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-group { display: grid; gap: 7px; }
.form-group label { color: var(--ink); font-size: 13px; font-weight: 800; }
body:not(.show-sticky-request) .sticky-request { opacity: 0; pointer-events: none; transform: translate(-50%, 14px); }
body.show-sticky-request .sticky-request { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
@media (max-width: 900px) {
  .vs-command-menu { position: fixed; top: 72px; grid-template-columns: 1fr; width: min(440px, calc(100vw - 24px)); min-height: 0; max-height: calc(100vh - 96px); overflow: auto; box-shadow: 8px 8px 0 0 var(--ink); }
  .vs-command-ghost, .vs-command-aside { display: none; }
  .vs-command-routes { grid-template-columns: 1fr; padding: 20px; }
  .hero-grid, .section-head, .route-map, .proof-grid, .rep-footer-grid, .product-browser-layout, .rfq-layout { grid-template-columns: 1fr; }
  .entry-grid, .family-wall, .module-grid, .product-collection-grid, .product-card-grid, .document-catalog, .request-stepper, .input-lanes, .process-steps, .compare-board, .filter-strip, .axis-selector, .intent-grid, .rfq-field-grid, .rfq-main-form .rfq-field-grid, .product-layout, .spec-brand-grid, .signal-strip, .related-grid, .form-grid { grid-template-columns: 1fr; }
  .rfq-quick-form { display: grid; }
  .rfq-quick-form .rfq-control { width: 100%; }
  .product-browser-nav { position: static; max-width: 100%; overflow-x: auto; padding: 0; border: 0; background: transparent; scrollbar-width: thin; }
  .product-browser-title { margin-bottom: 8px; }
  .product-browser-links { display: flex; gap: 8px; padding-bottom: 4px; }
  .product-browser-link { flex: 0 0 auto; min-width: min(220px, 72vw); }
  .product-group-head, .request-continue-layout, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .request-continue-layout .hero-actions { justify-content: flex-start; }
  .rfq-sidebar { position: static; }
  .sticky-request { bottom: 12px; gap: 12px; padding: 10px 10px 10px 14px; border-radius: 8px; }
  .sticky-request .btn { padding: 10px 14px; white-space: nowrap; }
  .side-nav { position: static; display: flex; gap: 8px; overflow-x: auto; width: auto; margin-bottom: 18px; padding: 0; border: 0; background: transparent; }
  .side-nav strong { display: none; }
  .side-nav a { flex: 0 0 auto; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
  .signal-tile { border-right: 0; border-bottom: 1px solid var(--soft-line); }
  .solution-banner, .inquiry-copilot { align-items: flex-start; flex-direction: column; border-radius: 8px; }
  .inquiry-copilot { bottom: 12px; padding: 12px; }
  body { padding-bottom: 88px; }
}
