/** Shopify CDN: Minification failed

Line 288:0 Unexpected "}"

**/
.m64-hero {
  position: relative;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Decorative stripe */
.m64-hero__stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}

.m64-hero__stripe img {
  width: 100%;
  height: auto;
  display: block;
}

.m64-hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 7rem;
  width: 100%;
  position: relative;
}

/* Media container */
.m64-hero__media {
  position: relative;
  width: 85vw;
  max-width: 1800px;
  height: auto;
  aspect-ratio: 16 / 9;
  z-index: 1;
  margin-top: -15rem;
}

.m64-hero__unlit-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  -webkit-user-drag: none;
}

.m64-hero__unlit-image.is-hidden {
  opacity: 0;
}

.m64-hero__reveal-video,
.m64-hero__lit-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  -webkit-user-drag: none;
}

.m64-hero__reveal-video.is-playing {
  opacity: 1;
}

.m64-hero__lit-image.is-active {
  opacity: 1;
}

/* Controls */
.m64-hero__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-bottom: -6rem;
}

/* Large desktops */
@media screen and (min-width: 1799px) {
  .m64-hero__controls {
    margin-bottom: -10rem;
  }
}

/* Tablet and below */
@media screen and (max-width: 1379px) {
  .m64-hero__controls {
    margin-bottom: -2rem;
  }
}

@media screen and (max-width: 1259px) {
  .m64-hero__controls {
    margin-bottom: rem;
  }
}

@media screen and (max-width: 749px) {
  .m64-hero__controls {
    margin-bottom: -4rem;
  }
}
.m64-hero__swatches {
  display: flex;
  gap: 1.5rem;
  pointer-events: auto;
}

.m64-hero__swatches.is-disabled {
  pointer-events: none;
}

.m64-hero__swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: var(--swatch-color);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.m64-hero__swatch:hover {
  background-color: var(--swatch-color);
}

.m64-hero__swatch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  border: 2px solid var(--swatch-color);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.m64-hero__swatch:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.m64-hero__swatch.is-selected::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Prompt text */
.m64-hero__prompt {
  font-family: magistral, sans-serif;
  color: #ffffff;
  font-size: 2.5rem;
  margin-top: 2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Floating CTA */
.m64-hero__cta {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: #ff9900;
  color: #ffffff;
  font-family: magistral, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1.25rem 3rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 10;
  border: none;
  cursor: pointer;
}

.m64-hero__cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.m64-hero__cta.is-near-waitlist {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 749px) {
  .m64-hero__cta:active,
  .m64-hero__cta:focus {
    background-color: #ff9900 !important;
  }
}

/* Large screens */
@media screen and (min-width: 1200px) {
  .m64-hero__media {
    width: 90vw;
    max-width: 2200px;
    margin-bottom: -13rem;
  }
}

@media screen and (min-width: 2000px) {
  .m64-hero__media {
    width: 90vw;
    max-width: 2200px;
    margin-bottom: -15rem;
    margin-top: -20rem;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .m64-hero__container {
    padding: 1rem 1rem 5rem;
  }
  
  .m64-hero__logo img {
    width: 250px;
  }
  
  .m64-hero__media {
    width: 130vw;
    margin-top: 0px;
    margin-bottom: -2rem;
  }
  
  .m64-hero__controls {
    margin-top: 1rem;
  }
  
  .m64-hero__swatches {
    gap: 1rem;
  }
  
  .m64-hero__swatch {
    width: 36px;
    height: 36px;
  }
  
  .m64-hero__prompt {
    font-size: 1.5rem;
  }
  
  .m64-hero__cta {
    bottom: 1rem;
    padding: 1rem 2rem;
    width: 90%;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    background-color: #ff9900 !important;
  }
  
  .m64-hero__cta:active,
  .m64-hero__cta:focus,
  .m64-hero__cta:hover {
    background-color: #ff9900 !important;
    outline: none;
  }
  }
}