:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;

  /* One design pixel of the 1920x1080 concept, for viewport-fixed chrome. */
  --u: min(100vw / 1920, 100vh / 1080);

  /* Camera dolly: accelerate toward the POI, then settle softly. */
  --zoom-duration: 1650ms;
  --zoom-ease: cubic-bezier(0.33, 0.02, 0.12, 1);
  /* Stronger map push so the dolly reads as altitude loss. */
  --zoom-scale: 2.72;
  --zoom-blur: 6.8px;
  --zoom-opacity: 0.12;
  /* ~1/zoom-scale: detail starts as the magnified map crop at the POI. */
  --detail-from-scale: 0.37;
  /* Soft focus-pull: detail clears as it takes over mid-dolly. */
  --detail-reveal-blur: 7.2px;
  --crossfade-duration: 1180ms;
  --crossfade-ease: cubic-bezier(0.18, 0.55, 0.22, 1);
  --crossfade-in-delay: 420ms;
  /* Exit mirrors the in-bloom: hold briefly, then dissolve over the pullback. */
  --crossfade-out-delay: 160ms;
  --ui-settle-delay: 1180ms;
  /* POIs appear only after the camera move has fully settled. */
  --detail-poi-delay: calc(var(--zoom-duration) + 500ms);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

button {
  font: inherit;
}

.experience {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #ffffff;
}

/* The 16:9 design surface always covers the viewport and stays centered. */
.world {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.7778vh);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%) scale(1);
  transform-origin: var(--focus-x, 50%) var(--focus-y, 50%);
  overflow: hidden;
  will-change: transform, filter, opacity;
  /* Exit: map blooms back under the dissolving detail (enter lives on .is-zoomed). */
  transition:
    transform var(--zoom-duration) var(--zoom-ease),
    filter calc(var(--zoom-duration) * 0.78) cubic-bezier(0.2, 0.4, 0.15, 1) 180ms,
    opacity var(--crossfade-duration) var(--crossfade-ease) var(--crossfade-out-delay);
}

.experience.is-zoomed .world {
  transform: translate(-50%, -50%) scale(var(--zoom-scale));
  /* The design blur is authored at 1920px stage width and scales with it. */
  filter: blur(calc(var(--zoom-blur) * var(--stage-scale, 1)));
  opacity: var(--zoom-opacity);
  transition:
    transform var(--zoom-duration) var(--zoom-ease),
    filter calc(var(--zoom-duration) * 0.78) cubic-bezier(0.28, 0, 0.18, 1) 40ms,
    opacity calc(var(--zoom-duration) * 0.58) cubic-bezier(0.45, 0, 0.4, 1) 420ms;
}

.world__image,
.poi-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world__image {
  display: block;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.poi-layer {
  pointer-events: none;
  /* Reappear only once the camera has mostly pulled back. */
  transition: opacity 420ms ease calc(var(--zoom-duration) * 0.52);
}

.experience.is-zoomed .poi-layer {
  opacity: 0;
  transition-duration: 280ms;
  transition-delay: 0s;
}

.experience.is-zoomed .world .poi {
  pointer-events: none;
}

.detail {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Exit: same duration + ease as the fade-in bloom. */
  transition:
    opacity var(--crossfade-duration) var(--crossfade-ease)
      var(--crossfade-out-delay),
    visibility 0s linear calc(var(--crossfade-out-delay) + var(--crossfade-duration));
}

.experience.is-zoomed .detail {
  opacity: 1;
  visibility: visible;
  /* Bloom in once the map is already soft mid-dolly. */
  transition:
    opacity var(--crossfade-duration) var(--crossfade-ease)
      var(--crossfade-in-delay),
    visibility 0s linear 0s;
}

/* Continuous zoom with the world — grows out of the same POI focus. */
.detail__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--detail-from-scale));
  transform-origin: var(--focus-x, 50%) var(--focus-y, 50%);
  /* Match map softness at handoff, then pull focus sharp. */
  filter: blur(calc(var(--detail-reveal-blur) * var(--stage-scale, 1)))
    brightness(1.06)
    saturate(0.92);
  user-select: none;
  will-change: transform, filter;
  /* Exit: soft focus-pull out early, while opacity dissolves. */
  transition:
    transform var(--zoom-duration) var(--zoom-ease),
    filter calc(var(--crossfade-duration) * 0.92) cubic-bezier(0.35, 0, 0.35, 1) 40ms;
}

.experience.is-zoomed .detail__image {
  transform: scale(1);
  filter: blur(0) brightness(1) saturate(1);
  transition:
    transform var(--zoom-duration) var(--zoom-ease),
    filter calc(var(--crossfade-duration) * 1.05) cubic-bezier(0.2, 0.4, 0.15, 1)
      calc(var(--crossfade-in-delay) + 80ms);
}

.detail-poi-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Hide promptly on close; long delay only applies while zoomed. */
  transition:
    opacity 360ms ease,
    visibility 0s linear 360ms;
}

.experience.is-zoomed .detail-poi-layer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 420ms ease var(--detail-poi-delay),
    visibility 0s linear var(--detail-poi-delay);
}

.detail-poi {
  width: calc(74.486 * var(--u));
  /* Blink would override opacity and show POIs during the camera move. */
  animation: none;
  pointer-events: none;
}

.experience.is-zoomed .detail-poi {
  pointer-events: auto;
  animation: poi-blink 2.4s var(--delay, 0s) ease-in-out infinite;
  animation-delay: calc(var(--detail-poi-delay) + var(--delay, 0s));
}

.energy-card {
  position: fixed;
  left: calc(21.73 * var(--u));
  top: calc(22 * var(--u));
  z-index: 3;
  width: calc(756.29 * var(--u));
  height: calc(173.75 * var(--u));
  margin: 0;
  overflow: hidden;
  border: calc(0.644 * var(--u)) solid #cdcdcd;
  border-radius: calc(9.666 * var(--u));
  background-image:
    linear-gradient(165.054deg, rgba(0, 70, 115, 0.4) 0%, rgba(0, 120, 195, 0.4) 103.24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(calc(9.666 * var(--u)));
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-24 * var(--u)));
  transition:
    opacity 520ms ease,
    transform 620ms var(--zoom-ease),
    visibility 0s linear 620ms;
}

.experience.is-zoomed .energy-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: var(--ui-settle-delay), var(--ui-settle-delay), 0s;
}

.energy-card__title {
  position: absolute;
  top: calc(40.47 * var(--u));
  left: calc(34.97 * var(--u));
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(181.214 * var(--u));
  height: calc(30.218 * var(--u));
  margin: 0;
  transform: translateY(-50%);
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(33.576 * var(--u));
  font-weight: 300;
  line-height: calc(25.182 * var(--u));
}

.energy-card__divider {
  position: absolute;
  left: calc(-68.43 * var(--u));
  top: calc(63.4 * var(--u));
  width: calc(235.514 * var(--u));
  height: max(1px, calc(0.839 * var(--u)));
  object-fit: fill;
  transform: rotate(180deg);
  pointer-events: none;
  user-select: none;
}

.energy-card__metrics {
  position: absolute;
  top: calc(84.595 * var(--u));
  left: calc(34.97 * var(--u));
  right: calc(34.97 * var(--u));
  display: flex;
  align-items: flex-start;
  gap: calc(24 * var(--u));
}

.energy-card__metric {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* Value frame bottom (117.19) → label top (120.55) */
  gap: calc(3.36 * var(--u));
}

.energy-card__reading {
  display: flex;
  align-items: baseline;
  height: calc(32.596 * var(--u));
  column-gap: 0;
}

.energy-card__value {
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(37.773 * var(--u));
  font-weight: 700;
  line-height: calc(25.182 * var(--u));
}

.energy-card__unit {
  color: #d6d6d6;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(20.985 * var(--u));
  font-weight: 400;
  line-height: calc(25.182 * var(--u));
}

.energy-card__label {
  margin: 0;
  max-width: 100%;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(10.073 * var(--u));
  font-weight: 400;
  line-height: calc(12.591 * var(--u));
}

.product-slider {
  position: fixed;
  right: calc(34.67 * var(--u));
  bottom: calc(31.09 * var(--u));
  z-index: 2;
  width: calc(914 * var(--u));
  height: calc(310 * var(--u));
  margin: 0;
  overflow: hidden;
  border: calc(0.72 * var(--u)) solid #cdcdcd;
  border-radius: calc(10.805 * var(--u));
  background-image:
    linear-gradient(158.492deg, rgba(0, 70, 115, 0.4) 0%, rgba(0, 120, 195, 0.4) 103.24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(calc(10.805 * var(--u)));
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(36 * var(--u)));
  transition:
    opacity 520ms ease,
    transform 620ms var(--zoom-ease),
    visibility 0s linear 620ms;
}

.experience.is-zoomed .product-slider {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: var(--ui-settle-delay), var(--ui-settle-delay), 0s;
}

.product-slider__title {
  position: absolute;
  top: calc(10.171 * var(--u));
  left: 50%;
  z-index: 2;
  width: calc(136.859 * var(--u));
  height: calc(12.537 * var(--u));
  margin: 0;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: calc(12.966 * var(--u));
  font-weight: 700;
  line-height: calc(14.406 * var(--u));
  text-align: center;
}

.product-slider__viewport {
  position: absolute;
  top: calc(37.11 * var(--u));
  right: 0;
  bottom: calc(40.288 * var(--u));
  left: calc(39.617 * var(--u));
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-slider__viewport::-webkit-scrollbar {
  display: none;
}

.product-slider__track {
  display: flex;
  gap: calc(35.589 * var(--u));
  width: max-content;
  height: 100%;
  padding-right: calc(80 * var(--u));
}

.product-card {
  display: flex;
  flex: 0 0 calc(171.861 * var(--u));
  flex-direction: column;
  align-items: center;
  gap: calc(14.406 * var(--u));
  height: calc(232.602 * var(--u));
  padding: 0 0 calc(18.008 * var(--u));
  overflow: hidden;
  border: 0;
  border-radius: calc(8.644 * var(--u));
  background: #ffffff;
  color: #282828;
  text-align: left;
  scroll-snap-align: start;
  cursor: pointer;
}

.product-card:focus-visible {
  outline: calc(2 * var(--u)) solid #0078c3;
  outline-offset: calc(2 * var(--u));
}

.product-card__media {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: calc(172.232 * var(--u));
  padding: calc(21.61 * var(--u)) calc(18.008 * var(--u)) calc(18.008 * var(--u));
  border-radius: calc(8.644 * var(--u)) calc(8.644 * var(--u)) 0 0;
  background: #f1f1f1;
}

.product-card__image {
  display: block;
  width: calc(128.853 * var(--u));
  height: calc(128.853 * var(--u));
  object-fit: cover;
}

.product-card__copy {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  gap: calc(2.881 * var(--u));
  align-items: flex-start;
  width: calc(136.859 * var(--u));
  min-height: 0;
}

.product-card__name,
.product-card__link {
  display: block;
  width: 100%;
  margin: 0;
  line-height: calc(14.406 * var(--u));
  white-space: nowrap;
}

.product-card__name {
  overflow: hidden;
  color: #282828;
  font-size: calc(12.966 * var(--u));
  font-weight: 700;
  text-overflow: ellipsis;
}

.product-card__link {
  color: #0078c3;
  font-size: calc(10.084 * var(--u));
  font-weight: 300;
}

.product-slider__pagination {
  position: absolute;
  bottom: calc(16.639 * var(--u));
  left: 50%;
  z-index: 2;
  display: flex;
  gap: calc(3.602 * var(--u));
  transform: translateX(-50%);
}

.product-slider__dot {
  width: calc(7.203 * var(--u));
  height: calc(7.203 * var(--u));
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent url("assets/dot-inactive.svg") center / contain no-repeat;
  cursor: pointer;
}

.product-slider__dot.is-active {
  background-image: url("assets/dot-active.svg");
}

.product-slider__fade {
  position: absolute;
  top: calc(-5.342 * var(--u));
  right: calc(-7.905 * var(--u));
  width: calc(156.447 * var(--u));
  height: calc(325.286 * var(--u));
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 70, 115, 0), rgba(0, 70, 115, 0.72));
}

.experience.is-product-open .product-slider {
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(36 * var(--u)));
  transition-delay: 0s;
}

.product-detail {
  position: fixed;
  top: calc(22 * var(--u));
  right: calc(63 * var(--u));
  z-index: 4;
  width: calc(722 * var(--u));
  height: calc(1027 * var(--u));
  overflow: hidden;
  border: calc(0.72 * var(--u)) solid #cdcdcd;
  border-radius: calc(15 * var(--u));
  background-image:
    linear-gradient(121.177deg, rgba(0, 70, 115, 0.4) 0%, rgba(0, 120, 195, 0.4) 103.24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(calc(10.805 * var(--u)));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(calc(48 * var(--u)));
  transition:
    opacity 440ms ease,
    transform 560ms var(--zoom-ease),
    visibility 0s linear 560ms;
}

.experience.is-product-open .product-detail {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.product-detail__close {
  position: absolute;
  top: calc(12.64 * var(--u));
  right: calc(27.55 * var(--u));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: calc(8.27 * var(--u));
  height: calc(24.38 * var(--u));
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: calc(12 * var(--u));
  font-weight: 300;
  line-height: calc(12.984 * var(--u));
  cursor: pointer;
}

.product-detail__close-icon {
  display: grid;
  place-items: center;
  width: calc(23.659 * var(--u));
  height: calc(23.659 * var(--u));
  border: calc(1 * var(--u)) solid #ffffff;
  border-radius: 50%;
}

.product-detail__close-icon img {
  display: block;
  width: calc(14.095 * var(--u));
  height: calc(14.095 * var(--u));
  transform: rotate(45deg);
}

.product-detail__gallery {
  position: absolute;
  top: calc(46.28 * var(--u));
  left: calc(26.28 * var(--u));
  width: calc(668 * var(--u));
  height: calc(545 * var(--u));
  margin: 0;
  overflow: hidden;
  border-radius: calc(15 * var(--u));
  background: #f1f1f1;
}

.product-detail__hero {
  position: absolute;
  top: calc(44.36 * var(--u));
  left: calc(116.22 * var(--u));
  display: block;
  width: calc(467.973 * var(--u));
  height: calc(467.973 * var(--u));
  object-fit: cover;
  user-select: none;
  transition:
    opacity 180ms ease,
    transform 280ms ease;
}

.product-detail__hero.is-changing {
  opacity: 0;
  transform: scale(0.96);
}

.product-detail__arrow {
  position: absolute;
  top: calc(278.34 * var(--u));
  z-index: 2;
  display: grid;
  place-items: center;
  width: calc(22.312 * var(--u));
  height: calc(22.312 * var(--u));
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #0078c3;
  cursor: pointer;
}

.product-detail__arrow--previous {
  left: calc(32.21 * var(--u));
}

.product-detail__arrow--next {
  right: calc(32.21 * var(--u));
  transform: rotate(180deg);
}

.product-detail__arrow img {
  display: block;
  width: calc(11.156 * var(--u));
  height: calc(11.156 * var(--u));
}

.product-detail__dots {
  position: absolute;
  bottom: calc(17.8 * var(--u));
  left: 50%;
  display: flex;
  gap: calc(3.602 * var(--u));
  transform: translateX(-50%);
}

.product-detail__gallery-dot {
  width: calc(7.203 * var(--u));
  height: calc(7.203 * var(--u));
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #a5a5a5;
  cursor: pointer;
}

.product-detail__gallery-dot.is-active {
  background: #0078c3;
}

.product-detail__copy {
  position: absolute;
  top: calc(606.78 * var(--u));
  left: calc(26.28 * var(--u));
  width: calc(668 * var(--u));
  height: calc(244 * var(--u));
  border-radius: calc(15 * var(--u));
  background: #ffffff;
  color: #282828;
}

.product-detail__copy h2 {
  position: absolute;
  top: calc(37.78 * var(--u));
  left: calc(29.35 * var(--u));
  margin: 0;
  font-size: calc(30.14 * var(--u));
  line-height: calc(31 * var(--u));
}

.product-detail__columns {
  position: absolute;
  top: calc(82.06 * var(--u));
  left: calc(29.35 * var(--u));
  display: grid;
  grid-template-columns: repeat(2, calc(276.442 * var(--u)));
  gap: calc(15.016 * var(--u));
}

.product-detail__columns p {
  margin: 0;
  font-size: calc(13.133 * var(--u));
  line-height: 1.2;
}

.product-detail__related {
  position: absolute;
  top: calc(866.28 * var(--u));
  left: calc(26.28 * var(--u));
  width: calc(668 * var(--u));
  height: calc(139 * var(--u));
  overflow: hidden;
  border-radius: calc(15 * var(--u));
  background: #ffffff;
  color: #282828;
}

.product-detail__related h3 {
  position: absolute;
  top: calc(5.6 * var(--u));
  left: calc(26.87 * var(--u));
  margin: 0;
  font-size: calc(15 * var(--u));
  line-height: calc(21.125 * var(--u));
  font-weight: 400;
}

.product-detail__related-list {
  position: absolute;
  top: calc(31.5 * var(--u));
  left: calc(22.19 * var(--u));
  display: flex;
  gap: calc(18.477 * var(--u));
}

.related-product {
  flex: 0 0 calc(104.334 * var(--u));
  width: calc(104.334 * var(--u));
  height: calc(96.747 * var(--u));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: calc(9.485 * var(--u));
  background: #f7f7f7;
  color: #282828;
  text-align: left;
  cursor: pointer;
}

.related-product__media {
  display: grid;
  place-items: center;
  width: 100%;
  height: calc(69.556 * var(--u));
  border-radius: calc(9.485 * var(--u)) calc(9.485 * var(--u)) 0 0;
  background: #e6e6e6;
}

.related-product__image {
  display: block;
  width: calc(59.759 * var(--u));
  height: calc(59.759 * var(--u));
  object-fit: cover;
}

.related-product__name,
.related-product__link {
  display: block;
  width: calc(82.984 * var(--u));
  margin-left: calc(10.611 * var(--u));
  overflow: hidden;
  line-height: calc(8.735 * var(--u));
  white-space: nowrap;
  text-overflow: ellipsis;
}

.related-product__name {
  margin-top: calc(4.425 * var(--u));
  font-size: calc(7.862 * var(--u));
  font-weight: 700;
}

.related-product__link {
  color: #0078c3;
  font-size: calc(6.115 * var(--u));
  font-weight: 300;
}

.poi {
  position: absolute;
  width: 3.87947%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: url("assets/poi.svg") center / contain no-repeat;
  transform: scale(1);
  transform-origin: center;
  cursor: pointer;
  pointer-events: auto;
  animation: poi-blink 2.4s var(--delay, 0s) ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}

.poi::after {
  content: "";
  position: absolute;
  inset: 21.9%;
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: inherit;
  transition:
    inset 180ms ease,
    border-color 180ms ease;
}

.poi:hover,
.poi:focus-visible,
.poi.is-active {
  z-index: 1;
  outline: none;
  filter: drop-shadow(0 0 12px rgba(255, 111, 0, 0.9));
}

.poi:focus-visible::after,
.poi.is-active::after {
  inset: 12%;
  border-color: rgba(255, 255, 255, 0.95);
}

.hud {
  position: fixed;
  left: calc(56 * var(--u));
  bottom: calc(31.09 * var(--u));
  z-index: 5;
  width: calc(312 * var(--u));
  height: calc(74 * var(--u));
  border: calc(0.49 * var(--u)) solid #cdcdcd;
  border-radius: calc(92.685 * var(--u));
  background-image:
    linear-gradient(164.593deg, rgba(0, 70, 115, 0.4) 0%, rgba(0, 120, 195, 0.4) 103.24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(calc(7.343 * var(--u)));
  overflow: hidden;
  transition: width 520ms var(--zoom-ease);
}

/* The bar grows to make room for the back button. */
.experience.is-zoomed .hud {
  width: calc(431 * var(--u));
}

.hud__logo {
  position: absolute;
  left: calc(39.51 * var(--u));
  top: calc(18.79 * var(--u));
  width: calc(219.556 * var(--u));
  height: calc(37.226 * var(--u));
  user-select: none;
  transition: left 520ms var(--zoom-ease);
}

.experience.is-zoomed .hud__logo {
  left: calc(163.51 * var(--u));
}

.hud__back,
.hud__divider {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 320ms ease,
    visibility 0s linear 320ms;
}

.experience.is-zoomed .hud__back,
.experience.is-zoomed .hud__divider {
  opacity: 1;
  visibility: visible;
  transition-delay: 420ms, 0s;
}

.hud__back {
  position: absolute;
  left: calc(43.93 * var(--u));
  top: calc(15.27 * var(--u));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(1.21 * var(--u));
  width: calc(47 * var(--u));
  padding: 0;
  border: 0;
  background: none;
  color: #ffffff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hud__back:focus-visible {
  outline: calc(2 * var(--u)) solid #ffffff;
  outline-offset: calc(4 * var(--u));
  border-radius: calc(6 * var(--u));
}

.hud__back-icon {
  display: block;
  width: calc(30 * var(--u));
  height: calc(30 * var(--u));
  transition: transform 220ms ease;
}

.hud__back:hover .hud__back-icon,
.hud__back:focus-visible .hud__back-icon {
  transform: translateX(calc(-2 * var(--u)));
}

.hud__back-label {
  font-size: calc(12 * var(--u));
  line-height: calc(12.984 * var(--u));
  font-weight: 300;
  white-space: nowrap;
}

.hud__divider {
  position: absolute;
  left: calc(124.98 * var(--u));
  top: calc(15.27 * var(--u));
  width: calc(0.5 * var(--u));
  height: calc(46.601 * var(--u));
  background: #ffffff;
}

@keyframes poi-blink {
  0%,
  42%,
  100% {
    opacity: 0.72;
    transform: scale(0.88);
    filter: drop-shadow(0 0 0 rgba(255, 111, 0, 0));
  }

  16% {
    opacity: 1;
    transform: scale(1.12);
    filter: drop-shadow(0 0 15px rgba(255, 111, 0, 0.85));
  }
}

@media (prefers-reduced-motion: reduce) {
  .poi {
    animation: none;
  }

  .world,
  .detail,
  .detail__image,
  .poi-layer,
  .detail-poi-layer,
  .detail-poi,
  .energy-card,
  .product-slider,
  .product-detail,
  .product-detail__hero,
  .hud,
  .hud__logo,
  .hud__back,
  .hud__divider {
    transition-duration: 1ms;
  }
}
