/* Development Channels — Get Involved section (pre-FAQ) */

.involve-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.involve-section__card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #0a1628 0%, #122654 48%, #1a2f6b 100%);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.22);
}

.involve-section__card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.involve-section__card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.involve-section__card .row {
  position: relative;
  z-index: 1;
}

.involve-section__video {
  position: relative;
}

.involve-section__video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(230, 57, 70, 0.92);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
}

.involve-section__video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  background: #000;
}

.involve-section__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.involve-section__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.involve-section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f87171;
  margin-bottom: 0.65rem;
}

.involve-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.involve-section__text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.involve-section__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.involve-section__action {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.involve-section__action:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.involve-section__action-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.involve-section__action-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.involve-section__action-text strong {
  font-size: 0.96rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.involve-section__action-text small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.involve-section__action--primary {
  background: linear-gradient(135deg, #e63946 0%, #c92d39 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.35);
}

.involve-section__action--primary:hover {
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.45);
}

.involve-section__action--primary .involve-section__action-icon {
  background: rgba(255, 255, 255, 0.18);
}

.involve-section__action--secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.involve-section__action--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.involve-section__action--secondary .involve-section__action-icon {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
}

@media (max-width: 991px) {
  .involve-section__text {
    max-width: 100%;
  }

  .involve-section__content {
    padding-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  .involve-section {
    padding: 2.5rem 0;
  }

  .involve-section__card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .involve-section__video-badge {
    top: 10px;
    left: 10px;
    font-size: 0.62rem;
  }

  .involve-section__action {
    padding: 0.9rem;
  }

  .involve-section__action-icon {
    width: 40px;
    height: 40px;
  }

  .involve-section__action-text strong {
    font-size: 0.9rem;
  }
}
