:root {
  --page-bg: #fffdf9;
  --focus-color: rgba(202, 94, 109, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

.lp {
  width: 100%;
  margin: 0 auto;
  background: var(--page-bg);
}

.lp-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  line-height: 0;
  background: var(--page-bg);
}

.lp-section picture,
.lp-section img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: visible;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  cursor: pointer;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease;
  animation: ctaFloat 4.6s ease-in-out infinite;
  --cta-glow: rgba(202, 94, 109, 0.34);
  --cta-fill: rgba(255, 255, 255, 0.12);
  --cta-ring: rgba(255, 255, 255, 0.44);
}

.hotspot:focus-visible {
  outline: 4px solid var(--focus-color);
  outline-offset: 4px;
}

.hotspot::before {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), var(--cta-fill) 48%, rgba(255, 255, 255, 0.05));
  box-shadow: 0 10px 26px -14px var(--cta-glow), 0 0 0 1px var(--cta-ring);
  content: "";
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  animation: ctaGlow 4.6s ease-in-out infinite;
}

.hotspot::after {
  position: absolute;
  inset: 8% 10%;
  border-radius: inherit;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-65%) skewX(-14deg);
}

.hotspot:hover,
.hotspot:focus-visible {
  animation-name: none;
  transform: translate3d(0, -2px, 0);
}

.hotspot:hover::before,
.hotspot:focus-visible::before {
  box-shadow: 0 16px 34px -12px var(--cta-glow), 0 0 0 1px rgba(255, 255, 255, 0.56);
  opacity: 0.82;
  transform: scale(1.01);
}

.hotspot-fv-join {
  left: 3.3%;
  top: 61.7%;
  width: 23.3%;
  height: 7.5%;
  animation: ctaJoinFloat 4.8s ease-in-out 1.2s infinite;
}

.hotspot-fv-join::before {
  inset: -7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 246, 247, 0.17) 52%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 36px -16px rgba(202, 94, 109, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.52);
  opacity: 0;
  animation: ctaJoinEntrance 1.05s ease-out 0.25s both, ctaJoinGlow 4.8s ease-in-out 1.3s infinite;
}

.hotspot-fv-join::after {
  animation: ctaShine 5.8s ease-in-out 2s infinite;
}

.hotspot-fv-line {
  left: 27.8%;
  top: 61.7%;
  width: 22.4%;
  height: 7.5%;
  animation-delay: -1.2s;
  --cta-glow: rgba(122, 145, 106, 0.34);
}

.hotspot-fv-line::before {
  animation-delay: -1.2s;
}

.hotspot-price-join {
  left: 15.4%;
  top: 79.6%;
  width: 35.6%;
  height: 8.8%;
  animation: ctaJoinFloat 4.8s ease-in-out 1.35s infinite;
}

.hotspot-price-join::before {
  inset: -7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 246, 247, 0.17) 52%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 36px -16px rgba(202, 94, 109, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.52);
  opacity: 0;
  animation: ctaJoinEntrance 1.05s ease-out 0.45s both, ctaJoinGlow 4.8s ease-in-out 1.5s infinite;
}

.hotspot-price-join::after {
  animation: ctaShine 5.8s ease-in-out 2.25s infinite;
}

.hotspot-price-line {
  left: 52.4%;
  top: 79.6%;
  width: 30%;
  height: 8.8%;
  animation-delay: -1.8s;
  --cta-glow: rgba(122, 145, 106, 0.34);
}

.hotspot-price-line::before {
  animation-delay: -1.8s;
}

.video-embed {
  position: absolute;
  z-index: 3;
  left: 2.35%;
  top: 35.9%;
  width: 53.2%;
  height: 51.2%;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  line-height: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
  text-decoration: none;
}

.video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 28, 0.02), rgba(15, 20, 28, 0.18));
  content: "";
}

.video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(54px, 8vw, 90px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(202, 94, 109, 0.92);
  box-shadow: 0 14px 34px rgba(64, 38, 42, 0.18);
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-play-icon::before {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  border-bottom: clamp(11px, 1.7vw, 18px) solid transparent;
  border-left: clamp(17px, 2.5vw, 27px) solid #fff;
  border-top: clamp(11px, 1.7vw, 18px) solid transparent;
  content: "";
  transform: translate(-42%, -50%);
}

.video-poster:hover img,
.video-poster:focus-visible img {
  filter: brightness(1.04);
  transform: scale(1.02);
}

.video-poster:hover .video-play-icon,
.video-poster:focus-visible .video-play-icon {
  box-shadow: 0 18px 42px rgba(64, 38, 42, 0.24);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-poster:focus-visible {
  outline: 4px solid var(--focus-color);
  outline-offset: -4px;
}

@keyframes ctaFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.995);
  }

  50% {
    opacity: 0.76;
    transform: scale(1.018);
  }
}

@keyframes ctaJoinEntrance {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.96);
  }

  65% {
    opacity: 0.84;
    transform: translate3d(0, -3px, 0) scale(1.012);
  }

  100% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ctaJoinFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes ctaJoinGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.992);
    box-shadow: 0 14px 30px -18px rgba(202, 94, 109, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.42);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.024);
    box-shadow: 0 24px 44px -16px rgba(202, 94, 109, 0.56), 0 0 0 1px rgba(255, 255, 255, 0.62);
  }
}

@keyframes ctaShine {
  0%,
  72% {
    opacity: 0;
    transform: translateX(-70%) skewX(-14deg);
  }

  82% {
    opacity: 0.58;
  }

  100% {
    opacity: 0;
    transform: translateX(70%) skewX(-14deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotspot,
  .hotspot::before,
  .hotspot::after,
  .video-poster img,
  .video-play-icon {
    animation: none;
    transition: none;
  }
}

@media (max-width: 767px) {
  .hotspot-fv-join {
    left: 13.4%;
    top: 70%;
    width: 73.2%;
    height: 5.3%;
  }

  .hotspot-fv-line {
    left: 13.4%;
    top: 76.4%;
    width: 73.2%;
    height: 5.3%;
  }

  .hotspot-price-join {
    left: 11.1%;
    top: 76.3%;
    width: 78.9%;
    height: 7%;
  }

  .hotspot-price-line {
    left: 11.1%;
    top: 84.3%;
    width: 78.9%;
    height: 6.3%;
  }

  .video-embed {
    left: 8.9%;
    top: 24.4%;
    width: 80.7%;
    height: 30.8%;
    border-radius: 10px;
  }
}
