/* Reset trimmed to what this page actually uses. The original shipped a full
   normalize.css plus an @font-face pointing at assets/fonts/HelveticaNeueLTPro
   files that are not in the project (404 on every load) - both removed.
   There is no text on this page, so no webfont is needed at all. */
html { -webkit-text-size-adjust: 100%; }
* { box-sizing: border-box; }
body { margin: 0; }
img { border-style: none; }
a { background-color: rgba(0, 0, 0, 0); }
.video-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.video-holder .wistia_embed {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}

body {
  line-height: 1;
  background-color: #000 !important;
  background-repeat: no-repeat;
  overflow: visible;
  background: url("bg.jpg") no-repeat center top;
  background-image: image-set(url("bg.webp") type("image/webp"), url("bg.jpg") type("image/jpeg"));
  background-size: 1920px 1080px;
}
.cta-btn,
.modal-link {
  cursor: pointer;
}
.video-container {
  max-width: 635px;
  margin: 0 auto;
  margin-top: 0px;
  position: relative;
  height: auto;
  margin-top: 22px;
  mask-image: linear-gradient(to top, transparent 0%, #fff 7%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: bottom;
}

@media screen and (min-width: 621px) {
  .video-container {
    mask-image: linear-gradient(
        to top,
        transparent 0%,
        #fff 3%,
        #fff 97%,
        transparent 100%
      ),
      linear-gradient(
        to left,
        transparent 0%,
        #fff 3%,
        #fff 97%,
        transparent 100%
      );
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-composite: intersect;
  }
}

.video-container .wistia_embed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;

  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hidden-cta {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 100;
}
.main-video .video-container {
  aspect-ratio: 8 / 11;
}

@media screen and (max-width: 767px) {
}

.trigger-off {
  pointer-events: none;
}

.play-btn {
  position: absolute;
  width: 130px;
  height: 130px;
  z-index: 2;
  animation: pulse 1s infinite ease-in-out;
  transform-origin: 0 0 0;
  pointer-events: none;
  z-index: 111;
  left: 50%;
  bottom: 26%;
  transform: translateX(-50%);
}
.play-btn img {
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 620px) {
  body {
    background: #000;
  }
  .main-header {
    margin-top: 0;
  }
  .video-container {
    margin-top: 0;
  }
  .play-btn {
    width: 25vw;
    height: 25vw;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1) translateX(-50%);
  }
  50% {
    transform: scale(1.1) translateX(-50%);
  }
  100% {
    transform: scale(1) translateX(-50%);
  }
}

/* ==========================================================================
   HEADLINE
   Replaces the English-only headline that geo-modal.js used to inject.
   Real HTML text, so it translates per geo (see index.html LANG_COPY).
   ========================================================================== */
.headline {
  max-width: 635px;
  margin: 0 auto;
  padding: 28px 16px 6px;
  text-align: center;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  /* reserve the space before the font loads so nothing jumps */
  min-height: 168px;
}
.headline span {
  display: block;
  background: linear-gradient(180deg, #fbe9a4 0%, #e8bc5c 45%, #cf9a2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #e5b757;              /* fallback where background-clip:text is unsupported */
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.65));
}
.headline .hl-1 { font-size: clamp(22px, 5.6vw, 40px); }
.headline .hl-2 { font-size: clamp(42px, 11vw, 78px); margin: 2px 0 4px; }
.headline .hl-3 { font-size: clamp(20px, 5.2vw, 37px); }

/* Long strings (FR/DE) get a step down so the block keeps its shape. */
.headline.is-long .hl-1 { font-size: clamp(17px, 4.2vw, 30px); }
.headline.is-long .hl-2 { font-size: clamp(36px, 9vw, 66px); }

@media screen and (max-width: 620px) {
  .headline { padding: 18px 14px 4px; min-height: 0; }
}
