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

:root {
  --black: #000;
  --panel: #171a20;
  --orange: #f5a136;
  --brand-on-dark: #f79a2a;
  --brand-on-light: #f98e27;
  --light: #fff;
  --text: #262a30;
  --safe-width: 1200px;
  --content-width: calc(var(--safe-width)*.7);
  --header-offset: 4rem;
  --section-padding: 78px;
  --section-padding-large: 155px;
  --font-cn: "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-en: "Montserrat", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif
}

@media(max-width:1300px) {
  :root {
    --safe-width: 75vw
  }
}

@media (min-width: 1601px) {
  :root {
    --section-padding: 73px;
    --section-padding-large: 145px;
  }
}

@media (min-width: 2240px) {
  :root {
    --section-padding: 98px;
    --section-padding-large: 195px;
  }
}

html {
  scroll-behavior: smooth
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  font-family: var(--font-cn)
}

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

button {
  font: inherit;
  border: 0;
  cursor: pointer
}

img {
  display: block;
  width: 100%;
  height: auto
}

.dark-section {
  background: #000;
  color: #fff
}

.light-section {
  background: #fff;
  color: var(--text)
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 4rem;
  background: rgba(8, 8, 8, .96);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: .3s
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--safe-width);
  height: 100%;
  margin: auto
}

.site-header.is-scrolled {
  opacity: 1;
  visibility: visible;
  transform: none
}

.brand {
  font-size: 1.6666rem;
  font-weight: 700
}

.buy-link span {
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.8333rem;
  filter: brightness(0);
}

.site-nav {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
  font-size: .8333rem;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap
}

.buy-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-width: 7.25rem;
  height: 2.3rem;
  margin-left: 2rem;
  background: var(--orange);
  color: #0a0a0a;
  justify-content: center;
  font-size: .8333rem;
  font-weight: 800
}

.buy-link span {
  font-size: 1rem
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #111
}

.hero__kv {
  width: 100%;
  height: auto
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, transparent, rgba(0, 2, 18, 0.24), rgba(0, 1, 10, 0.68));
}

.hero__content {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 2;
  width: var(--safe-width);
  text-align: center;
  transform: translateX(-50%)
}

.hero h1 {
  font-size: 6rem;
  line-height: .95;
  font-weight: 800
}

.hero p {
  margin-top: 2.2rem;
  font-size: 1.6rem
}

.feature-mosaic {
  position: relative;
  z-index: 2;
  padding: var(--section-padding-large) 0 var(--section-padding);
  background: linear-gradient(to bottom, #161821 0%, #0b0d14 70%, #000 100%)
}

.intro__scroll-copy {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  top: -30vh;
  width: var(--safe-width);
  margin-inline: auto;
  color: #fff;
  opacity: 0;
  pointer-events: none
}

.intro__scroll-copy--state-transition {
  transition: opacity .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.intro__scroll-copy h2 {
  margin-bottom: .8rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 650;
  text-align: center
}

.intro__scroll-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 300
}

.intro__scroll-copy p+p {
  margin-top: .8rem
}

.feature-mosaic__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: var(--safe-width);
  margin: 0 auto
}

.feature-mosaic__row+.feature-mosaic__row {
  margin-top: 1rem
}

.mosaic-card {
  position: relative;
  flex: var(--card-weight) 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: .5rem;
}

.mosaic-card>img:first-child {
  width: 100%;
  height: auto;
  transition: transform .65s ease
}

.mosaic-card:hover>img:first-child {
  transform: scale(1.025)
}

.mosaic-copy {
  position: absolute;
  top: 1.45rem;
  left: 1.55rem;
  z-index: 3;
  max-width: calc(100% - 3rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.mosaic-copy h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 650
}

.mosaic-copy p {
  margin-top: .45rem;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  line-height: 1.45
}

.mosaic-copy__title-with-icon {
  display: flex;
  align-items: flex-start;
  gap: .35rem
}

.mosaic-copy__title-with-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain
}

.mosaic-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  height: 2.2rem;
  width: auto;
  object-fit: contain;
  z-index: 2
}

.section-heading {
  width: var(--safe-width);
  margin: 0 auto;
  text-align: left
}

.puppypi-page.is-heading-reveal-pending .section-heading:not([data-hardware-copy])>*,
.puppypi-page.is-heading-reveal-pending .poster-copy>* {
  visibility: hidden;
  opacity: 0;
  transform: translateY(34px)
}

.section-heading>span,
.poster-copy>span {
  display: block;
  margin-bottom: .65rem;
  color: var(--brand-on-dark);
  font-size: 1.25rem;
  font-weight: 600
}

.section-heading--light>span {
  color: var(--brand-on-light);
}

.section-heading h2,
.poster-copy h2 {
  font-size: calc(40 / 16 * 1rem);
  line-height: 1.18;
  font-weight: 650
}

.section-heading p,
.poster-copy p {
  max-width: 144rem;
  margin-top: 1.05rem;
  color: rgba(255, 255, 255, .66);
  font-size: 1rem;
  line-height: 1.75
}

.hardware-showcase {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: #000000;
}

.hardware-showcase__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* min-height: 100vh; */
  padding: var(--section-padding) 0;
}

.hardware-showcase .section-heading {
  z-index: 2;
  width: var(--safe-width);
  text-align: center;
}

.hardware-showcase__media {
  width: min(72vw, 86rem);
  margin: 8vh auto 0;
  transform-origin: center center;
}

.hardware-showcase__media img {
  max-height: 50vh;
  object-fit: contain;
}

.hardware-showcase--annotated .hardware-showcase__media {
  position: relative;
}

@media(min-width:901px) {
  .hardware-showcase--sticky {
    overflow: visible;
    min-height: 150vh;
  }

  .hardware-showcase--sticky .hardware-showcase__inner {
    position: sticky;
    top: var(--header-offset);
    z-index: 1;
  }

}

.hardware-callout-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hardware-callout {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  width: auto;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.hardware-callout--left {
  justify-content: flex-end;
  text-align: right;
}

.hardware-callout--right {
  justify-content: flex-start;
  text-align: left;
}

.hardware-callout__text {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  line-height: 1.35;
  white-space: nowrap;
}

.hardware-callout__line {
  position: relative;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin: 0 .8rem;
  border-top: 1px dashed rgba(255, 255, 255, .68);
  transform: scaleX(0);
}

.hardware-callout__dot {
  position: absolute;
  top: 50%;
  display: block;
  width: .55rem;
  height: .55rem;
  border: 1px solid rgba(255, 192, 91, .9);
  border-radius: 50%;
  background: #ee9530;
  box-shadow: 0 0 0 .35rem rgba(238, 149, 48, .16), 0 0 1rem rgba(238, 149, 48, .48);
  transform: translateY(-50%);
}

.hardware-callout--left .hardware-callout__line {
  margin-right: 0;
  transform-origin: right center;
}

.hardware-callout--left .hardware-callout__dot {
  left: -.25rem;
}

.hardware-callout--right .hardware-callout__line {
  margin-left: 0;
  transform-origin: left center;
}

.hardware-callout--right .hardware-callout__dot {
  right: -.25rem;
}

.hardware-callout--controller {
  top: 8%;
  left: 13%;
  right: 47%;
}

.hardware-callout--mount {
  top: 35%;
  left: 56%;
  right: 9%;
}

.hardware-callout--sensor {
  top: 39%;
  left: 0%;
  right: 71%;
}

.hardware-callout--battery {
  top: 42%;
  left: 55%;
  right: 4%;
}

.hardware-callout--frame {
  top: 54%;
  left: 55%;
  right: 2%;
}

.hardware-callout--servo {
  top: 81%;
  left: 52%;
  right: 3%;
}

.hardware-callout--ai {
  top: 86%;
  left: 4%;
  right: 63%;
}

.motion-section {
  position: relative;
  z-index: 2;
  padding: 8vh 0 8vh;
  background: #000
}

.motion-section .section-heading {
  margin-bottom: 0rem;
  text-align: center;
}

.motion-media {
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: .5rem
}

.motion-media img {
  width: 100%;
  height: auto
}

.embodied-section .section-heading {
  width: var(--content-width);
}

.embodied-section.media-carousel {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0 var(--section-padding-large);
  background: #000;
  overflow: hidden
}

#microbit.embodied-section.media-carousel {
  padding: var(--section-padding) 0 var(--section-padding-large);
}

#physical.embodied-section.media-carousel {
  padding: var(--section-padding) 0 var(--section-padding);
}

.embodied-section .carousel-shell {
  position: relative;
  width: 100%;
  margin-top: 3.2rem;
  overflow: hidden
}

.embodied-section .carousel-track {
  display: flex;
  align-items: center;
  gap: .6rem;
  transform: translate3d(0, 0, 0);
  will-change: transform
}

.embodied-section .carousel-slide {
  position: relative;
  flex: 0 0 calc(var(--safe-width)*.7);
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: .5rem;
  background: #171a20;
  transform-origin: center
}

.embodied-section .carousel-slide>img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.embodied-section .carousel-slide__image {
  position: absolute;
  inset: 0;
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.embodied-section .carousel-slide__image--idle {
  opacity: 1;
  transform: scale(1)
}

.embodied-section .carousel-slide__image--active {
  opacity: 0;
  transform: scale(1.015)
}

.embodied-section .carousel-slide.is-active .carousel-slide__image--idle {
  opacity: 0;
  transform: scale(1.015)
}

.embodied-section .carousel-slide.is-active .carousel-slide__image--active {
  opacity: 1;
  transform: scale(1)
}

.embodied-section .carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 12, 12, .5);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .25s ease
}

.embodied-section .carousel-arrow:hover {
  background: rgba(255, 255, 255, .2)
}

.embodied-section .carousel-arrow[hidden] {
  display: none
}

.embodied-section .carousel-arrow--prev {
  left: max(1.25rem, calc((100vw - var(--content-width)) / 2 - 5.5rem))
}

.embodied-section .carousel-arrow--next {
  right: max(1.25rem, calc((100vw - var(--content-width)) / 2 - 5.5rem));
}

.embodied-section .carousel-tabs,
.sensor-switch .carousel-tabs {
  display: flex;
  width: min(54rem, calc(100% - 2rem));
  min-height: 2.8rem;
  margin: 2rem auto 0;
  padding: .25rem;
  border-radius: 1.5rem;
  background: #1c1d20
}

.embodied-section .carousel-tabs {
  width: min(44rem, calc(100% - 2rem));
}

.embodied-section .carousel-tabs button,
.sensor-switch .carousel-tabs button {
  flex: 1;
  min-width: 0;
  padding: .65rem .45rem;
  border: 0;
  border-radius: 1.2rem;
  background: transparent;
  color: rgba(255, 255, 255, .68);
  font-size: .79rem;
  line-height: 1.25;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .3s ease, color .3s ease
}

.embodied-section .carousel-tabs button.is-active,
.sensor-switch .carousel-tabs button.is-active {
  background: #fff;
  color: #111;
  font-weight: 600
}

.decision-section {
  position: relative;
  z-index: 2;
  padding: 8vh 0 12vh;
  background: #000
}

.decision-stage {
  position: relative;
  width: var(--safe-width);
  margin: 3rem auto 0;
  min-height: calc(var(--safe-width)*.42);
  display: grid;
}

.decision-slide {
  position: relative;
  grid-area: 1/1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s, visibility .35s;
}

.decision-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.decision-slide>img {
  width: 70%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: .5rem;
  transition: opacity .35s
}

.decision-dialogs {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 32%;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: 22%
}

.dialog {
  padding: 1rem;
  color: #fff;
  font-size: .9rem;
  line-height: 1.45
}

.dialog-blue {
  background: #1ca4f2;
  border-radius: 0 1rem 1rem 1rem
}

.dialog-orange {
  background: #ff9d12;
  border-radius: 1rem 1rem 0 1rem
}

.decision-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4rem;
  display: flex;
  justify-content: center;
  gap: .7rem;
  flex-wrap: wrap
}

.decision-tabs button {
  padding: .72rem 1.25rem;
  border-radius: 999px;
  background: #202124;
  color: #aaa;
  font-size: .82rem
}

.decision-tabs button.is-active {
  background: #fff;
  color: #111
}

.full-stack-section {
  position: relative;
  z-index: 2;
  padding: 8vh 0 16vh;
  background: #000
}

.stack-layout {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: var(--safe-width);
  margin: 4rem auto 0
}

.stack-tabs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 10rem
}

.stack-tabs button {
  padding: 1rem;
  text-align: center;
  background: transparent;
  color: #aaa;
  border-left: 2px solid transparent
}

.stack-tabs button.is-active {
  color: #fff;
  background: #252525
}

.stack-panel {
  grid-area: 1/1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s
}

.stack-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.stack-panels {
  display: grid;
  flex: 1;
  min-width: 0;
}

.stack-card {
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
}

.stack-card img {
  height: 100%;
  object-fit: contain
}

.stack-card span {
  position: absolute;
  inset: auto 0 0;
  padding: .8rem 1rem;
  background: rgba(0, 0, 0, .64);
  color: #fff;
  text-align: center
}

.poster-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #000
}

.poster-section>img {
  width: 100%;
  min-height: 42rem;
  object-fit: cover
}

.poster-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent 58%);
  pointer-events: none
}

.poster-copy {
  position: absolute;
  top: 16%;
  left: max(2rem, calc((100vw - var(--safe-width))/2 - .6%));
  z-index: 2;
  width: 42rem
}

.control-section {
  position: sticky;
  top: 0;
  z-index: 0;
  padding: 16vh 0 16vh;
  background: #fff
}

.control-section .section-heading {
  margin-bottom: 5rem
}

.control-section .section-heading>span {
  color: var(--brand-on-light)
}

.control-section .section-heading p {
  color: rgba(38, 42, 48, .65)
}

.control-layout {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  width: var(--safe-width);
  margin: auto
}

.control-panels {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: clamp(22rem, 32vw, 34rem);
}

.control-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.control-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.control-copy {
  flex: 0 0 20%;
  max-width: 22rem;
}

.control-nav {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ddd;
  min-height: 18rem;
  cursor: ns-resize;
  touch-action: none;
  user-select: none
}

.control-nav button {
  width: 3px;
  height: 6rem;
  transform: translateX(-50%);
  padding: 0;
  background: transparent;
  color: transparent;
  border: 0;
  overflow: hidden;
  cursor: inherit
}

.control-nav.is-dragging {
  cursor: grabbing;
}

.control-nav button.is-active {
  background: var(--brand-on-light)
}

.control-copy h3 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 650
}

.control-copy p {
  margin-top: 1rem;
  color: #8a8e94;
  font-size: 1rem;
  line-height: 1.75
}

.control-media {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: .5rem
}

.control-media img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
  transition: opacity .35s
}

.specs {
  position: relative;
  z-index: 2;
  padding: 10vh 0 6rem;
  background: #fff
}

.specs__inner {
  width: var(--safe-width);
  margin: 0 auto
}

.specs__heading {
  margin-bottom: 5rem
}

.specs__heading h2 {
  color: #30343a;
  font-size: 2.4rem;
  line-height: 1.15
}

.specs__heading p {
  margin-top: .65rem;
  color: #757a80;
  font-size: 1rem
}

.specs-table {
  display: block;
  width: 100%;
  color: #4d535b;
  font-size: 1rem
}

.specs-table tbody {
  display: block
}

.specs-table caption.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.specs-row {
  display: grid;
  grid-template-columns: 20.5rem repeat(3, 1fr);
  min-height: 5.25rem;
  border-bottom: 1px solid #d7d9dd
}

.specs-row>th,
.specs-row>td {
  display: flex;
  align-items: center;
  min-width: 0;
  text-align: left;
  line-height: 1.45
}

.specs-label {
  padding-left: 30%;
  color: #424242;
  font-weight: 600
}

.specs-value {
  grid-column: 2/5;
  padding-left: 5.4rem;
  color: #4d535b
}

.specs__image {
  display: block;
  width: calc(var(--safe-width) * .6);
  margin: 4rem auto 0;
  object-fit: contain
}

.product-faq {
  width: var(--safe-width);
  margin: 0 auto;
  padding-top: 8rem;
  color: #30343a
}

.product-faq__heading {
  margin-bottom: 3rem
}

.product-faq__heading h2 {
  font-size: 2.4rem;
  line-height: 1.15
}

.product-faq__item {
  border-bottom: 1px solid #d7d9dd
}

.product-faq__item:last-child {
  border-bottom: 0
}

.product-faq__item summary {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) 1.5rem;
  gap: 1rem;
  align-items: center;
  min-height: 5.25rem;
  color: #30343a;
  cursor: pointer;
  list-style: none;
  outline: none
}

.product-faq__item summary::-webkit-details-marker {
  display: none
}

.product-faq__number {
  color: #757a80;
  font-family: var(--font-en);
  font-size: .9rem;
  font-weight: 600
}

.product-faq__item[open] .product-faq__number {
  color: #f5a136
}

.product-faq__question {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600
}

.product-faq__arrow {
  justify-self: end;
  width: 0;
  height: 0;
  border-right: .38rem solid transparent;
  border-left: .38rem solid transparent;
  border-top: .5rem solid #757a80;
  transition: transform .25s
}

.product-faq__item[open] .product-faq__arrow {
  border-top-color: #f5a136;
  transform: rotate(180deg)
}

.product-faq__answer {
  max-width: calc(100% - 5rem);
  padding: 0 0 2.2rem 4.5rem;
  color: #757a80;
  font-size: 1rem;
  line-height: 1.85
}

.product-faq__answer a {
  color: #f5a136
}

.product-faq__answer p+p {
  margin-top: .65rem
}

.product-faq__heading>span {
  display: block;
  margin-bottom: .65rem;
  color: #f5a136;
  font-size: 1rem;
  font-weight: 600
}

.product-faq__message {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem;
  width: min(38rem, 60%);
  height: 3.5rem;
  margin: 5rem auto 0;
  overflow: hidden;
  border-radius: 2rem;
  background: #d7d9dd
}

.product-faq__message label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.product-faq__message input {
  min-width: 0;
  padding: 0 1.75rem;
  border: 0;
  outline: 0;
  background: transparent;
  text-align: center
}

.product-faq__message button {
  border: 0;
  background: #000;
  color: #fff;
  font-weight: 600
}

.product-faq__success {
  position: fixed;
  inset: 0;
  width: min(30rem, calc(100% - 2rem));
  margin: auto;
  border: 0;
  padding: 3.5rem 3rem 3rem;
  border-radius: .5rem;
  background: #fff;
  color: #30343a;
  text-align: center;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .3)
}

.product-faq__success::backdrop {
  background: rgba(0, 0, 0, .55)
}

.product-faq__success button {
  position: absolute;
  right: .6rem;
  top: .4rem;
  background: none;
  font-size: 1.4rem
}

.product-faq__success-mark {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.5rem;
  border: 2px solid #f5a136;
  border-radius: 50%;
  background: transparent;
  color: #f5a136;
  font-size: 1.65rem;
  font-weight: 700
}

.product-faq__success p {
  padding-top: .8rem;
  color: #333
}

@media(max-width:900px) {
  .product-faq__answer {
    max-width: calc(100% - 2.6rem);
    padding: 0 0 1.4rem 2.6rem
  }

  .product-faq__message {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    border-radius: 1rem
  }
}

@media(max-width:1920px) {
  .intro__scroll-copy {
    top: -35vh;
  }
}

@media(max-width:1700px) {
  .intro__scroll-copy {
    top: -43vh;
  }

  .control-section .section-heading {
    margin-bottom: 3rem;
  }

  .control-section {
    padding: 16vh 0;
  }
}

@media(max-width:900px) {
  .control-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: calc(100% - 2rem);
  }

  .control-nav {
    flex-direction: row;
    min-height: 0;
    border-top: 1px solid #ddd;
    border-left: 0;
    cursor: ew-resize;
  }

  .control-nav button {
    width: 6rem;
    height: 3px;
  }

  .control-panels {
    min-height: 25rem;
  }

  .control-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 1.5rem;
  }

  .control-copy {
    flex: 0 0 auto;
    max-width: none;
  }

  .control-media {
    width: 100%;
  }

  .specs__image {
    width: 94vw;
    margin-top: 3rem;
  }

  .specs-row {
    grid-template-columns: 8.5rem minmax(0, 1fr)
  }

  .specs-label {
    padding-left: .5rem
  }

  .specs-value {
    grid-column: 2;
    padding-left: 1rem;
    overflow-wrap: anywhere
  }

  .hardware-showcase {
    min-height: auto;
  }

  .hardware-showcase__inner {
    min-height: 100svh;
  }

  .hardware-showcase__inner {
    padding: var(--section-padding) 0;
  }

  .hardware-showcase__media {
    width: 96vw;
    margin-top: 3rem;
  }

  .hardware-showcase__media img {
    max-height: 50vh;
  }

  .hardware-callout {
    width: 47%;
  }

  .hardware-callout__text {
    font-size: .68rem;
  }

  .hardware-callout--left .hardware-callout__line,
  .hardware-callout--right .hardware-callout__line {
    flex: 1 1 auto;
    width: auto;
    min-width: 1.5rem;
    margin: 0 .35rem;
  }

  .hardware-callout--left {
    left: 0;
  }

  .hardware-callout--right {
    right: 0;
  }

  .embodied-section .carousel-shell {
    width: 100%;
    margin-top: 2.2rem
  }

  .embodied-section .carousel-slide {
    flex-basis: calc(100vw - 2rem)
  }

  .embodied-section .carousel-arrow {
    width: 2.75rem;
    height: 2.75rem
  }

  .embodied-section .carousel-arrow--prev {
    left: 1.25rem
  }

  .embodied-section .carousel-arrow--next {
    right: 1.25rem
  }

  .embodied-section .carousel-tabs,
  .sensor-switch .carousel-tabs {
    justify-content: flex-start;
    width: calc(100% - 2rem);
    overflow-x: auto;
    border-radius: .5rem
  }

  .embodied-section .carousel-tabs button,
  .sensor-switch .carousel-tabs button {
    flex: 0 0 auto;
    padding: .7rem 1rem
  }
}

.embodied-section .carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center
}

.embodied-section .carousel-arrow>span {
  display: block;
  line-height: 1;
  transform: translateY(-.08em)
}



/* PuppyPi component variants */

.puppypi-mosaic__bottom .mosaic-card {
  flex-basis: 0;
}

.mosaic-copy__platform {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: .45rem;
  row-gap: .35rem;
  max-width: calc(100% - 2rem);
}

.mosaic-copy__platform br {
  display: none;
}

.mosaic-copy__platform p {
  flex: 0 0 100%;
  margin-top: 0;
}

.mosaic-AI-models {
  position: relative;
}

.mosaic-AI-models .mosaic-copy {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.mosaic-AI-models .mosaic-copy h2 {
  position: absolute;
  top: 1.45rem;
  left: 1.55rem;
}

.mosaic-AI-models .mosaic-copy img {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 11rem;
  object-fit: contain;
}

.mosaic-copy__platform img {
  flex: 0 0 auto;
  width: 11.5rem;
  /* height: 5.5rem; */
  object-fit: contain;
}

.mosaic-copy__platform h2 {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 400;
}

.mosaic-copy__platform img:nth-of-type(2) {
  flex: 0 0 auto;
  width: 5.5rem;
  object-fit: contain;
}

.mosaic-copy__platform h2 {
  white-space: nowrap;
}

.puppypi-hardware {
  width: min(76rem, var(--safe-width));
}

.puppypi-hardware .hardware-callout {
  width: auto;
}

.puppypi-hardware .hardware-callout__line {
  flex: 1 1 auto;
  width: auto;
  min-width: 1rem;
}

.puppypi-callout--left-one {
  top: 12%;
  left: -6%;
  right: 65%;
}

.puppypi-callout--left-two {
  top: 37%;
  left: -4%;
  right: 53%;
}

.puppypi-callout--left-three {
  top: 59%;
  left: -4%;
  right: 64%;
}

.puppypi-callout--left-four {
  top: 69%;
  left: -5.5%;
  right: 47%;
}

.puppypi-callout--right-one {
  top: 9%;
  left: 59%;
  right: -3%;
}

.puppypi-callout--right-two {
  top: 22%;
  left: 64%;
  right: -3%;
}

.puppypi-callout--right-three {
  top: 45%;
  left: 58%;
  right: -10%;
}

.puppypi-callout--right-four {
  top: 58%;
  left: 75%;
  right: -.5%;
}

.motion-control {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: #000;
}

.motion-control__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 4rem;
  width: min(100%, calc(var(--safe-width) * 1.55));
  margin: 0 auto;
}

.motion-control__product {
  position: relative;
  min-width: 0;
}

.motion-control__product img {
  display: block;
  width: 120%;
  height: 100%;
  object-fit: cover;
}

.motion-control__product img.motion-control__product-main {
  transform: translateY(20%);
}

.motion-control__product-overlay {
  position: absolute;
  inset: 0;
}

.motion-control__product-copy {
  position: absolute;
  top: 11%;
  left: 8%;
  z-index: 2;
  width: 34%;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.75;
}

.motion-control .section-heading {
  width: 100%;
}

.motion-control__gaits {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

.gait-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: .25rem;
}

.gait-card>img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gait-card__copy {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 1;
  width: 31%;
  color: #fff;
  transform: translateY(-50%);
}

.gait-card__copy h3,
.gait-card__copy p {
  margin: 0;
}

.gait-card__copy h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.gait-card__copy h3 strong {
  color: var(--brand-on-dark);
  font-weight: 500;
}

.gait-card__copy p {
  margin-top: .85rem;
  color: rgba(255, 255, 255, .62);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  white-space: nowrap;
}

.poster-section.sticky-cover-content {
  --control-cover-dim: 0;
  z-index: 0;
}

.poster-section.sticky-cover-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
  opacity: var(--control-cover-dim);
  pointer-events: none;
}

.puppypi-specs__image {
  width: min(50rem, 72vw);
}


.mechdog-mosaic__bottom .mosaic-card {
  flex-basis: 0;
}

.mechdog-hardware {
  width: min(76rem, var(--safe-width));
}

.mechdog-hardware .hardware-callout {
  width: auto;
}

.mechdog-hardware .hardware-callout__line {
  flex: 1 1 auto;
  width: auto;
  min-width: 1rem;
}

.mechdog-callout--arm {
  top: 17%;
  left: -6%;
  right: 73%;
}

.mechdog-callout--display {
  top: 52%;
  left: -9%;
  right: 66%;
}

.mechdog-callout--battery {
  top: 72%;
  left: -4%;
  right: 50%;
}

.mechdog-callout--ai {
  top: 16.6%;
  left: 60%;
  right: 2%;

}

.mechdog-callout--controller {
  top: 34%;
  left: 59%;
  right: 4%;
}

.mechdog-callout--link {
  top: 57%;
  left: 74%;
  right: 3%;
}

.mechdog-callout--servo {
  top: 72%;
  left: 60%;
  right: -5%;
}

@media(max-width:1920px) {
  .puppypi-callout--left-one {
    top: 12%;
    left: 4%;
    right: 65%;
  }

  .puppypi-callout--left-two {
    top: 37%;
    left: 6%;
    right: 52%;
  }

  .puppypi-callout--left-three {
    top: 59%;
    left: 6%;
    right: 60%;
  }

  .puppypi-callout--left-four {
    top: 69%;
    left: 4.5%;
    right: 47%;
  }

  .puppypi-callout--right-one {
    top: 9%;
    left: 57%;
    right: 8%;
  }

  .puppypi-callout--right-two {
    top: 22%;
    left: 60%;
    right: 8%;
  }

  .puppypi-callout--right-three {
    top: 45%;
    left: 58%;
    right: 1%;
  }

  .puppypi-callout--right-four {
    top: 58%;
    left: 69%;
    right: 10.5%;
  }
}

@media(max-width:1620px) {
  .puppypi-callout--right-four {
    top: 58%;
    left: 68%;
    right: 10.5%;
  }
}

@media(max-width:900px) {

  .mechdog-callout--arm,
  .mechdog-callout--display,
  .mechdog-callout--battery {
    left: 0;
  }

  .mechdog-callout--ai,
  .mechdog-callout--controller,
  .mechdog-callout--servo,
  .mechdog-callout--link {
    right: 0;
  }
}

.ai-decision-section {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: #000;
}

.ai-decision-section .section-heading,
.ai-decision-section .fade-stage {
  width: var(--content-width);
}

.fade-stage {
  position: relative;
  min-height: 20rem;
  margin: 3.2rem auto 0;
  overflow: hidden;
  border-radius: .5rem;
  outline: 0;
}

.fade-stage>[data-fade-slide] {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .58s ease, visibility .58s ease;
}

.fade-stage>[data-fade-slide].is-active {
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.fade-stage>[data-fade-slide]:not(.is-active) {
  position: absolute;
  inset: 0;
}

.ai-decision-section .carousel-tabs.fade-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: calc(var(--safe-width) * .5);
  max-width: calc(var(--safe-width) * .5);
  min-height: 0;
  margin: 2.5rem auto 0;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.ai-decision-section .fade-tabs button {
  min-width: 0;
  height: 2.5rem;
  padding: 0 1.8rem;
  border: 0;
  border-radius: 999rem;
  background: #27282b;
  color: rgba(224, 224, 231, .72);
  font-size: .79rem;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease;
}

.ai-decision-section .fade-tabs button:hover {
  background: #dedede;
  color: #202124;
}

.ai-decision-section .fade-tabs button.is-active {
  background: #fff;
  color: #141414;
}

.kinematics-section {
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.kinematics-section__inner {
  position: relative;
  padding: var(--section-padding) 0;
}

.kinematics-section .section-heading {
  width: var(--content-width);
}

.kinematics-media {
  position: relative;
  width: 100%;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: .5rem;
}

.kinematics-media>img {
  display: block;
  width: 100%;
  height: auto;
}

.vertical-callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vertical-callout {
  position: absolute;
  top: 5%;
  height: var(--vertical-callout-height, 18%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  gap: .65rem;
  text-align: center;
}

.vertical-callout .hardware-callout__text {
  font-size: .92rem;
  font-weight: 600;
}

.vertical-callout .hardware-callout__line {
  position: relative;
  display: block;
  flex: 1 1 auto;
  width: 1px;
  height: auto;
  min-height: 1rem;
  margin: 0 0 .65rem;
  border-top: 0;
  border-left: 1px dashed rgba(255, 255, 255, .68);
  transform: scaleY(0);
  transform-origin: bottom center;
}

.vertical-callout .hardware-callout__dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vertical-callout--one {
  left: 24%;
  top: 36%;
  --vertical-callout-height: 18%;
}

.vertical-callout--two {
  left: 51%;
  top: 14%;
  --vertical-callout-height: 18%;
}

.vertical-callout--three {
  left: 80%;
  top: 40%;
  --vertical-callout-height: 18%;
}

.joint-video-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--section-padding) 0;
  overflow: clip;
  background: #050505;
}

.joint-video-section__stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
}

.joint-video-section__media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  transform: translate(-50%, -50%);
  will-change: width;
}

.joint-video-section__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.joint-video-section__copy {
  position: absolute;
  left: 50%;
  width: calc(var(--safe-width) * .7);
  overflow: hidden;
  padding-left: 1%;
  transform: translateX(-50%);
  will-change: opacity, transform;
}

.sensor-switch {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: #000;
}

.sensor-switch .section-heading {
  width: var(--content-width);
}

#perception {
  --perception-center-slide-width: calc(var(--safe-width) * .6);
}

#perception .section-heading {
  width: var(--perception-center-slide-width);
}

.sensor-switch__stage {
  position: relative;
  width: var(--safe-width);
  margin: 2rem auto 0;
  aspect-ratio: 1800 / 713;
  overflow: visible;
  border-radius: .5rem;
  perspective: 1200px;
  background: transparent;
  outline: 0;
}

.sensor-switch__slide {
  position: absolute;
  top: 50%;
  bottom: auto;
  right: auto;
  left: 20%;
  width: 60%;
  height: auto;
  object-fit: cover;
  transition: none;
  transform-origin: center center;
  backface-visibility: hidden;
  border-radius: .45rem;
}

.fleet-section {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0;
  background: #000;
}

.fleet-section .section-heading,
.fleet-section__media {
  width: var(--safe-width);
}

.fleet-section__media {
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: .5rem;
}

.fleet-section__media video,
.embodied-section .carousel-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-control {
  --control-cover-dim: 0;
  position: relative;
  z-index: 0;
  padding: var(--section-padding-large) 0;
  background: #fff;
}

.platform-control::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 30;
  background: #000;
  opacity: var(--control-cover-dim);
  pointer-events: none;
}

.platform-control .section-heading>span {
  color: var(--brand-on-light);
}

.platform-control .section-heading h2 {
  color: #302e2c;
}

.platform-control .section-heading p {
  color: rgba(34, 31, 31, .72);
}

.control-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: var(--safe-width);
  margin: 3rem auto 0;
}

.control-row+.control-row {
  margin-top: 3rem;
}

.control-row--reverse {
  flex-direction: row-reverse;
}

.control-row__copy {
  flex: 0 0 29%;
}

.control-row__copy>span {
  display: block;
  margin-bottom: .75rem;
  color: var(--brand-on-light);
  font-size: .95rem;
}

.control-row__copy h3 {
  color: #302e2c;
  font-size: 2rem;
  line-height: 1.2;
}

.control-row__copy p {
  margin-top: 1.25rem;
  color: rgba(34, 31, 31, .72);
  font-size: 1rem;
  line-height: 1.65;
}

.control-row__media {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: .55rem;
}

.control-row__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.control-row:hover .control-row__media img {
  transform: scale(1.025);
}

.mechdog-specs__image {
  width: min(50rem, 72vw);
}

@media (max-width: 1920px) {
  .mechdog-callout--arm {
    top: 17%;
    left: -7%;
    right: 68%;
  }

  .mechdog-callout--ai {
    top: 16.6%;
    left: 58%;
    right: 2%;
  }

  .mechdog-callout--controller {
    top: 34%;
    left: 57%;
    right: 5.3%;
  }

  .mechdog-callout--link {
    top: 57%;
    left: 68%;
    right: 3%;
  }
}

@media (max-width: 1600px) {

  .fleet-section .section-heading,
  .fleet-section__media {
    width: var(--content-width);
  }

  .mechdog-callout--arm {
    top: 17%;
    left: 1%;
    right: 68%;
  }

  .mechdog-callout--display {
    top: 52%;
    left: -2.9%;
    right: 64%;
  }

  .mechdog-callout--battery {
    top: 72%;
    left: 2%;
    right: 50%;
  }

  .mechdog-callout--ai {
    top: 16.6%;
    left: 58%;
    right: 8.1%;
  }

  .mechdog-callout--controller {
    top: 34%;
    left: 57%;
    right: 5.8%;
  }

  .mechdog-callout--link {
    top: 57%;
    left: 67%;
    right: 10.8%;
  }

  .mechdog-callout--servo {
    top: 72%;
    left: 59%;
    right: 1.8%;
  }
}

@media (max-width: 1300px) {
  #ai-interaction {
    --perception-center-slide-width: calc(var(--safe-width) * .44);
  }

  .sensor-switch__stage {
    width: calc(var(--safe-width) * .8);
  }

  .sensor-switch__slide {
    left: 22.5%;
    width: 55%;
  }
}

#ai-interaction .section-heading {
  width: var(--content-width);
}

@media (max-width: 900px) {
  #ai-interaction {
    --perception-center-slide-width: calc(var(--safe-width) * .55);
  }


  .mechdog-mosaic__bottom,
  .feature-mosaic__row {
    flex-direction: column;
  }

  .mechdog-mosaic__bottom .mosaic-card,
  .feature-mosaic__row .mosaic-card {
    width: 100%;
  }

  .mechdog-hardware {
    width: var(--safe-width);
  }

  .kinematics-section,
  .ai-decision-section,
  .sensor-switch,
  .fleet-section,
  .platform-control {
    padding: var(--section-padding) 0;
  }

  .kinematics-section {
    padding: 0;
  }

  .kinematics-section .section-heading,
  .ai-decision-section .section-heading,
  .ai-decision-section .fade-stage,
  .sensor-switch .section-heading,
  .fleet-section .section-heading,
  .fleet-section__media,
  .sensor-switch__stage {
    width: var(--safe-width);
  }

  .ai-decision-section .fade-stage {
    min-height: 0;
    margin-top: 2.5rem;
  }

  .ai-decision-section .carousel-tabs.fade-tabs {
    justify-content: flex-start;
    gap: .75rem;
    width: var(--safe-width);
    max-width: var(--safe-width);
    padding-bottom: .25rem;
    overflow-x: auto;
    border-radius: 0;
  }

  .ai-decision-section .fade-tabs button {
    flex: 0 0 7.5rem;
    min-width: 7.5rem;
  }

  .vertical-callout {
    bottom: auto;
  }

  .vertical-callout .hardware-callout__text {
    font-size: .68rem;
  }

  .vertical-callout .hardware-callout__line {
    height: auto;
  }

  .joint-video-section {
    min-height: 0;
    padding: var(--section-padding) 0;
  }

  .joint-video-section__stage {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: var(--safe-width);
    min-height: 0;
    margin: 0 auto;
    overflow: visible;
  }

  .joint-video-section__media {
    position: static;
    order: 2;
    width: 100%;
    max-height: none;
    border-radius: .45rem;
    transform: none;
  }

  .joint-video-section__copy {
    position: static;
    top: auto;
    left: auto;
    order: 1;
    width: 100%;
    padding-left: 0;
    transform: none;
  }

  .control-row,
  .control-row--reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
    width: var(--safe-width);
    margin-top: 4rem;
  }

  .control-row__copy {
    flex-basis: auto;
  }

  .control-row__copy h3 {
    font-size: 1.65rem;
  }
}

@media (max-width: 900px) {
  #perception .section-heading {
    width: calc(100vw - 2rem);
  }
}

@media (max-width: 620px) {
  #perception {
    --perception-center-slide-width: calc(var(--safe-width) * .78);
  }

  .sensor-switch__slide {
    left: 11%;
    width: 78%;
  }

  .sensor-switch__stage {
    aspect-ratio: 1.65 / 1;
  }
}

@media (max-width: 900px) {
  .mosaic-copy__platform {
    gap: .3rem;
  }

  .mosaic-copy__platform img {
    width: 1.45rem;
    height: 1.45rem;
  }

  .puppypi-hardware {
    width: 96vw;
  }

  .puppypi-callout--left-one,
  .puppypi-callout--left-two,
  .puppypi-callout--left-three,
  .puppypi-callout--left-four {
    left: 0;
  }

  .puppypi-callout--right-one,
  .puppypi-callout--right-two,
  .puppypi-callout--right-three,
  .puppypi-callout--right-four {
    right: 0;
  }

  .motion-control__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .motion-control__product {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
  }

  .motion-control__product-copy {
    top: 9%;
    left: 7%;
    width: 36%;
    font-size: .8rem;
    line-height: 1.65;
  }

}

@media (max-width: 620px) {
  .gait-card>img {
    height: auto;
  }

  .gait-card__copy {
    left: 6%;
    width: 34%;
  }

  .gait-card__copy h3 {
    font-size: .68rem;
  }

  .gait-card__copy p {
    margin-top: .25rem;
    font-size: .56rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sensor-switch__slide,
  .control-row__media img {
    transition-duration: .01ms !important;
  }
}
