/* ═══════════════════════════════════════════════════════════
   هشت — سکشن ۰۸: دعوت به همراهی
   چسبیده به فوتر؛ نیم‌دایرهٔ نور کامل در پایینِ وسط
   ═══════════════════════════════════════════════════════════ */

.join.section {
  position: relative;
  overflow: visible;
  text-align: center;
  background: var(--bg);
  margin: 0;
  padding-block: var(--sp-section) 0;
  padding-bottom: 0;
}

.join__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: clamp(3.25rem, 7vw, 5rem);
}

/*
  باکس عریض‌تر از قطر نیم‌دایره تا محو شدن نرم در طرفین
  بریده نشود؛ شعاع با circle صریح تعریف می‌شود.
*/
.join::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(64rem, 100%);
  height: min(32rem, 50vw);
  pointer-events: none;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  background: radial-gradient(
    circle clamp(11rem, 28vw, 18rem) at 50% 100%,
    rgba(240, 180, 41, 0.55) 0%,
    rgba(240, 180, 41, 0.28) 28%,
    rgba(240, 180, 41, 0.1) 52%,
    transparent 72%
  );
  animation: join-glow-rise 3.4s ease-in-out infinite;
}

@keyframes join-glow-rise {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scaleY(0.4);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}

.join__emblem {
  width: clamp(4.5rem, 9vw, 6.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  filter: drop-shadow(0 0.75rem 2rem rgba(0, 0, 0, 0.45));
}

.join__title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.join__title em {
  font-style: normal;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.join__desc {
  max-width: 30rem;
  font-size: var(--fs-body-lg);
  color: var(--text-dim);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.join__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .join::after {
    animation: none;
    opacity: 0.7;
    transform: translateX(-50%) scaleY(0.7);
  }
}
.join__emblem{width:auto!important;height:14rem!important;object-fit:contain;object-position:center}
