.zp-hero {
  position: relative;
  border-bottom: 1px solid rgba(199, 120, 69, 0.2);
  padding-bottom: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(255, 229, 210, 0.45), transparent 55%),
              radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15), transparent 45%),
              linear-gradient(135deg, #150c09 0%, #1f1712 45%, #2b1a16 100%);
}

.zp-hero::before {
  content: '';
  position: absolute;
  inset: -20% -5% auto -5%;
  height: 80%;
  background: radial-gradient(circle at 20% 40%, rgba(247, 165, 69, 0.35), transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(201, 56, 43, 0.22), transparent 65%);
  opacity: 0.9;
  filter: blur(12px);
  animation: hero-glow 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.zp-hero::after {
  content: '';
  position: absolute;
  inset: auto -15% -25% -15%;
  height: 60%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 65%);
  opacity: 0.8;
  filter: blur(40px);
  animation: hero-glow 22s ease-in-out infinite reverse;
  pointer-events: none;
}

.zp-hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.zp-hero__bg::before,
.zp-hero__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
  animation: hero-orbit 20s ease-in-out infinite;
}

.zp-hero__bg::before {
  width: 260px;
  height: 260px;
  top: 20%;
  left: 5%;
  background: radial-gradient(circle, rgba(242, 92, 60, 0.4), transparent 70%);
}

.zp-hero__bg::after {
  width: 220px;
  height: 220px;
  bottom: 14%;
  right: 14%;
  background: radial-gradient(circle, rgba(247, 165, 69, 0.4), transparent 70%);
  animation-delay: 4s;
}

@keyframes hero-orbit {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.06); }
}

@keyframes hero-glow {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.65; }
  50% { transform: translate3d(-2%, 2%, 0) scale(1.05); opacity: 0.9; }
  100% { transform: translate3d(2%, -2%, 0) scale(1.02); opacity: 0.75; }
}

.zp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  width: min(var(--container), 100%);
  margin: clamp(16px, 4vw, 40px) auto ;
}

.zp-hero__copy {
  position: relative;
  display: grid;
  gap: 20px;
  grid-column: 2;
  padding: clamp(16px, 3vw, 28px);
  border-radius: 32px;
  isolation: isolate;
}

.zp-hero__copy::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(21, 12, 9, 0.92), rgba(22, 15, 12, 0.78));
  box-shadow: 0 35px 90px rgba(5, 3, 1, 0.45);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
  z-index: -1;
}

.zp-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--zp-crimson);
  display: inline-flex;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(199, 120, 69, 0.35);
}

.zp-kicker::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--zp-crimson-light);
  box-shadow: 0 0 12px rgba(247, 165, 69, 0.7);
}

.zp-h1 {
  margin: 0;
  font-size: clamp(1.1rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  color: #fff6ef;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 25px rgba(5, 5, 5, 0.55);
}

.zp-hero__p {
  margin: 0;
  color: rgba(255, 245, 234, 0.92);
  font-size: 1.22rem;
  line-height: 1.9;
}

.zp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.zp-hero__cta .zp-btn {
  border-radius: 999px;
  padding: 14px 30px;
  letter-spacing: 0.14em;
}

.zp-hero__cta .zp-btn--primary {
  background: linear-gradient(120deg, #c9382b, #f25c3c 55%, #f7a545 100%);
  border: none;
  color: #fff7f0;
  box-shadow: 0 24px 50px rgba(40, 12, 5, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.zp-hero__cta .zp-btn--primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px rgba(40, 12, 5, 0.35);
  background: linear-gradient(120deg, #ff6a4d, #ff8e5e 55%, #ffc36d 100%);
}

.zp-hero__cta .zp-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff6ef;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.zp-hero__cta .zp-btn--ghost:hover {
  color: #180d09;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.zp-hero__tags {
  display: inline-flex;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 246, 235, 0.85);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(12, 8, 6, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 30px rgba(6, 3, 1, 0.35);
  backdrop-filter: blur(12px);
  margin: 0 0 18px;
}

.zp-hero__tag {
  position: relative;
  padding-left: 16px;
}

.zp-hero__tag::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(247, 165, 69, 0.95);
  transform: translateY(-50%);
}

.zp-hero__poster {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  max-width: 360px;
  width: 100%;
  grid-column: 1;
  padding-top: 6px;
  position: relative;
}

.zp-hero__poster::before {
  content: '';
  position: absolute;
  inset: 24px 8px auto -32px;
  height: 70%;
  border-radius: 32px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 235, 210, 0.25), transparent 65%),
              linear-gradient(140deg, rgba(7, 4, 3, 0.8), rgba(7, 4, 3, 0));
  filter: blur(26px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.zp-hero__frame {
  aspect-ratio: 5 / 5;
  border: 1px solid rgba(199, 120, 69, 0.3);
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), #ffe0bf 60%),
              linear-gradient(200deg, #fff4ea, #f7caa3);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 32px; 
  width: min(420px, 100%);
  max-width: 420px;
  box-shadow: 0 35px 80px rgba(6, 3, 1, 0.55), inset 0 0 18px rgba(255, 255, 255, 0.55);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.zp-hero__frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  border: 1px dashed rgba(247, 165, 69, 0.45);
  opacity: 0.6;
}

.zp-hero__frame::after {
  content: '';
  position: absolute;
  inset: -25% -20% -35% -20%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 197, 145, 0.5), transparent 70%);
  z-index: -1;
}

.zp-hero__logo {
  height: auto;
  filter: drop-shadow(0 22px 45px rgba(68, 34, 21, 0.25));
  margin: auto auto 36px;
}

.zp-hero__poster:hover .zp-hero__frame {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 45px 90px rgba(5, 2, 0, 0.7), inset 0 0 24px rgba(255, 255, 255, 0.6);
}

.zp-hero__note {
  margin-top: -6px;
  text-align: left;
  color: rgba(255, 245, 234, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (max-width: 1080px) {
  .zp-hero__inner {
    grid-template-columns: 1fr;
    margin-top: clamp(16px, 5vw, 32px);
  }

  .zp-hero__poster {
    order: -1;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: min(520px, 100%);
  }

  .zp-hero__copy {
    grid-column: 1;
    width: 100%;
    padding: clamp(20px, 5vw, 32px);
    margin-left: auto;
    margin-right: auto;
    max-width: min(520px, 100%);
  }

  .zp-hero__frame {
    margin-inline: auto;
    width: clamp(280px, 65vw, 400px);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .zp-hero {
    padding: 70px 20px 60px;
  }

  .zp-hero__inner {
    gap: 28px;
  }

  .zp-hero__copy {
    text-align: center;
    justify-items: center;
    grid-column: 1;
    padding: clamp(20px, 6vw, 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .zp-hero__cta {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .zp-hero__tags {
    justify-content: center;
  }

  .zp-hero__frame {
    width: clamp(220px, 80vw, 340px);
    border-radius: 24px;
    max-width: 100%;
  }

  .zp-hero__poster::before {
    inset: 12px -10px auto -10px;
    height: 85%;
  }
}

@media (max-width: 520px) {
  .zp-hero {
    padding: 60px 16px 50px;
  }

  .zp-kicker {
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .zp-hero__cta .zp-btn {
    width: 100%;
    text-align: center;
  }

  .zp-hero__frame {
    width: clamp(200px, 90vw, 320px);
  }

  .zp-hero__note {
    text-align: center;
  }
}

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