/* Live campaign hero — influencer-campaign-management */
.svc-hero--camp {
  --svc-hero-accent: #e8c46a;
  --camp-header-clear: 140px;
  --camp-bottom-gap: 40px;
  min-height: clamp(380px, 62vh, 640px) !important;
  height: auto !important;
  display: flex;
  align-items: stretch;
  background: #0b0f18 !important;
  box-sizing: border-box !important;
  overflow: hidden;
  padding: 120px 0 36px !important;
}

.svc-hero--camp.banner--bg-img::before,
.svc-hero--camp::before {
  background: linear-gradient(
    105deg,
    rgba(11, 15, 24, 0.92) 0%,
    rgba(11, 15, 24, 0.72) 42%,
    rgba(11, 15, 24, 0.45) 100%
  ) !important;
  z-index: 2;
}

.svc-hero--camp.banner--bg-img::after,
.svc-hero--camp::after {
  opacity: 0.1;
  z-index: 2;
}

.svc-hero--camp .svc-hero__video,
.svc-hero--camp .svc-hero__orbs,
.svc-hero--camp .svc-hero__fx,
.svc-hero--camp .svc-hero__line {
  display: none !important;
}

.camp-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.camp-stage__glow {
  position: absolute;
  right: -8%;
  top: 18%;
  width: min(55vw, 640px);
  height: min(55vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.2), transparent 68%);
  filter: blur(8px);
}

.camp-feed {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, 42vw);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.camp-card {
  position: relative;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(28px);
  animation: camp-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.camp-card:nth-child(1) { animation-delay: 0.15s; }
.camp-card:nth-child(2) { animation-delay: 0.35s; }
.camp-card:nth-child(3) { animation-delay: 0.55s; }
.camp-card:nth-child(4) { animation-delay: 0.75s; }

@keyframes camp-card-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.camp-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.camp-card__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.camp-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--svc-hero-accent), #7a9cff);
}

.camp-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #f4f1ea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp-card__live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3bd88f;
}

.camp-card__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3bd88f;
  box-shadow: 0 0 0 0 rgba(59, 216, 143, 0.6);
  animation: camp-pulse 1.6s ease-out infinite;
}

@keyframes camp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 216, 143, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(59, 216, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 216, 143, 0); }
}

.camp-card__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.camp-card__bar > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--svc-hero-accent), #3bd88f);
  animation: camp-fill 2.8s ease-out forwards;
}

.camp-card:nth-child(1) .camp-card__bar > span { animation-delay: 0.4s; --fill: 78%; }
.camp-card:nth-child(2) .camp-card__bar > span { animation-delay: 0.6s; --fill: 64%; }
.camp-card:nth-child(3) .camp-card__bar > span { animation-delay: 0.8s; --fill: 91%; }
.camp-card:nth-child(4) .camp-card__bar > span { animation-delay: 1s; --fill: 55%; }

@keyframes camp-fill {
  to { width: var(--fill, 70%); }
}

.camp-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.camp-card__stats div {
  min-width: 0;
}

.camp-card__stats strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.camp-card__stats span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.camp-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  opacity: 0.35;
  animation: camp-ticker 28s linear infinite;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8c46a;
  pointer-events: none;
}

@keyframes camp-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.svc-hero--camp .banner__inner {
  z-index: 3;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100% !important;
  max-width: none !important;
  min-height: 0;
  height: 100% !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box;
}

.svc-hero--camp .banner__content {
  width: 75%;
  max-width: 75%;
  margin: 0;
}

.svc-hero--camp .banner__btn {
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

.svc-hero--camp .svc-hero__label {
  color: rgba(255, 255, 255, 0.55);
}

.svc-hero--camp .banner__title {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase;
  color: #f7f3ef !important;
  margin: 0 0 1rem !important;
  overflow: visible !important;
}

.svc-hero--camp .banner__title .svc-hero__word {
  display: inline-block;
  transform: none !important;
}

.svc-hero--camp.is-ready .banner__title .svc-hero__word {
  opacity: 1 !important;
  transform: none !important;
}

.svc-hero--camp .banner__txt {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem !important;
}

.svc-hero--camp .banner__btn .btn {
  background: #f7f3ef;
  color: #0b0f18;
}

@media (max-width: 900px) {
  .svc-hero--camp .banner__content {
    width: 100%;
    max-width: 100%;
  }

  .camp-feed {
    width: min(300px, 38vw);
    right: 0.75rem;
    opacity: 0.85;
    transform: translateY(-50%) scale(0.92);
    transform-origin: right center;
  }
}

@media (max-width: 700px) {
  .svc-hero--camp {
    padding: 120px 0 40px !important;
  }

  .camp-feed,
  .camp-ticker {
    display: none;
  }

  .camp-stage__glow {
    right: -20%;
    top: 30%;
    opacity: 0.7;
  }

  .svc-hero--camp .banner__title {
    font-size: clamp(2.1rem, 11vw, 3rem) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .camp-card,
  .camp-card__bar > span,
  .camp-card__live::before,
  .camp-ticker {
    animation: none !important;
  }

  .camp-card {
    opacity: 1;
    transform: none;
  }

  .camp-card__bar > span {
    width: var(--fill, 70%);
  }
}
