:root {
  --bg: #f5f6f7;
  --container: 1200px;
  --desktop-title-container: 1040px;
  --mobile-container: 354px;
  --mobile-page-padding: 18px;
  --desktop-h2-size: 44px;
  --desktop-h2-line: 53.68px;
  --desktop-h2-weight: 900;
  --desktop-h3-size: 24px;
  --desktop-h3-line: 30px;
  --desktop-h3-weight: 900;
  --hero-h1-size: 50px;
  --hero-h1-line: 1.22;
  --hero-h1-weight: 900;
  --mobile-h1-size: 34px;
  --mobile-h1-line: 1.08;
  --button-size: 16px;
  --button-line: 19.2px;
  --button-weight: 500;
  --table-label-size: 12px;
  --table-label-line: 17.4px;
  --table-label-weight: 700;
  --table-value-size: 16px;
  --table-value-line: 27.52px;
  --body-size: 17px;
  --body-line: 29.24px;
  --card-body-size: 16px;
  --card-body-line: 27.52px;
  --mobile-h2-size: 26px;
  --mobile-h2-line: 30.16px;
  --mobile-h2-weight: 900;
  --mobile-h3-size: 20px;
  --mobile-h3-line: 24.4px;
  --mobile-body-size: 16px;
  --mobile-body-line: 25.6px;
  --text: #1f1f1f;
  --muted: rgba(31, 31, 31, .72);
  --soft: rgba(31, 31, 31, .58);
  --label: rgba(31, 31, 31, .72);
  --color-card: #fff;
  --color-button-dark: rgb(47, 47, 47);
  --color-link-hover: #2261b6;
  --radius-card: 30px;
  --radius-button: 40px;
  --button-height: 48px;
  --button-height-mobile: 52px;
  --button-border: 3px;
  --section-y-hero-top: 188px;
  --section-y-hero-bottom: 153px;
  --shadow-card: 0 18px 48px 0 rgba(0, 0, 0, .05);
  --bws-font-family: Helvetica, Verdana, Arial, sans-serif;
  --bws-eyebrow-size: 12px;
  --bws-eyebrow-line: 14.4px;
  --bws-eyebrow-weight: 600;
  --bws-eyebrow-spacing: 2.64px;
  --bws-eyebrow-color: rgba(31, 31, 31, 0.72);
  --bws-card-title-size: 24px;
  --bws-card-title-line: 30px;
  --bws-card-title-weight: 900;
  --bws-card-body-size: 16px;
  --bws-card-body-line: 27.52px;
  --bws-card-body-weight: 400;
  --bws-card-body-color: rgba(31, 31, 31, 0.72);
  --bws-feature-title-size: 17px;
  --bws-feature-title-line: 29.24px;
  --bws-feature-title-weight: 700;
  --bws-small-size: 13px;
  --bws-small-line: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--bws-font-family);
  font-size: var(--body-size);
  line-height: var(--body-line);
}
a { color: inherit; }
svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.bws-shell {
  width: min(var(--container), calc(100% - 48px));
  max-width: var(--container);
  margin: 0 auto;
}
.bws-section {
  padding: 116px 0;
  background: var(--bg);
}

.bws-eyebrow {
  margin: 0 0 4px;
  color: var(--label);
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--text);
  letter-spacing: 0;
}
.bws-section-head h2 {
  margin-bottom: 18px;
  font-size: var(--desktop-h2-size);
  line-height: var(--desktop-h2-line);
  font-weight: var(--desktop-h2-weight);
  letter-spacing: 0;
}
.bws-section-head p:not(.bws-eyebrow),
.bws-inquiry-card > p:not(.bws-eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--body-size);
  line-height: var(--body-line);
  font-weight: 400;
}

.bws-inquiry-wrap {
  max-width: 1160px;
}
.bws-inquiry-card {
  padding: 68px 72px;
  border-radius: 40px;
}
.bws-inquiry-card h2 {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  font-size: var(--desktop-h2-size);
  line-height: var(--desktop-h2-line);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}
.bws-inquiry-card .bws-eyebrow {
  text-align: center;
}
.bws-inquiry-card > p:not(.bws-eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.bwp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 18px;
  align-items: start;
  margin-top: 44px;
}
.bwp-form-message,
.bws-form-wide,
.bwp-form button {
  grid-column: 1 / -1;
}
.bwp-form-message {
  display: none;
  padding: 14px 18px;
  border: 1px solid rgba(31,31,31,.10);
  border-radius: 18px;
  background: rgba(246,247,248,.82);
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}
.bwp-form-message.is-pending,
.bwp-form-message.is-success,
.bwp-form-message.is-error { display: block; }
.bwp-form-message.is-success {
  border-color: rgba(31, 120, 68, .2);
  background: rgba(235, 248, 240, .9);
  color: rgb(31, 96, 58);
}
.bwp-form-message.is-error {
  border-color: rgba(154, 55, 55, .22);
  background: rgba(252, 239, 239, .92);
  color: rgb(130, 45, 45);
}
.bwp-honeypot {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}
.bwp-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.bwp-form input,
.bwp-form select,
.bwp-form textarea {
  width: 100%;
  min-height: 62px;
  height: 62px;
  padding: 0 22px;
  border: 1px solid rgba(31,31,31,.08);
  border-radius: 20px;
  background: #f7f8f9;
  color: var(--text);
  font: 16px/22px Helvetica, Verdana, Arial, sans-serif;
  box-shadow: none;
}
.bwp-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image: linear-gradient(45deg, transparent 50%, rgba(31,31,31,.44) 50%), linear-gradient(135deg, rgba(31,31,31,.44) 50%, transparent 50%);
  background-position: calc(100% - 22px) 27px, calc(100% - 16px) 27px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.bwp-form textarea {
  height: auto;
  min-height: 164px;
  padding: 20px 22px;
  border-radius: 22px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: rgba(31,31,31,.38);
  opacity: 1;
}
button {
  min-height: 62px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font: 700 16px/19.2px Helvetica, Verdana, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(31,31,31,.14);
}
button:disabled {
  opacity: .72;
  cursor: wait;
}
.bwp-submit-content {
  display: inline-flex;
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bwp-back-top,
button.bwp-back-top,
body.bws-system-page button.bwp-back-top {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  left: auto;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  padding: 0;
  border: 1px solid rgba(31, 31, 31, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
  color: #1f1f1f;
  font: 700 22px/1 Helvetica, Verdana, Arial, sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease, box-shadow .18s ease;
}

.bwp-back-top.is-visible,
button.bwp-back-top.is-visible,
body.bws-system-page button.bwp-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bwp-back-top:focus-visible,
button.bwp-back-top:focus-visible,
body.bws-system-page button.bwp-back-top:focus-visible {
  outline: 2px solid rgba(31, 31, 31, .32);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .bwp-back-top:hover,
  button.bwp-back-top:hover,
  body.bws-system-page button.bwp-back-top:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bwp-back-top,
  button.bwp-back-top,
  body.bws-system-page button.bwp-back-top {
    transition: none;
    transform: none;
  }
}

.bws-system-hub {
  --hub-ink: #25272b;
  --hub-muted: #686f78;
  --hub-faint: #9aa2aa;
  --hub-line: #e7e8ea;
  --hub-panel: #fff;
  --hub-radius: 30px;
  --hub-shadow: 0 10px 28px rgba(18, 24, 32, .035), 0 1px 2px rgba(18, 24, 32, .035);
  margin: 0;
  overflow-x: clip;
  color: var(--hub-ink);
  background: #fff;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 17px;
  line-height: 29.24px;
}

.bws-system-hub a {
  color: inherit;
  text-decoration: none;
}

.bws-category-wrap,
.bws-system-catalog-wrap {
  width: min(var(--container), calc(100% - 48px));
  max-width: var(--container);
  margin: 0 auto;
}

.bws-system-catalog-wrap {
  padding: 72px 0 76px;
}

.bws-system-hub .bws-category-hero {
  position: relative;
  display: block;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--hub-line);
  background: #25272b;
}

.bws-system-hub .bws-category-hero-placeholder {
  width: 100%;
  height: 560px;
  background:
    linear-gradient(90deg, rgba(24, 28, 33, .10), rgba(24, 28, 33, .22)),
    linear-gradient(135deg, #2c3035 0%, #3d444b 48%, #24282d 100%);
}

.bws-system-hub .bws-category-hero-placeholder picture,
.bws-system-hub .bws-category-hero-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
}

.bws-system-hub .bws-category-hero-placeholder img {
  object-fit: cover;
  object-position: center;
}

.bws-system-hub .bws-category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 28, 33, .72) 0%, rgba(24, 28, 33, .54) 45%, rgba(24, 28, 33, .22) 100%);
  pointer-events: none;
}

.bws-system-hub .bws-category-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bws-system-hub .bws-category-hero-content .bws-category-wrap {
  display: flex;
  justify-content: center;
}

.bws-system-hub .bws-category-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  font-size: 50px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.bws-system-hub .bws-category-subtitle {
  max-width: 900px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 29.24px;
  font-weight: 400;
}

.bws-system-hub .bws-category-intro,
.bws-system-hub .bws-category-grid-section {
  margin: 0;
  padding: 0;
  background: transparent;
}

.bws-system-hub .bws-category-family-card,
.bws-system-hub .bws-category-card {
  border: 1px solid var(--hub-line);
  border-radius: var(--hub-radius);
  background: var(--hub-panel);
  box-shadow: var(--hub-shadow);
}

.bws-system-hub .bws-category-family-card {
  margin-bottom: 30px;
  padding: 34px;
}

.bws-category-code {
  color: var(--hub-faint);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.bws-system-hub .bws-category-family-card h2 {
  max-width: 850px;
  margin: 14px 0 12px;
  color: var(--hub-ink);
  font-size: 24px;
  line-height: 30px;
  font-weight: 900;
  letter-spacing: 0;
}

.bws-system-hub .bws-category-family-card p {
  max-width: 850px;
  margin: 0;
  color: var(--hub-muted);
  font-size: 16px;
  line-height: 27.52px;
}

.bws-category-family-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.bws-category-family-features div {
  padding-top: 18px;
  border-top: 1px solid var(--hub-line);
}

.bws-category-family-features strong,
.bws-category-family-features span {
  display: block;
}

.bws-category-family-features strong {
  margin-bottom: 6px;
  color: var(--hub-ink);
  font-size: 16px;
  line-height: 22.4px;
}

.bws-category-family-features span {
  color: var(--hub-muted);
  font-size: 16px;
  line-height: 27.52px;
}

.bws-category-section-head {
  margin: 0 0 24px;
}

.bws-category-section-head h2 {
  margin: 12px 0 0;
  color: var(--hub-ink);
  font-size: 44px;
  line-height: 53.68px;
  font-weight: 900;
  letter-spacing: 0;
}

.bws-category-section-head p {
  margin: 12px 0 0;
  color: var(--hub-muted);
  font-size: 17px;
  line-height: 29.24px;
}

.bws-category-section-head .bws-category-mobile-count {
  display: none;
}

.bws-system-hub .bws-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 32px;
  align-items: stretch;
}

.bws-system-hub .bws-category-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  transition: none;
}

.bws-system-hub .bws-category-card:not(.is-page-visible) {
  display: none;
}

.bws-system-hub .bws-category-card[hidden] {
  display: none !important;
}

.bws-system-hub .bws-category-card-image {
  display: grid;
  min-height: 318px;
  overflow: hidden;
  place-items: center;
  padding: 46px 42px 38px;
  border-bottom: 1px solid var(--hub-line);
  background: #fff;
  aspect-ratio: auto;
}

.bws-system-hub .bws-category-card-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
}

.bws-system-hub .bws-category-card-body {
  display: flex;
  position: relative;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 34px 34px 32px;
}

.bws-category-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.bws-category-pill {
  max-width: 58%;
  overflow: hidden;
  padding: 5px 12px;
  border: 1px solid var(--hub-line);
  border-radius: 999px;
  color: var(--hub-muted);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bws-system-hub .bws-category-card h3 {
  max-width: 460px;
  margin: 0;
  color: var(--hub-ink);
  font-size: 24px;
  line-height: 30px;
  font-weight: 900;
  letter-spacing: 0;
}

.bws-system-hub .bws-category-card p {
  flex: 1;
  max-width: 520px;
  margin: 16px 0 40px;
  color: var(--hub-muted);
  font-size: 16px;
  line-height: 27.52px;
}

.bws-category-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: auto;
  padding: 28px 0 54px;
  border-top: 1px solid var(--hub-line);
}

.bws-category-facts div {
  min-width: 0;
  color: var(--hub-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.bws-category-facts strong {
  display: block;
  min-height: 0;
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: var(--hub-ink);
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 800;
}

.bws-category-facts span {
  display: block;
  color: var(--hub-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.bws-system-hub .bws-category-card-action {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef0f3;
  color: #5f6671;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.bws-system-hub .bws-category-card-action span {
  display: block;
  margin-top: -2px;
}

.bws-system-hub .bws-category-card-action:hover,
.bws-system-hub .bws-category-card-action:focus-visible {
  background: #25272b;
  color: #fff;
  outline: none;
  transform: translateX(1px);
}

.bws-project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  justify-content: center;
  margin: 0 auto 58px;
}

.bws-project-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--hub-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hub-muted);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.bws-project-filter-button .bws-filter-label {
  display: block;
}

.bws-project-filter-button.is-active {
  --bw-card-hover-border: #24262a;
  border-color: #24262a;
  background: #24262a;
  color: #fff;
  z-index: 1;
}

.bws-system-filter {
  margin-bottom: 58px;
}

.bws-category-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 42px 0 0;
}

.bws-category-pagination[hidden] {
  display: none;
}

.bws-category-page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bws-category-page-link,
.bws-category-page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--hub-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hub-ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 20px rgba(18, 24, 32, .025);
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.bws-category-page-link {
  min-width: 108px;
  padding: 0 22px;
}

.bws-category-page-number.is-current {
  border-color: #25272b;
  background: #25272b;
  color: #fff;
}

.bws-category-page-link.is-disabled {
  color: var(--hub-faint);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .bws-category-page-link:not(.is-disabled):hover,
  .bws-category-page-link:not(.is-disabled):focus-visible,
  .bws-category-page-number:not(.is-current):hover,
  .bws-category-page-number:not(.is-current):focus-visible {
    border-color: #25272b;
    background: #25272b;
    color: #fff;
    box-shadow: 0 10px 24px rgba(18, 24, 32, .08);
  }
}

.bws-system-hub .bws-category-inquiry-section {
  width: 100vw;
  margin: 96px 0 0 calc(50% - 50vw);
  padding: 134px 0;
  border: 0;
  border-radius: 0;
  background: #f6f7f8;
  box-shadow: none;
}

.bws-system-hub .bws-inquiry-wrap {
  width: min(var(--container), calc(100% - 48px));
  max-width: var(--container);
  margin: 0 auto;
}

.bws-system-hub .bws-inquiry-card {
  display: block;
  width: 100%;
  max-width: none;
  padding: 52px 58px;
  border: 1px solid rgba(31, 31, 31, .06);
  border-radius: var(--hub-radius);
  background: #fff;
  box-shadow: none;
  text-align: left;
}

.bws-system-hub .bws-inquiry-card .bws-eyebrow {
  max-width: none;
  margin: 0;
  color: var(--hub-muted);
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: left;
}

.bws-system-hub .bws-inquiry-card h2 {
  max-width: 1094px;
  margin: 10px 0 0;
  color: #1f1f1f;
  font-size: 44px;
  line-height: 53.68px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
}

.bws-system-hub .bws-inquiry-card > p:not(.bws-eyebrow) {
  max-width: 1094px;
  margin: 22px 0 34px;
  color: var(--hub-muted);
  font-size: 17px;
  line-height: 29.24px;
  text-align: left;
}

.bws-system-hub .bwp-form {
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  margin: 0;
}

.bws-system-hub .bwp-form-message,
.bws-system-hub .bwp-form label,
.bws-system-hub .bwp-form button {
  grid-column: 1 / -1;
}

.bws-system-hub .bwp-form-message {
  display: none;
  min-height: 0;
  padding: 14px 18px;
  border: 1px solid rgba(31, 31, 31, .10);
  border-radius: 18px;
  background: rgba(246, 247, 248, .82);
  color: var(--hub-muted);
  font-size: 16px;
  line-height: 24px;
}

.bws-system-hub .bwp-form-message.is-pending,
.bws-system-hub .bwp-form-message.is-success,
.bws-system-hub .bwp-form-message.is-error {
  display: block;
}

.bws-system-hub .bwp-form-message.is-success {
  border-color: rgba(31, 120, 68, .20);
  background: rgba(235, 248, 240, .88);
  color: rgb(31, 96, 58);
}

.bws-system-hub .bwp-form-message.is-error {
  border-color: rgba(154, 55, 55, .22);
  background: rgba(252, 239, 239, .90);
  color: rgb(130, 45, 45);
}

.bws-system-hub .bwp-form label {
  display: block;
  min-width: 0;
  color: var(--hub-ink);
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 800;
}

.bws-system-hub .bwp-form label span {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.bws-system-hub .bwp-form input,
.bws-system-hub .bwp-form select,
.bws-system-hub .bwp-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(31, 31, 31, .12);
  border-radius: 18px;
  background: rgba(246, 247, 248, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  color: var(--hub-ink);
  font: 16px/22px Helvetica, Verdana, Arial, sans-serif;
}

.bws-system-hub .bwp-form textarea {
  min-height: 150px;
  padding: 18px 20px;
}

@media (max-width: 767px) {
  .bws-system-hub .bwp-form input,
  .bws-system-hub .bwp-form select,
  .bws-system-hub .bwp-form textarea {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  body.bws-system-page .bwp-form input:not([type="hidden"]),
  body.bws-system-page .bwp-form select,
  body.bws-system-page .bwp-form textarea {
    font-size: 16px !important;
    line-height: 22px !important;
  }
}

.bws-system-hub .bwp-form input::placeholder,
.bws-system-hub .bwp-form textarea::placeholder {
  color: rgba(31, 31, 31, .42);
  opacity: 1;
}

.bws-system-hub .bwp-form button {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: rgb(31, 31, 31);
  box-shadow: 0 18px 34px rgba(31, 31, 31, .14);
  color: #fff;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 600;
}

.bws-system-hub .bwp-submit-content,
.bws-system-hub .bwp-submit-content span {
  position: static;
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
  white-space: normal;
}

@media (max-width: 1020px) {
  .bws-system-hub .bws-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {

  .bws-system-hub {
    --hub-radius: 24px;
  }

  .bws-category-wrap,
  .bws-system-catalog-wrap {
    width: min(var(--mobile-container), calc(100% - (var(--mobile-page-padding) * 2)));
    max-width: var(--mobile-container);
  }

  .bws-system-catalog-wrap {
    padding: 56px 0;
  }

  .bws-system-hub .bws-category-hero {
    min-height: 500px;
  }

  .bws-system-hub .bws-category-hero-placeholder {
    height: 500px;
  }

  .bws-system-hub .bws-category-hero::after {
    background:
      linear-gradient(180deg, rgba(24, 28, 33, .02) 0%, rgba(24, 28, 33, .12) 42%, rgba(24, 28, 33, .58) 100%),
      linear-gradient(90deg, rgba(24, 28, 33, .52) 0%, rgba(24, 28, 33, .32) 58%, rgba(24, 28, 33, .10) 100%);
  }

  .bws-system-hub .bws-category-hero-content {
    align-items: center;
    padding-bottom: 0;
  }

  .bws-system-hub .bws-category-wrap {
    text-align: center;
  }

  .bws-system-hub .bws-category-hero h1 {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
    text-align: center;
  }

  .bws-system-hub .bws-category-subtitle {
    max-width: 340px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 25.6px;
    text-align: center;
  }

  .bws-system-hub .bws-category-family-card {
    width: 100%;
    margin: 0 0 26px;
    padding: 28px 24px;
    border-radius: var(--hub-radius);
    background: #f5f6f7;
    box-shadow: 0 8px 22px rgba(18, 24, 32, .03), 0 1px 2px rgba(18, 24, 32, .03);
  }

  .bws-system-hub .bws-category-family-card .bws-category-code {
    display: block;
    margin-bottom: 14px;
    color: var(--hub-faint);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .22em;
  }

  .bws-system-hub .bws-category-family-card h2,
  .bws-category-section-head h2 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 24.4px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .bws-system-hub .bws-category-family-card > p {
    margin: 0;
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 400;
  }

  .bws-system-hub .bws-category-family-card > p + p {
    margin-top: 0;
  }

  .bws-category-family-features,
  .bws-category-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bws-category-family-features {
    margin-top: 22px;
  }

  .bws-category-family-features div {
    padding-top: 18px;
  }

  .bws-category-family-features strong {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 800;
  }

  .bws-category-family-features span {
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 400;
  }

  .bws-system-hub .bws-category-grid {
    gap: 28px;
  }

  .bws-project-filter {
    position: sticky;
    top: 10px;
    z-index: 7;
    flex-wrap: nowrap;
    gap: 14px 16px;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100vw;
    margin: 0 0 48px calc(50% - 50vw);
    padding: 8px max(34px, calc(50vw - 32px)) 14px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
  }

  .bws-system-category-page .bws-system-filter {
    column-gap: 16px;
  }

  .bws-project-filter::-webkit-scrollbar {
    display: none;
  }

  .bws-project-filter-button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
    scroll-snap-align: center;
    transform-origin: center;
  }

  .bws-category-pagination {
    display: none;
  }

  .bws-system-category-page .bws-category-pagination:not([hidden]) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    width: min(354px, calc(100vw - 36px));
    margin: 34px auto 0;
  }

  .bws-system-category-page .bws-category-page-numbers {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0 2px 2px;
    scrollbar-width: none;
  }

  .bws-system-category-page .bws-category-page-numbers::-webkit-scrollbar {
    display: none;
  }

  .bws-system-category-page .bws-category-page-link {
    grid-row: 2;
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .bws-system-hub .bws-inquiry-wrap {
    width: min(var(--mobile-container), calc(100vw - (var(--mobile-page-padding) * 2)));
    max-width: var(--mobile-container);
  }

  .bws-category-section-head .bws-category-desktop-count {
    display: none;
  }

  .bws-category-section-head .bws-category-mobile-count {
    display: block;
  }

  .bws-system-hub .bws-category-card:not(.is-page-visible) {
    display: flex;
  }

  .bws-system-hub .bws-category-card-image {
    min-height: 246px;
    padding: 36px 24px 28px;
  }

  .bws-system-hub .bws-category-card-image img {
    max-height: 164px;
  }

  .bws-system-hub .bws-category-card-body {
    padding: 20px 22px 22px;
  }

  .bws-system-hub .bws-category-card h3 {
    font-size: 20px;
    line-height: 24.4px;
    font-weight: 800;
  }

  .bws-category-product-meta {
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .bws-category-code,
  .bws-category-pill {
    line-height: 1.2;
  }

  .bws-system-hub .bws-category-card p {
    margin: 10px 0 22px;
    font-size: 16px;
    line-height: 25.6px;
  }

  .bws-category-facts {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 0 46px;
  }

  .bws-category-facts div {
    font-size: 11px;
    line-height: 1.35;
  }

  .bws-category-facts strong {
    min-height: 0;
    margin-top: 6px;
    font-size: 16px;
    line-height: 22.4px;
  }

  .bws-category-facts span {
    font-size: 11px;
    line-height: 1.35;
  }

  .bws-system-hub .bws-category-card-action {
    right: 22px;
    bottom: 26px;
    width: 30px;
    height: 30px;
    font-size: 26px;
  }

  .bws-system-hub .bws-category-inquiry-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 48px 0;
    border: 0;
    border-radius: 0;
  }

  .bws-system-hub .bws-inquiry-card {
    width: 100%;
    padding: 28px 24px 30px;
    border-radius: var(--hub-radius);
    box-shadow: none;
  }

  .bws-system-hub .bws-inquiry-card h2 {
    font-size: 26px;
    line-height: 30.16px;
  }

  .bws-system-hub .bwp-form button {
    width: 100%;
    min-width: 0;
  }

}

/* Match the product category overview card typography. */
.bws-system-category-page .bws-system-hub .bws-category-family-card h2 {
  max-width: 850px;
  font-size: 24px;
  line-height: 30px;
}

.bws-system-category-page .bws-system-hub .bws-category-family-card > p {
  max-width: 850px;
  font-size: 16px;
  line-height: 27.52px;
}

@media (max-width: 700px) {
  .bws-system-category-page .bws-system-hub .bws-category-family-card h2 {
    max-width: 100%;
    font-size: 20px;
    line-height: 24.4px;
  }

  .bws-system-category-page .bws-system-hub .bws-category-family-card > p {
    max-width: 100%;
    font-size: 16px;
    line-height: 25.6px;
  }
}

/* BWSCATLF 0.1.36: keep form titles and descriptions centered consistently. */
.bws-system-hub .bws-inquiry-card .bws-eyebrow,
.bws-system-hub .bws-inquiry-card h2,
.bws-system-hub .bws-inquiry-card > p:not(.bws-eyebrow) {
  text-align: center !important;
}

.bws-system-hub .bws-inquiry-card h2,
.bws-system-hub .bws-inquiry-card > p:not(.bws-eyebrow) {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* BWFORM 2026-06-23 category: unify form typography and desktop submit hover. */
html body.bws-system-category-page .bws-inquiry-card h2 {
  max-width: 900px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  font-size: 44px !important;
  line-height: 53.68px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

html body.bws-system-category-page .bws-inquiry-card > p:not(.bws-eyebrow) {
  max-width: 900px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  font-size: 17px !important;
  line-height: 29.24px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  html body.bws-system-category-page .bws-inquiry-card h2 {
    font-size: 22px !important;
    line-height: 27px !important;
  }

  html body.bws-system-category-page .bws-inquiry-card > p:not(.bws-eyebrow) {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  html body.bws-system-category-page .bws-inquiry-card button,
  html body.bws-system-category-page .bws-inquiry-card [type="submit"] {
    font-size: 15px !important;
    line-height: 20px !important;
  }
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  html body.bws-system-category-page .bws-inquiry-card button,
  html body.bws-system-category-page .bws-inquiry-card [type="submit"] {
    transform: none !important;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease !important;
    will-change: auto !important;
  }

  html body.bws-system-category-page .bws-inquiry-card button:is(:hover, :focus-visible),
  html body.bws-system-category-page .bws-inquiry-card [type="submit"]:is(:hover, :focus-visible) {
    background: #2261b6 !important;
    border-color: #2261b6 !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
  }
}
/* End BWFORM 2026-06-23 category */
