:root {
  color-scheme: light;
  --bc-ink: #32106f;
  --bc-muted: #77717f;
  --bc-panel: #ffffff;
  --bc-line: #eee8f5;
  --bc-accent: #32106f;
  --bc-accent-soft: #9a6adf;
  --bc-secondary: #b997e8;
  --bc-bg: #f4f2ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bc-ink);
  background: var(--bc-bg);
}

.component-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.component-nav {
  position: sticky;
  top: 0;
  min-height: 100vh;
  align-self: start;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 16px;
  border-right: 1px solid rgba(50, 16, 111, 0.08);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.component-nav-title {
  margin: 0 0 8px;
  color: var(--bc-muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.component-nav-item {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: var(--bc-muted);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.component-nav-item:hover,
.component-nav-item.is-active {
  background: #ffffff;
  color: var(--bc-ink);
  box-shadow: 0 8px 24px rgba(50, 16, 111, 0.08);
}

.component-stage {
  position: relative;
  min-height: 100vh;
  display: block;
  padding: 48px 20px;
}

.component-shell:has([data-component-page="product-animation"].is-active) .component-stage {
  padding: 0;
  background: #f5f5f5;
}

.component-shell:has([data-component-page="buy-box"].is-active) .component-stage {
  background: #ffffff;
  overflow: hidden;
}

.component-shell:has([data-component-page="buy-box"].is-active) .component-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: calc((755px * var(--buy-box-stage-scale, 1)) + 48px);
  background:
    url("./images/buy-box-main-bg.png") center calc((-244px * var(--buy-box-stage-scale, 1)) + 48px) / calc(1920px * var(--buy-box-stage-scale, 1)) auto no-repeat,
    #ffffff;
  pointer-events: none;
}

.component-page {
  display: grid;
  justify-items: center;
  gap: 44px;
}

.component-page[hidden] {
  display: none;
}

.component-page[data-component-page="buy-box"] {
  background: #ffffff;
}

.bc-chart-section {
  width: min(860px, 100%);
}

.product-animation-section {
  width: min(1600px, 100%);
}

.sd-map-section {
  width: min(1600px, 100%);
}

.sd-hero-section {
  width: min(1920px, 100%);
}

.buy-box-section {
  position: relative;
  width: 100%;
  max-width: 1600px;
  --buy-box-scale: 1;
  overflow: visible;
  background: #ffffff;
  isolation: isolate;
}

.buy-box-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: calc(755px * var(--buy-box-scale, 1));
  background:
    url("./images/buy-box-main-bg.png") center calc(-244px * var(--buy-box-scale, 1)) / calc(1920px * var(--buy-box-scale, 1)) auto no-repeat,
    #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
}

.buy-box-figma-perfect {
  display: none;
  width: 100%;
  height: auto;
}

.buy-box-figma-perfect + .buy-box-layout {
  display: grid;
}

.buy-box-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1007px 513px;
  gap: 80px;
  align-items: start;
  width: 1600px;
  transform: scale(var(--buy-box-scale));
  transform-origin: top left;
}

.buy-box-media {
  min-width: 0;
}

.buy-box-main-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1007 / 755;
  border-radius: 0;
  background: transparent;
}

.buy-box-main-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 245px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 72%);
  pointer-events: none;
}

.buy-box-main-image > img {
  position: absolute;
  z-index: 2;
  object-fit: contain;
}

.buy-box-product-layer {
  display: block;
  pointer-events: none;
}

.buy-box-product-black {
  left: 34.1%;
  top: 28.95%;
  width: 62.45%;
}

.buy-box-product-white {
  left: 1.28%;
  top: 24.36%;
  width: 73.36%;
}

.buy-box-product-aligner {
  left: 65.35%;
  top: 60.25%;
  width: 20.28%;
}

.buy-box-tech-icons {
  position: absolute;
  left: 0.14%;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}

.buy-box-tech-icons span {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 81px;
}

.buy-box-tech-icons img {
  width: 73.5px;
  height: 72px;
  object-fit: contain;
}

.buy-box-tech-icons strong {
  padding-top: 34px;
  color: #3f2f60;
  font-size: 24px;
  line-height: 1;
}

.buy-box-feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
  column-gap: 8px;
  margin: 64px auto;
  max-width: 820px;
}

.buy-box-feature-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px 0 8px;
  border: 1px solid #d6e5e2;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.buy-box-feature-pills span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  border-radius: 50%;
  background: #93d1cf;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

.buy-box-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.buy-box-gallery img {
  width: 100%;
  aspect-ratio: 498.5 / 373.875;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f3ef;
}

.buy-box-panel {
  position: sticky;
  top: 24px;
  min-width: 0;
  padding-top: 0;
  color: #111111;
}

.buy-box-title-block h1 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.buy-box-title-block h1 strong {
  font-weight: 700;
}

.buy-box-title-block p {
  margin: 0 0 29px;
  color: #83879a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.buy-box-price-row,
.buy-box-footer-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #111111;
}

.buy-box-price-row strong,
.buy-box-footer-price strong {
  font-size: 20px;
  line-height: 1.45;
}

.buy-box-price-row s,
.buy-box-footer-price s {
  color: #1f1f1f;
  font-size: 18px;
  line-height: 1.45;
}

.buy-box-price-row span,
.buy-box-footer-price span {
  padding: 6px 8px;
  border-radius: 4px;
  background: #ff7f83;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.buy-box-pay-note {
  margin: 9px 0 24px;
  color: #111111;
  font-size: 11px;
  font-weight: 600;
  line-height: 24px;
}

.buy-box-pay-note b {
  display: inline-flex;
  align-items: center;
  height: 24px;
  margin-left: 5px;
  padding: 0 7px;
  border-radius: 3px;
  background: #513579;
  color: #ffffff;
  font-size: 8px;
}

.buy-box-card-pay-note {
  margin: 8px 32px 0;
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
}

.buy-box-card-pay-note b {
  display: inline-flex;
  align-items: center;
  height: 24px;
  margin-left: 5px;
  padding: 0 7px;
  border-radius: 3px;
  background: #513579;
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
}

.buy-box-card-pay-note b:nth-of-type(2) {
  background: #ffb3ca;
  color: #111111;
}

.buy-box-card-pay-note b:nth-of-type(3) {
  background: #f5f7ff;
  color: #173b87;
  box-shadow: inset 0 0 0 1px #dbe2f2;
}

.buy-box-rating {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dedede;
  color: #111111;
}

.buy-box-awards {
  display: block;
  width: 187.5px;
  height: 72px;
  object-fit: contain;
}

.buy-box-rating-score {
  display: grid;
  grid-template-columns: auto;
  justify-items: end;
  gap: 0;
}

.buy-box-rating-score span:first-child {
  font-size: 16px;
  line-height: 1.2;
}

.buy-box-rating-score strong {
  font-size: 30px;
  line-height: 1;
}

.buy-box-rating-score span:last-child {
  color: #111111;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.1;
}

.buy-box-quote {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  margin-bottom: 24px;
}

.buy-box-quote p {
  max-width: 250px;
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.buy-box-clean-stage {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 282px;
  height: 48px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
}

.buy-box-clean-stage::before {
  content: "";
  position: absolute;
  inset: 4px 24px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 159, 227, 0), rgba(0, 159, 227, 0.06), rgba(129, 88, 213, 0));
  opacity: 0;
  transform: scaleX(0.7);
}

.buy-box-clean-stage.is-active::before {
  animation: buy-box-clean-breath 2.8s ease-in-out infinite;
}

.buy-box-clean-ripple,
.buy-box-clean-sweep {
  display: none;
  position: absolute;
  pointer-events: none;
}

.buy-box-clean-ripple {
  left: 42px;
  top: 50%;
  z-index: -1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 159, 227, 0.22);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
}

.buy-box-clean-sweep {
  inset: 6px 22px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(0, 159, 227, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-70%) skewX(-18deg);
}

.buy-box-clean-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #009fe3;
  will-change: transform, opacity;
}

.buy-box-clean-icon svg {
  display: block;
  width: 32px;
  height: 32px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buy-box-clean-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.buy-box-clean-label {
  display: block;
  min-width: 155px;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  will-change: clip-path, transform;
}

@keyframes buy-box-clean-breath {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.75);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.buy-box-card {
  overflow: hidden;
  margin-top: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.08);
}

.buy-box-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border-bottom: 1px solid #dedede;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
}

.buy-box-card-header img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.buy-box-fieldset {
  min-width: 0;
  margin: 0;
  padding: 24px 32px 0;
  border: 0;
}

.buy-box-fieldset legend {
  display: block;
  float: left;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}

.buy-box-swatches {
  clear: both;
  display: grid;
  grid-template-columns: 128.666px 128.666px 1fr;
  gap: 8px;
}

.buy-box-swatches label,
.buy-box-bundles label {
  cursor: pointer;
}

.buy-box-swatches label {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 104px;
  align-content: center;
  padding: 24px 8px;
  border: 1px solid #dedede;
  border-radius: 6px;
  color: #111111;
  font-size: 12px;
  font-weight: 600;
}

.buy-box-swatches input,
.buy-box-bundles input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.buy-box-swatches .is-selected,
.buy-box-bundles .is-selected {
  border-color: #8b5cf6;
  box-shadow: inset 0 0 0 1px #8b5cf6;
}

.buy-box-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.buy-box-swatch-white {
  border: 1px solid #dedede;
  background: #ffffff;
}

.buy-box-swatch-black {
  background: #3a3940;
}

.buy-box-bundles {
  clear: both;
  display: grid;
  gap: 16px;
}

.buy-box-bundles label {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 156px;
  align-items: center;
  gap: 0;
  min-height: 104px;
  padding: 8px;
  border: 1px solid #dedede;
  border-radius: 6px;
  color: #111111;
}

.buy-box-bundles em {
  position: absolute;
  top: -12px;
  right: 13px;
  z-index: 1;
  height: 24px;
  padding: 0 8px;
  border-radius: 3px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 0 0 1px #dedede;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.buy-box-bundles .is-selected em {
  background: #8b5cf6;
  color: #ffffff;
  box-shadow: none;
}

.buy-box-bundles img {
  width: 118px;
  height: 88.5px;
  object-fit: contain;
}

.buy-box-bundle-art {
  position: relative;
  display: block;
  width: 118px;
  height: 88.5px;
}

.buy-box-bundle-art img {
  position: absolute;
  height: auto;
}

.buy-box-bundle-art img:first-child {
  left: 0;
  bottom: 4px;
  width: 56px;
}

.buy-box-bundle-art img:nth-child(2) {
  right: 0;
  top: 4px;
  width: 78px;
}

.buy-box-bundle-art-double img:nth-child(2) {
  right: 22px;
}

.buy-box-bundle-art-double img:nth-child(3) {
  right: 0;
  top: 4px;
  width: 78px;
}

.buy-box-bundles small,
.buy-box-bundle-price s {
  display: block;
  color: #111111;
  font-size: 12px;
  font-weight: 400;
}

.buy-box-bundles label > span:not(.buy-box-bundle-price) {
  padding-left: 8px;
}

.buy-box-bundles label > .buy-box-bundle-art {
  padding-left: 0;
}

.buy-box-bundles label > span:not(.buy-box-bundle-price) strong {
  display: block;
  font-size: 16px;
  line-height: 25px;
}

.buy-box-bundle-price {
  align-self: center;
  text-align: right;
}

.buy-box-bundle-price strong {
  display: block;
  font-size: 16px;
  line-height: 22px;
}

.buy-box-divider {
  height: 1px;
  margin: 16px 32px 16px;
  background: #dedede;
}

.buy-box-divider-cta {
  margin-top: 16px;
  margin-bottom: 16px;
}

.buy-box-footer-price,
.buy-box-cta-row {
  padding: 0 32px;
}

.buy-box-cta-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  margin: 16px 0 32px;
}

.buy-box-stepper {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  height: 56px;
  border: 1px solid #bdb7c9;
  border-radius: 999px;
  color: #3f2f60;
  text-align: center;
}

.buy-box-stepper button,
.buy-box-cta {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.buy-box-stepper button {
  background: transparent;
  color: inherit;
  font-size: 1.15rem;
}

.buy-box-cta {
  border-radius: 999px;
  background: #4b3678;
  color: #ffffff;
  font-weight: 600;
}

.buy-box-cta::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  vertical-align: -4px;
  background:
    linear-gradient(#ffffff, #ffffff) 5px 7px / 10px 2px no-repeat,
    linear-gradient(#ffffff, #ffffff) 4px 13px / 10px 2px no-repeat;
  border: 2px solid #ffffff;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
  opacity: 0.95;
}

.buy-box-tax {
  margin: 32px 0 0;
  color: #111111;
  font-size: 12px;
  text-align: center;
}

.buy-box-tax a,
.buy-box-klarna a {
  color: inherit;
}

.buy-box-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  color: #111111;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.buy-box-trust-row span::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  margin-inline: auto;
  background: center / contain no-repeat url("./images/buy-box-icon-ship.svg");
}

.buy-box-trust-row span:nth-child(1)::before {
  background-image: url("./images/buy-box-icon-van.svg");
}

.buy-box-trust-row span:nth-child(3)::before {
  background-image: url("./images/buy-box-icon-return.svg");
}

.buy-box-trust-row span:nth-child(4)::before {
  background-image: url("./images/buy-box-icon-warranty.svg");
}

.buy-box-klarna {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 16px;
  border: 1px solid #dedede;
  border-radius: 6px;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.buy-box-klarna strong {
  padding: 5px 7px;
  border-radius: 4px;
  background: #ffb3ca;
}

.buy-box-payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.buy-box-payment-icons span,
.buy-box-payment-icons img {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 24px;
  background: #ffffff;
  color: #3f2f60;
  font-size: 0.58rem;
  font-weight: 700;
}

.buy-box-payment-icons span {
  border: 1px solid #dedede;
  border-radius: 3px;
}

.buy-box-accordions {
  margin-top: 24px;
  border-top: 1px solid #dedede;
}

.buy-box-accordions details {
  border-bottom: 1px solid #dedede;
  color: #111111;
}

.buy-box-accordions summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.buy-box-accordions summary::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-right: 16px;
  background: center / contain no-repeat var(--buy-box-accordion-icon);
}

.buy-box-accordions summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.4rem;
  line-height: 1;
}

.buy-box-accordions details[open] summary::after {
  content: "-";
}

.buy-box-accordions p {
  margin: -4px 0 18px;
  color: #5d5180;
  font-size: 0.9rem;
  line-height: 1.45;
}

.buy-box-stories {
  margin-top: 16px;
  overflow: hidden;
}

.buy-box-stories h2 {
  margin: 0 0 24px;
  color: #111111;
  font-size: 16px;
  line-height: 22px;
}

.buy-box-stories img {
  display: block;
  width: 513px;
  max-width: none;
  height: 224px;
  object-fit: cover;
  border-radius: 8px;
}

.sd-map-container {
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px) clamp(24px, 5vw, 64px) clamp(36px, 5vw, 64px);
  border: 1px solid rgba(50, 16, 111, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(50, 16, 111, 0.08);
}

.sd-map-copy {
  max-width: 792px;
  margin: 0 auto;
  text-align: center;
}

.sd-map-kicker {
  display: block;
  margin: 0 0 6px;
  color: #3f2f60;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

.sd-map-copy h1 {
  margin: 0 0 8px;
  color: #3f2f60;
  font-size: clamp(2.35rem, 4.1vw, 3.5rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.sd-map-copy p {
  margin: 0;
  color: #686b82;
  font-size: clamp(1rem, 1.55vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.4;
}

.sd-map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1455 / 666;
  margin: clamp(42px, 6vw, 96px) auto 0;
}

.sd-map-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sd-map-pin {
  position: absolute;
  left: var(--sd-pin-x);
  top: var(--sd-pin-y);
  z-index: 1;
  width: 0;
  height: 0;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.18));
  transform-origin: center;
}

.sd-map-pin::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #8f61d5;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 54px rgba(50, 16, 111, 0.22);
}

.sd-map-pin.is-pulsing::before {
  animation: sd-map-pin-pulse 2.2s ease-out infinite;
  animation-delay: var(--sd-map-pulse-delay, 0s);
}

.sd-map-pin::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 19px;
  height: 14px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.sd-map-pin span {
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 1;
  display: block;
  padding: 5px 12px;
  border-radius: 10px;
  background: #ffffff;
  color: #3f2f60;
  font-size: clamp(0.64rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transform: translateX(-50%);
}

.sd-map-pin-below::after {
  top: 12px;
  bottom: auto;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.sd-map-pin-below span {
  top: 24px;
  bottom: auto;
}

.sd-map-bullets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: clamp(48px, 7vw, 96px);
}

.sd-map-bullet {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 0 16px;
  text-align: center;
}

.sd-map-bullet-icon {
  width: 72px;
  height: 72px;
  background: #aab5bc;
}

.sd-map-bullet h2 {
  margin: 0;
  color: #3f2f60;
  font-size: clamp(1rem, 1.35vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.4;
}

.sd-map-bullet p {
  margin: 0;
  color: #686b82;
  font-size: clamp(0.9rem, 1.15vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

.sd-hero {
  --sd-hero-ring-x: 50%;
  --sd-hero-ring-y: 62.65%;
  --sd-hero-product-anchor-x: 48.75%;
  position: relative;
  min-height: clamp(760px, 67.5vw, 945px);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #f1f0fd 0%, rgba(255, 255, 255, 0) 92%),
    #ffffff;
  isolation: isolate;
}

.sd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sd-hero-gradient-wash {
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: 0;
  width: min(76vw, 880px);
  aspect-ratio: 1.45;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 46% 52%, rgba(132, 92, 207, 0.34) 0%, rgba(132, 92, 207, 0.18) 30%, rgba(132, 92, 207, 0) 62%),
    radial-gradient(ellipse at 66% 64%, rgba(243, 154, 214, 0.28) 0%, rgba(243, 154, 214, 0.12) 34%, rgba(243, 154, 214, 0) 66%);
  filter: blur(22px);
  opacity: 0.58;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: opacity, transform;
}

.sd-hero-gradient-sheen {
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: 0;
  width: min(84vw, 940px);
  height: min(30vw, 340px);
  border-radius: 999px;
  background:
    linear-gradient(105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(180, 139, 239, 0) 18%,
      rgba(155, 113, 229, 0.24) 38%,
      rgba(244, 174, 224, 0.2) 54%,
      rgba(255, 255, 255, 0) 78%);
  filter: blur(34px);
  opacity: 0.46;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%) rotate(-8deg);
  pointer-events: none;
  will-change: opacity, transform;
}

.sd-hero-glow {
  position: absolute;
  left: var(--sd-hero-ring-x);
  top: var(--sd-hero-ring-y);
  z-index: 0;
  width: min(52vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 89, 249, 0.43) 0%, rgba(132, 92, 207, 0.23) 34%, rgba(243, 154, 214, 0) 72%);
  transform: translate(-50%, -50%);
  opacity: 0.9;
  will-change: opacity, transform;
}

.sd-hero-ambient {
  position: absolute;
  z-index: 0;
  display: block;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  will-change: opacity, transform;
}

.sd-hero-ambient-one {
  left: 38%;
  top: 59%;
  width: min(38vw, 500px);
  aspect-ratio: 1.2;
  background: radial-gradient(ellipse, rgba(156, 121, 232, 0.42) 0%, rgba(156, 121, 232, 0.16) 42%, rgba(156, 121, 232, 0) 72%);
  transform: translate(-50%, -50%);
}

.sd-hero-ambient-two {
  left: 62%;
  top: 68%;
  width: min(34vw, 460px);
  aspect-ratio: 1.3;
  background: radial-gradient(ellipse, rgba(243, 154, 214, 0.36) 0%, rgba(176, 139, 236, 0.16) 44%, rgba(243, 154, 214, 0) 74%);
  transform: translate(-50%, -50%);
}

.sd-hero-rings {
  position: absolute;
  left: var(--sd-hero-ring-x);
  top: var(--sd-hero-ring-y);
  z-index: 1;
  width: 2466px;
  height: 2466px;
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  filter: brightness(1.08) contrast(0.92) blur(0.2px);
  image-rendering: auto;
  will-change: opacity, transform;
}

.sd-hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(64px, 8vw, 96px);
  text-align: center;
}

.sd-hero-kicker {
  display: block;
  margin: 0 0 8px;
  color: #845ccf;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.sd-hero-copy h1 {
  margin: 0;
  color: #3f2f60;
  font-size: clamp(2.3rem, 4.15vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.sd-hero-copy p {
  width: min(760px, 100%);
  margin: 24px auto 0;
  color: #5d4093;
  font-size: clamp(1.05rem, 1.55vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.4;
}

.sd-hero-products {
  position: absolute;
  left: var(--sd-hero-ring-x);
  bottom: 0;
  z-index: 3;
  width: min(1427px, 134%);
  aspect-ratio: 1427 / 692;
  transform: translateX(calc(-1 * var(--sd-hero-product-anchor-x)));
}

.sd-hero-product-composite {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 48.75% 62.65%;
  filter: drop-shadow(0 30px 45px rgba(63, 47, 96, 0.08));
  will-change: transform, filter;
}

@keyframes sd-map-pin-pulse {
  0% {
    box-shadow:
      0 20px 54px rgba(50, 16, 111, 0.22),
      0 0 0 0 rgba(143, 97, 213, 0.42);
  }

  70% {
    box-shadow:
      0 20px 54px rgba(50, 16, 111, 0.22),
      0 0 0 18px rgba(143, 97, 213, 0);
  }

  100% {
    box-shadow:
      0 20px 54px rgba(50, 16, 111, 0.22),
      0 0 0 0 rgba(143, 97, 213, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sd-map-pin.is-pulsing::before {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .sd-hero {
    --sd-hero-ring-y: 66%;
    min-height: clamp(740px, 92vw, 900px);
  }

  .sd-hero-copy {
    padding-top: clamp(56px, 8vw, 82px);
  }

  .sd-hero-products {
    width: min(128%, 1180px);
  }

  .sd-hero-rings {
    width: 220%;
    height: auto;
    aspect-ratio: 1;
  }

  .product-intro {
    gap: 72px;
  }

  .product-suitable-grid {
    grid-template-columns: repeat(5, minmax(112px, 1fr));
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-suitable-card h2 {
    font-size: 18px;
  }
}

.product-scroll {
  min-height: 320vh;
  overflow: clip;
  border-radius: 0;
  background: #f5f5f5;
}

.product-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  width: 100%;
  padding: 96px 0;
  background: #f5f5f5;
}

.product-intro-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(1192px, calc(100% - 48px));
  text-align: center;
}

.product-intro-title p {
  margin: 0;
  color: #845ccf;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-intro-title h1 {
  width: min(920px, 100%);
  margin: 0;
  color: #2e2244;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.48px;
}

.product-suitable-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 50px;
  width: min(1600px, calc(100% - 48px));
}

.product-suitable-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  text-align: center;
}

.product-suitable-icon {
  position: relative;
  width: 96px;
  height: 96px;
}

.product-suitable-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-suitable-aligners {
  width: 98px;
}

.product-suitable-base {
  position: absolute;
  inset: 0;
}

.product-suitable-avatar {
  position: absolute;
  left: 32px;
  top: 43px;
  width: 32px;
  height: 32px;
}

.product-suitable-avatar img {
  position: absolute;
  inset: 0;
}

.product-suitable-icon .product-suitable-toothbrush-line {
  position: absolute;
  left: 38%;
  top: 6%;
  width: 27%;
  height: 88%;
}

.product-suitable-icon .product-suitable-toothbrush-bristles {
  position: absolute;
  left: 42%;
  top: 8%;
  width: 12%;
  height: 13%;
  opacity: 0.82;
  filter: invert(20%) sepia(20%) saturate(1450%) hue-rotate(225deg) brightness(75%);
  clip-path: inset(0);
}

.product-suitable-card h2 {
  min-width: 100%;
  margin: 0;
  color: #2e2244;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .product-intro {
    gap: 72px;
  }

  .product-suitable-grid {
    grid-template-columns: repeat(5, minmax(112px, 1fr));
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-suitable-card h2 {
    font-size: 18px;
  }
}

.product-scroll-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.product-scroll-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  opacity: 1;
  pointer-events: none;
}

.product-scroll-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.product-scroll-status {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  max-width: min(420px, calc(100% - 40px));
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #3f2f60;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 18px 54px rgba(50, 16, 111, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.product-scroll-status.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.product-scroll-copy {
  position: relative;
  z-index: 4;
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(42px, 7vw, 84px);
  text-align: center;
  pointer-events: none;
  opacity: 0;
}

.product-scroll-copy h1 {
  margin: 0;
  color: #3f2f60;
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.product-scroll-copy p {
  width: min(560px, 100%);
  margin: 16px auto 0;
  color: #5d4093;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 500;
  line-height: 1.4;
}

.product-scroll-bullet {
  position: absolute;
  left: var(--bullet-x);
  top: var(--bullet-y);
  z-index: 5;
  width: min(330px, 23vw);
  padding: 18px;
  border-radius: 12px;
  color: #121212;
  text-shadow: 0 1px 18px #f5f5f5;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
}

.product-scroll-icon {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 16px;
  color: #845ccf;
}

.product-scroll-icon-time {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #845ccf;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.16);
}

.product-scroll-icon-day::before,
.product-scroll-icon-day::after {
  content: "";
  position: absolute;
}

.product-scroll-icon-day::before {
  left: 7px;
  bottom: 11px;
  width: 31px;
  height: 31px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.product-scroll-icon-day::after {
  right: 11px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  box-shadow:
    0 -10px 0 -8px currentColor,
    0 10px 0 -8px currentColor,
    10px 0 0 -8px currentColor,
    -10px 0 0 -8px currentColor;
}

.product-scroll-icon-wave::before,
.product-scroll-icon-wave::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 42px;
  height: 18px;
  border: 3px solid currentColor;
  border-right: 0;
  border-bottom: 0;
  border-radius: 40px 0 0;
  transform: rotate(12deg);
}

.product-scroll-icon-wave::before {
  top: 15px;
}

.product-scroll-icon-wave::after {
  top: 31px;
  opacity: 0.55;
}

.product-scroll-icon-touch::before,
.product-scroll-icon-touch::after {
  content: "";
  position: absolute;
}

.product-scroll-icon-touch::before {
  left: 31px;
  top: 6px;
  width: 14px;
  height: 43px;
  border: 3px solid currentColor;
  border-radius: 14px;
  transform: rotate(-24deg);
}

.product-scroll-icon-touch::after {
  left: 10px;
  top: 31px;
  width: 28px;
  height: 19px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 0 18px;
  transform: rotate(30deg);
}

.product-scroll-bullet strong {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
}

.product-scroll-bullet p {
  margin: 0;
  color: #686b82;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
}

.bc-chart-kicker {
  display: block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #30293a;
}

.bc-chart-card {
  overflow: hidden;
  border: 1px solid rgba(50, 16, 111, 0.08);
  border-radius: 8px;
  background: var(--bc-panel);
  box-shadow: 0 18px 60px rgba(50, 16, 111, 0.08);
}

.bc-chart-header {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px 30px 20px;
  text-align: center;
}

.bc-chart-header h1 {
  margin: 0;
  max-width: 660px;
  color: var(--bc-ink);
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.bc-chart-header h1 span {
  color: var(--bc-accent-soft);
}

.bc-chart-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-grid;
  place-items: center;
  min-width: 78px;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--bc-ink);
  box-shadow: 0 8px 24px rgba(50, 16, 111, 0.1);
  font-weight: 700;
  font-size: 1rem;
}

.bc-chart-wrap {
  padding: 14px 30px 20px;
}

.bc-chart {
  width: 100%;
  display: grid;
  gap: 22px;
}

.bc-scale,
.bc-bar-group {
  display: grid;
  grid-template-columns: 228px minmax(120px, 1fr);
  gap: 16px;
}

.bc-scale {
  color: var(--bc-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.bc-scale-markers {
  position: relative;
  height: 18px;
}

.bc-scale-markers span {
  position: absolute;
  left: var(--bc-position);
  transform: translateX(-50%);
  white-space: nowrap;
}

.bc-scale-markers span:first-child {
  transform: translateX(0);
}

.bc-scale-markers span:last-child {
  transform: translateX(-100%);
}

.bc-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bc-muted);
  font-size: 1rem;
  font-weight: 600;
}

.bc-method-image {
  flex: 0 0 68px;
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: #f5effb;
  overflow: hidden;
}

.bc-method-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bc-label-featured {
  color: var(--bc-ink);
  font-weight: 700;
}

.bc-label-featured .bc-method-image {
  background: #f1e9fb;
}

.bc-image-missing::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 2px solid rgba(154, 106, 223, 0.5);
  border-radius: 50%;
}

.bc-value {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(12px, -50%);
  color: var(--bc-ink);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.bc-track {
  position: relative;
  display: block;
  height: 68px;
  border-radius: 8px;
  background-color: #f4f0f7;
  background-image: linear-gradient(to right, var(--bc-line) 1px, transparent 1px);
  background-size: 25% 100%;
  background-position: 0 0;
  overflow: visible;
}

.bc-bar {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--bc-secondary);
}

.bc-bar-featured {
  background: var(--bc-accent);
}

.bc-bar-group.bc-featured-row .bc-track {
  height: 82px;
  background: #f1e9fb;
}

.bc-bar-group.bc-featured-row .bc-value {
  left: auto;
  right: 18px;
  transform: translateY(-50%);
  color: #ffffff;
}

.bc-disclaimer {
  margin: 0;
  padding: 0 30px 26px;
  color: var(--bc-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.bc-chart-vertical {
  display: block;
}

.bc-vertical-plot {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
}

.bc-vertical-scale {
  position: relative;
  height: 360px;
  color: var(--bc-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.bc-vertical-scale span {
  position: absolute;
  right: 0;
  bottom: var(--bc-position);
  transform: translateY(50%);
}

.bc-vertical-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(86px, 1fr));
  gap: 16px;
  align-items: end;
}

.bc-vbar-group {
  display: grid;
  grid-template-rows: 360px auto;
  gap: 14px;
  min-width: 0;
}

.bc-vtrack {
  position: relative;
  display: flex;
  align-items: end;
  height: 360px;
  border-radius: 8px;
  background-color: #f4f0f7;
  background-image: linear-gradient(to top, var(--bc-line) 1px, transparent 1px);
  background-size: 100% 25%;
  background-position: 0 100%;
  overflow: visible;
}

.bc-vbar {
  position: relative;
  display: block;
  width: 100%;
  height: 0%;
  border-radius: inherit;
  background: var(--bc-secondary);
}

.bc-vbar.bc-bar-featured {
  background: var(--bc-accent);
}

.bc-vbar .bc-value {
  top: auto;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -10px);
}

.bc-featured-row .bc-vbar .bc-value {
  top: 16px;
  right: auto;
  left: 50%;
  bottom: auto;
  transform: translateX(-50%);
  color: #ffffff;
}

.bc-vlabel {
  display: grid;
  grid-template-rows: 62px 34px;
  justify-items: center;
  gap: 8px;
  color: var(--bc-muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  min-height: 104px;
}

.bc-vlabel .bc-method-image {
  width: 62px;
  height: 62px;
  flex-basis: 62px;
}

@media (max-width: 800px) {
  .component-shell {
    grid-template-columns: 1fr;
  }

  .component-nav {
    z-index: 2;
    min-height: 0;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(50, 16, 111, 0.08);
  }

  .component-nav-title {
    display: none;
  }

  .component-nav-item {
    width: auto;
    flex: 0 0 auto;
    text-align: center;
  }

  .component-stage {
    padding: 28px 16px;
  }

  .bc-chart-section {
    width: 100%;
  }

  .product-animation-section {
    width: 100%;
  }

  .product-intro {
    gap: 48px;
    padding: 64px 0;
  }

  .product-intro-title {
    width: min(100%, calc(100% - 32px));
    gap: 16px;
  }

  .product-intro-title p {
    font-size: 12px;
  }

  .product-intro-title h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.16;
    letter-spacing: 0;
  }

  .product-suitable-grid {
    width: min(100%, calc(100% - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
    overflow: visible;
  }

  .product-suitable-icon {
    width: 76px;
    height: 76px;
  }

  .product-suitable-aligners {
    width: 78px;
  }

  .product-suitable-avatar {
    left: 25px;
    top: 34px;
    width: 26px;
    height: 26px;
  }

  .product-suitable-card h2 {
    font-size: 15px;
  }

  .product-scroll-bullet {
    left: 24px !important;
    right: 24px;
    top: auto !important;
    bottom: 72px;
    width: auto;
    max-width: 260px;
    padding: 0;
  }

  .product-scroll-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .product-scroll-icon-time {
    width: 38px;
    height: 38px;
  }

  .product-scroll-bullet strong {
    margin-bottom: 8px;
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .product-scroll-bullet p {
    font-size: 0.92rem;
  }

  .sd-map-section {
    width: 100%;
  }

  .sd-hero-section {
    width: 100%;
  }

  .buy-box-section {
    width: 100%;
  }

  .buy-box-layout {
    grid-template-columns: 1007px 513px;
    gap: 80px;
  }

  .buy-box-panel {
    position: sticky;
  }

  .buy-box-main-image {
    border-radius: 0;
  }

  .buy-box-feature-pills {
    margin: 64px auto;
  }

  .buy-box-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buy-box-gallery img {
    aspect-ratio: 498.5 / 373.875;
  }

  .buy-box-card-header,
  .buy-box-fieldset,
  .buy-box-footer-price,
  .buy-box-cta-row {
    padding-left: 32px;
    padding-right: 32px;
  }

  .buy-box-bundles label {
    grid-template-columns: 118px minmax(0, 1fr) 156px;
    gap: 0;
  }

  .buy-box-bundles img {
    width: 118px;
  }

  .buy-box-trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .buy-box-klarna {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
  }

  .product-animation-copy {
    padding: 24px 20px 16px;
  }

  .product-animation-copy h1 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .sd-map-container {
    padding: 32px 16px;
  }

  .sd-map-copy h1 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .sd-map-copy p {
    font-size: 0.96rem;
  }

  .product-animation-stage {
    min-height: 420px;
    padding: 26px;
  }

  .sd-map-stage {
    margin-top: 34px;
  }

  .sd-map-pin span {
    padding: 4px 8px;
    font-size: 0.58rem;
  }

  .sd-map-pin::before {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .sd-map-pin::after {
    bottom: 8px;
    width: 13px;
    height: 10px;
  }

  .sd-map-pin-below::after {
    top: 8px;
  }

  .sd-map-pin span {
    bottom: 18px;
  }

  .sd-map-pin-below span {
    top: 18px;
  }

  .sd-map-bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
    margin-top: 44px;
  }

  .sd-map-bullet {
    padding: 0;
  }

  .sd-map-bullet-icon {
    width: 56px;
    height: 56px;
  }

  .sd-hero {
    --sd-hero-ring-y: 66%;
    min-height: clamp(700px, 112vw, 820px);
  }

  .sd-hero-copy {
    width: min(100% - 32px, 640px);
    padding-top: 48px;
  }

  .sd-hero-kicker {
    font-size: 0.78rem;
  }

  .sd-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .sd-hero-copy p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .sd-hero-rings {
    width: 220%;
    height: auto;
    aspect-ratio: 1;
  }

  .sd-hero-glow {
    top: 62%;
    width: 90vw;
  }

  .sd-hero-gradient-wash {
    width: 128vw;
  }

  .sd-hero-gradient-sheen {
    width: 138vw;
    height: 48vw;
    filter: blur(26px);
  }

  .sd-hero-ambient-one {
    left: 34%;
    top: 61%;
    width: 96vw;
  }

  .sd-hero-ambient-two {
    left: 68%;
    top: 70%;
    width: 88vw;
  }

  .sd-hero-products {
    width: 136%;
    bottom: 0;
  }

  .bc-chart-header {
    padding: 24px 20px 16px;
    text-align: center;
    justify-items: center;
  }

  .bc-chart-header h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .bc-chart-badge {
    position: static;
    min-width: 82px;
    min-height: 40px;
    font-size: 1rem;
  }

  .bc-chart-wrap {
    padding: 12px 20px 18px;
  }

  .bc-scale {
    grid-template-columns: 1fr;
    font-size: 0.72rem;
  }

  .bc-scale > span {
    display: none;
  }

  .bc-scale-markers span::before {
    display: none;
  }

  .bc-bar-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bc-label {
    grid-column: 1 / 2;
  }

  .bc-track {
    grid-column: 1;
    grid-row: 2;
  }

  .bc-disclaimer {
    padding: 0 20px 22px;
  }

  .bc-vertical-plot {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 92px;
  }

  .bc-vertical-scale,
  .bc-vbar-group,
  .bc-vtrack {
    height: min(260px, 54vh);
  }

  .bc-vbar-group {
    grid-template-rows: min(260px, 54vh) auto;
    gap: 10px;
  }

  .bc-vertical-bars {
    min-width: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(6px, 2vw, 10px);
  }

  .bc-vlabel {
    position: relative;
    grid-template-rows: 44px 34px;
    min-height: 88px;
    gap: 6px;
    font-size: clamp(0.68rem, 2.7vw, 0.8rem);
  }

  .bc-vlabel .bc-method-image {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .bc-vbar .bc-value {
    font-size: clamp(0.68rem, 2.8vw, 0.84rem);
    transform: translate(-50%, -7px);
  }

  .bc-featured-row .bc-vbar .bc-value {
    top: 10px;
    transform: translateX(-50%);
  }

  .bc-vertical-scale {
    font-size: 0.68rem;
  }
}

@media (max-width: 620px) {
  .sd-hero {
    --sd-hero-ring-y: 67%;
    min-height: clamp(650px, 150vw, 760px);
  }

  .sd-hero-products {
    width: 165%;
    bottom: 0;
  }
}

@media (max-width: 430px) {
  .sd-map-pin span {
    padding: 3px 6px;
    border-radius: 7px;
    font-size: 0.5rem;
  }

  .sd-map-pin::before {
    width: 14px;
    height: 14px;
  }
}
