@charset "UTF-8";
.fp-hero {
  --delta-px: 10vw;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px 0;
}
.fp-hero .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 110% at 50% 30%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45)), linear-gradient(180deg, rgba(10, 0, 20, 0) 0%, rgba(10, 0, 20, 0.45) 70%, rgba(10, 0, 20, 0.75) 100%), url("hero-bg.jpg") center/cover no-repeat;
  filter: saturate(1.05);
}
.fp-hero .wrap {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.fp-hero {
  /* top badge */
}
.fp-hero .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #1a1320;
  background: rgba(var(--accent-2));
  padding: 14px 25px 14px 20px;
  border-radius: 16px;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  box-shadow: 0 10px 28px rgba(245, 193, 25, 0.25);
  margin: 8px 0 18px;
}
.fp-hero .badge::before {
  content: "📣";
  margin-right: 8px;
}
.fp-hero .char {
  position: absolute;
  bottom: 0;
  width: 43%;
  z-index: 0;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
}
.fp-hero .char.cat {
  left: 0;
  border-bottom-left-radius: 18px;
}
.fp-hero .char.witch {
  right: 0;
  border-bottom-right-radius: 18px;
}
.fp-hero .headline {
  font-weight: 900;
  line-height: 1.05;
  margin: 0 auto 22px;
  color: rgb(var(--text));
  font-size: clamp(28px, 5.6vw, 64px);
  max-width: 1100px;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}
.fp-hero .headline .gold {
  color: rgba(var(--accent-2));
}
.fp-hero .cta {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 14px;
  background: linear-gradient(90deg, #a3e635, #65a30d);
  color: rgba(var(--accent-1));
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(102, 201, 50, 0.35);
  transition: transform 0.15s ease;
}
.fp-hero .cta:active {
  transform: translateY(1px);
}
.fp-hero {
  /* bottom decorative divider */
}
.fp-hero .divider {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.85;
}
.fp-hero .diamond {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(var(--accent-2));
  transform: rotate(45deg);
  border-radius: 2px;
}
.fp-hero .line {
  width: 110px;
  height: 2px;
  background: rgba(var(--accent-2));
}
@media (max-width: 600px) {
  .fp-hero .line {
    width: 64px;
  }
}
.fp-hero .frame {
  position: absolute;
  perspective: 900px;
  inset: 0;
  border-radius: 18px;
  border: 3px solid rgba(var(--accent-2), 0.85);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.fp-hero .char.from-left {
  transform: translateX(calc(var(--delta-px) * -1));
}
.fp-hero .char.from-right {
  transform: translateX(var(--delta-px));
}
.fp-hero {
  /* when visible, run animation */
}
.fp-hero .char.is-visible.from-left {
  animation: slideInLeft 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.fp-hero .char.is-visible.from-right {
  animation: slideInRight 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes slideInLeft {
  from {
    transform: translateX(calc(var(--delta-px) * -1));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(var(--delta-px));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fp-hero {
  /* accessibility: no animation for reduced motion users */
}
@media (prefers-reduced-motion: reduce) {
  .fp-hero .char {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .fp-hero {
    min-height: 45vh;
  }
}