/* Why Influnet Exists — landing section (after hero) */
#influnet-why-exists {
  --we-pink: #ee3e96;
  --we-orange: #f26e59;
  position: relative;
  overflow: hidden;
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 5.5rem;
  font-family: Inter, system-ui, sans-serif;
}

#influnet-why-exists::before,
#influnet-why-exists::after {
  content: "";
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

#influnet-why-exists::before {
  top: -90px;
  left: -50px;
  width: 380px;
  height: 380px;
  background: rgba(238, 62, 150, 0.11);
}

#influnet-why-exists::after {
  bottom: -80px;
  right: -40px;
  width: 340px;
  height: 340px;
  background: rgba(242, 110, 89, 0.09);
}

#influnet-why-exists .we-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  #influnet-why-exists .we-inner {
    padding: 0 2rem;
  }
}

#influnet-why-exists .we-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  #influnet-why-exists {
    padding: 6rem 0 7rem;
  }

  #influnet-why-exists .we-grid {
    grid-template-columns: 42fr 58fr;
    gap: 3.5rem;
    align-items: center;
  }
}

#influnet-why-exists .we-content {
  text-align: center;
}

@media (min-width: 1024px) {
  #influnet-why-exists .we-content {
    text-align: left;
  }
}

#influnet-why-exists .we-content-inner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

#influnet-why-exists .we-content-inner.we-visible {
  opacity: 1;
  transform: translateY(0);
}

#influnet-why-exists .we-badge {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, var(--we-pink), var(--we-orange));
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(238, 62, 150, 0.25);
}

#influnet-why-exists .we-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

#influnet-why-exists .we-heading span {
  background: linear-gradient(90deg, var(--we-pink), var(--we-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#influnet-why-exists .we-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #d1d5db;
  margin: 0 0 0.875rem;
}

#influnet-why-exists .we-sub {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #9ca3af;
  margin: 1.25rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#influnet-why-exists .we-panel-inner {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(17, 17, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.08s, transform 0.65s ease 0.08s;
}

@media (min-width: 640px) {
  #influnet-why-exists .we-panel-inner {
    padding: 2rem;
  }
}

#influnet-why-exists .we-panel-inner.we-visible {
  opacity: 1;
  transform: translateY(0);
}

#influnet-why-exists .we-pains {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

#influnet-why-exists .we-pain {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  background: rgba(9, 9, 11, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #e5e7eb;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.3s ease;
}

#influnet-why-exists .we-pain.we-visible {
  opacity: 1;
  transform: translateX(0);
}

#influnet-why-exists .we-pain:nth-child(1) { transition-delay: 0.05s; }
#influnet-why-exists .we-pain:nth-child(2) { transition-delay: 0.1s; }
#influnet-why-exists .we-pain:nth-child(3) { transition-delay: 0.15s; }
#influnet-why-exists .we-pain:nth-child(4) { transition-delay: 0.2s; }
#influnet-why-exists .we-pain:nth-child(5) { transition-delay: 0.25s; }

#influnet-why-exists .we-pain:hover {
  border-color: rgba(238, 62, 150, 0.28);
}

#influnet-why-exists .we-pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(238, 62, 150, 0.18), rgba(242, 110, 89, 0.12));
  color: var(--we-pink);
}

#influnet-why-exists .we-pain-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

#influnet-why-exists .we-change {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

#influnet-why-exists .we-change.we-visible {
  opacity: 1;
  transform: translateY(0);
}

#influnet-why-exists .we-beliefs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

#influnet-why-exists .we-belief {
  margin: 0;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #d1d5db;
  background: rgba(238, 62, 150, 0.06);
  border: 1px solid rgba(238, 62, 150, 0.14);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#influnet-why-exists .we-belief.we-visible {
  opacity: 1;
  transform: translateY(0);
}

#influnet-why-exists .we-belief:nth-child(1) { transition-delay: 0.28s; }
#influnet-why-exists .we-belief:nth-child(2) { transition-delay: 0.34s; }

#influnet-why-exists .we-belief::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--we-pink), var(--we-orange));
  margin-right: 0.625rem;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(238, 62, 150, 0.45);
}

#influnet-why-exists .we-close {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--we-pink), var(--we-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
}

#influnet-why-exists .we-close.we-visible {
  opacity: 1;
  transform: translateY(0);
}
