.bsv1 {
  --bsv1-black: #07090b;
  --bsv1-ink: #16191e;
  --bsv1-muted: #68717e;
  --bsv1-line: #ccd2da;
  --bsv1-paper: #fff;
  --bsv1-wash: #f2f4f6;
  --bsv1-blue: #3164cf;
  --bsv1-blue-dark: #214da8;
  --bsv1-page: 1520px;
  color: var(--bsv1-ink);
  background: var(--bsv1-paper);
  -webkit-font-smoothing: antialiased;
}

.bsv1,
.bsv1 * {
  box-sizing: border-box;
}

.bsv1 img {
  display: block;
  max-width: 100%;
}

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

.bsv1 button,
.bsv1 a {
  -webkit-tap-highlight-color: transparent;
}

.bsv1 button {
  font: inherit;
}

.bsv1-width {
  width: min(calc(100% - 64px), var(--bsv1-page));
  margin-inline: auto;
}

.bsv1-hero {
  position: relative;
  min-height: 540px;
  height: min(68vh, 650px);
  overflow: hidden;
  color: var(--bsv1-ink);
  background: #fff;
}

.bsv1-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.bsv1-hero-content {
  position: relative;
  height: 100%;
  padding-block: 34px 46px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.bsv1-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #6e7783;
  font-size: 13px;
}

.bsv1-breadcrumbs a:hover,
.bsv1-breadcrumbs a:focus-visible {
  color: var(--bsv1-blue-dark);
}

.bsv1-hero-copy {
  align-self: center;
  max-width: 610px;
}

.bsv1-eyebrow,
.bsv1-rail-kicker {
  margin: 0 0 18px;
  color: var(--bsv1-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bsv1-hero-copy .bsv1-eyebrow {
  color: var(--bsv1-blue);
}

.bsv1-hero-copy h1 {
  max-width: 600px;
  margin: 0;
  color: var(--bsv1-ink);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.05;
}

.bsv1-hero-copy > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--bsv1-muted);
  font-size: 19px;
  line-height: 1.6;
}

.bsv1-hero-facts {
  width: min(100%, 860px);
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--bsv1-line);
}

.bsv1-hero-facts div {
  padding: 19px 24px 0 0;
  border-right: 1px solid var(--bsv1-line);
}

.bsv1-hero-facts div + div {
  padding-left: 24px;
}

.bsv1-hero-facts div:last-child {
  border-right: 0;
}

.bsv1-hero-facts dt {
  margin-bottom: 7px;
  color: var(--bsv1-muted);
  font-size: 12px;
}

.bsv1-hero-facts dd {
  margin: 0;
  color: var(--bsv1-ink);
  font-size: 19px;
  font-weight: 700;
}

.bsv1-product-band {
  padding: 88px 0 0;
  background: var(--bsv1-wash);
}

.bsv1-product-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 52px;
}

.bsv1-model-rail {
  position: static;
  padding-bottom: 32px;
}

.bsv1-model-rail h2 {
  margin: 0 0 18px;
  color: var(--bsv1-ink);
  font-size: 23px;
  font-weight: 600;
}

.bsv1-rail-kicker {
  margin-bottom: 9px;
}

.bsv1-model-list {
  border-top: 1px solid var(--bsv1-line);
}

.bsv1-model-option {
  position: relative;
  width: 100%;
  min-height: 92px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid var(--bsv1-line);
  color: #444c56;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, background 160ms ease;
}

.bsv1-model-option::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--bsv1-blue);
  transform: scaleY(0);
  transition: transform 160ms ease;
}

.bsv1-model-option:hover,
.bsv1-model-option:focus-visible,
.bsv1-model-option.is-current {
  color: var(--bsv1-ink);
  background: #fff;
}

.bsv1-model-option.is-current::before {
  transform: scaleY(1);
}

.bsv1-model-thumb {
  width: 66px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}

.bsv1-model-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.bsv1-model-option strong,
.bsv1-model-option small {
  display: block;
}

.bsv1-model-option strong {
  margin-bottom: 8px;
  font-size: 16px;
}

.bsv1-model-option small {
  color: #747d89;
  font-size: 12px;
  line-height: 1.4;
}

.bsv1-main {
  min-width: 0;
}

.bsv1-product {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 54px;
  padding-bottom: 88px;
}

.bsv1-product-media {
  min-width: 0;
}

.bsv1-image-stage {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d5dae1;
  border-radius: 8px 8px 0 0;
}

.bsv1-image-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 140ms ease;
}

.bsv1-image-stage img.is-changing {
  opacity: 0.35;
}

.bsv1-view-switch {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  border: 1px solid var(--bsv1-line);
  border-top: 0;
  background: #e8ebef;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.bsv1-view-option {
  min-width: 0;
  padding: 8px 12px 8px 8px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #5f6874;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--bsv1-line);
  border-bottom: 1px solid var(--bsv1-line);
  cursor: pointer;
}

.bsv1-view-option:last-child {
  border-right: 0;
}

.bsv1-view-option:hover,
.bsv1-view-option:focus-visible,
.bsv1-view-option.is-current {
  color: #fff;
  background: var(--bsv1-ink);
}

.bsv1-view-option img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.bsv1-view-option span {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.bsv1-product-copy {
  align-self: center;
  padding: 18px 0;
}

.bsv1-product-copy h2 {
  margin: 0;
  color: var(--bsv1-ink);
  font-size: 50px;
  font-weight: 400;
}

.bsv1-product-copy > p:not(.bsv1-eyebrow) {
  margin: 24px 0 30px;
  color: var(--bsv1-muted);
  font-size: 16px;
  line-height: 1.7;
}

.bsv1-model-specs {
  margin: 0 0 28px;
  border-top: 1px solid var(--bsv1-line);
}

.bsv1-model-specs div {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(140px, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--bsv1-line);
}

.bsv1-model-specs dt {
  color: var(--bsv1-muted);
  font-size: 14px;
}

.bsv1-model-specs dd {
  margin: 0;
  color: var(--bsv1-ink);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.bsv1-text-link {
  display: inline-flex;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--bsv1-ink);
  font-size: 16px;
  font-weight: 700;
}

.bsv1-text-link:hover,
.bsv1-text-link:focus-visible {
  color: var(--bsv1-blue-dark);
  border-color: var(--bsv1-blue-dark);
}

.bsv1-technical,
.bsv1-family-range,
.bsv1-support {
  padding: 82px 0;
  border-top: 1px solid var(--bsv1-line);
}

.bsv1-section-heading,
.bsv1-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: end;
}

.bsv1-section-heading h2,
.bsv1-support h2 {
  max-width: 720px;
  margin: 0;
  color: var(--bsv1-ink);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.14;
}

.bsv1-section-heading > p,
.bsv1-support > div:last-child > p {
  margin: 0;
  color: var(--bsv1-muted);
  font-size: 15px;
  line-height: 1.7;
}

.bsv1-technical-grid {
  margin: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--bsv1-line);
  border-left: 1px solid var(--bsv1-line);
}

.bsv1-technical-grid div {
  min-height: 116px;
  padding: 21px 18px;
  border-right: 1px solid var(--bsv1-line);
  border-bottom: 1px solid var(--bsv1-line);
  background: rgba(255, 255, 255, 0.48);
}

.bsv1-technical-grid dt {
  margin-bottom: 12px;
  color: var(--bsv1-muted);
  font-size: 12px;
}

.bsv1-technical-grid dd {
  margin: 0;
  color: var(--bsv1-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.bsv1-family-range-visual {
  position: relative;
  margin: 52px 0 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--bsv1-line);
  border-radius: 8px;
}

.bsv1-family-range-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms ease;
}

.bsv1-family-range-visual:hover img {
  transform: scale(1.015);
}

.bsv1-family-range-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 13px;
  color: #fff;
  background: rgba(9, 11, 14, 0.76);
  font-size: 13px;
}

.bsv1-support {
  padding-bottom: 96px;
}

.bsv1-support-button {
  display: inline-grid;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 22px;
  place-items: center;
  color: #fff;
  background: var(--bsv1-blue);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.bsv1-support-button:hover,
.bsv1-support-button:focus-visible {
  color: #fff;
  background: var(--bsv1-blue-dark);
}

.bsv1.bsv1-motion-ready [data-bsv1-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--bsv1-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.bsv1.bsv1-motion-ready [data-bsv1-reveal="media"] {
  transform: translate3d(0, 36px, 0);
}

.bsv1.bsv1-motion-ready [data-bsv1-reveal="feature"] {
  transform: translate3d(0, 38px, 0) scale(0.99);
  transition-duration: 760ms, 920ms;
}

.bsv1.bsv1-motion-ready [data-bsv1-reveal="feature"] [data-bsv1-reveal-media] {
  opacity: 0.82;
  filter: blur(2px) saturate(0.92);
  transform: scale(1.012);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--bsv1-reveal-delay, 0ms);
}

.bsv1.bsv1-motion-ready [data-bsv1-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.bsv1.bsv1-motion-ready [data-bsv1-reveal="feature"].is-visible [data-bsv1-reveal-media] {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.bsv1.bsv1-motion-ready .bsv1-hero-image {
  animation: bsv1-hero-visual-in 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes bsv1-hero-visual-in {
  from {
    opacity: 0.78;
    filter: brightness(0.86) saturate(0.9);
    transform: scale(1.012);
  }

  to {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
}

@media (max-width: 1260px) {
  .bsv1-product-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 36px;
  }

  .bsv1-product {
    gap: 34px;
  }

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

@media (max-width: 980px) {
  .bsv1-hero {
    height: 620px;
    max-height: none;
  }

  .bsv1-hero-copy h1 {
    font-size: 48px;
  }

  .bsv1-product-shell {
    grid-template-columns: 1fr;
  }

  .bsv1-model-rail {
    position: static;
    padding-bottom: 0;
  }

  .bsv1-model-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--bsv1-line);
  }

  .bsv1-model-option {
    min-height: 98px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    border-right: 1px solid var(--bsv1-line);
  }

  .bsv1-model-thumb {
    width: 58px;
  }

  .bsv1-product {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  }

  .bsv1-product-copy h2 {
    font-size: 42px;
  }

  .bsv1-section-heading,
  .bsv1-support {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .bsv1-width {
    width: min(calc(100% - 32px), var(--bsv1-page));
  }

  .bsv1-hero {
    min-height: 560px;
    height: min(76svh, 620px);
  }

  .bsv1-hero-image {
    inset: 0 0 auto;
    width: 100%;
    height: 54%;
    object-position: center top;
  }

  .bsv1-hero-content {
    padding-block: 24px 28px;
  }

  .bsv1-hero-copy {
    align-self: end;
    padding-bottom: 28px;
    max-width: 100%;
  }

  .bsv1-hero-copy h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .bsv1-hero-copy > p:last-child {
    margin-top: 18px;
    font-size: 16px;
  }

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

  .bsv1-hero-facts div {
    padding: 14px 12px 12px 0;
    border-bottom: 1px solid var(--bsv1-line);
  }

  .bsv1-hero-facts div + div {
    padding-left: 12px;
  }

  .bsv1-hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .bsv1-product-band {
    padding-top: 56px;
  }

  .bsv1-product-shell {
    gap: 40px;
  }

  .bsv1-model-rail h2 {
    font-size: 21px;
  }

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

  .bsv1-model-option {
    min-height: 138px;
    padding: 8px 6px 10px;
    grid-template-columns: 1fr;
    grid-template-rows: 74px auto;
    align-content: start;
    gap: 7px;
    text-align: center;
  }

  .bsv1-model-option::before {
    inset: 0 0 auto;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }

  .bsv1-model-option.is-current::before {
    transform: scaleX(1);
  }

  .bsv1-model-thumb {
    width: 100%;
    height: 74px;
    aspect-ratio: auto;
  }

  .bsv1-model-option strong {
    margin-bottom: 3px;
    font-size: 13px;
  }

  .bsv1-model-option small {
    font-size: 10px;
  }

  .bsv1-product {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 64px;
  }

  .bsv1-view-switch {
    min-height: 76px;
    grid-template-columns: 1fr;
  }

  .bsv1-view-option {
    padding: 7px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
  }

  .bsv1-view-option img {
    width: 42px;
    height: 42px;
  }

  .bsv1-view-option span {
    font-size: 11px;
  }

  .bsv1-product-copy {
    padding: 0;
  }

  .bsv1-product-copy h2 {
    font-size: 38px;
  }

  .bsv1-model-specs div {
    grid-template-columns: 1fr 1fr;
  }

  .bsv1-technical,
  .bsv1-family-range,
  .bsv1-support {
    padding: 64px 0;
  }

  .bsv1-section-heading h2,
  .bsv1-support h2 {
    font-size: 32px;
  }

  .bsv1-technical-grid {
    margin-top: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsv1-technical-grid div {
    min-height: 108px;
    padding: 17px 14px;
  }

  .bsv1-family-range-visual {
    margin-top: 38px;
  }

  .bsv1-family-range-visual img {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bsv1 *,
  .bsv1 *::before,
  .bsv1 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .bsv1.bsv1-motion-ready [data-bsv1-reveal],
  .bsv1.bsv1-motion-ready [data-bsv1-reveal="feature"] [data-bsv1-reveal-media] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .bsv1.bsv1-motion-ready .bsv1-hero-image {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}
