.idea-launchpad {
  padding: 100px 50px;
  display: flex;
  justify-content: center;
}

.idea-launchpad__inner {
  position: relative;
  width: 100%;
  max-width: 1350px;
  padding: 80px 60px;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    #a86cff 0%,
    #ff5f8f 45%,
    #ffb347 100% 
  );
  text-align: center;
  overflow: hidden;
}

/* TEXT */
.idea-launchpad__title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 35px;
}

/* BUTTON */
.idea-launchpad__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  backdrop-filter: blur(6px);
}

.idea-launchpad__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* DECORATIVE SHAPES */
.idea-launchpad__spark {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

.spark-1 {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.35);
  top: -120px;
  left: -120px;
}

.spark-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #fff, transparent 70%);
  bottom: -60px;
  right: -60px;
  opacity: 0.4;
}
/* =========================
   RESPONSIVE IDEA LAUNCHPAD
========================= */

/* TABLET */
@media (max-width: 900px) {
  .idea-launchpad {
    padding: 80px 16px;
  }

  .idea-launchpad__inner {
    padding: 70px 40px;
    border-radius: 24px;
  }

  .idea-launchpad__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .idea-launchpad__btn {
    padding: 13px 26px;
    font-size: 13.5px;
  }

  /* dekor dikecilin */
  .spark-1 {
    width: 320px;
    height: 320px;
    top: -100px;
    left: -100px;
  }

  .spark-2 {
    width: 130px;
    height: 130px;
    bottom: -50px;
    right: -50px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .idea-launchpad {
    padding: 60px 14px;
  }

  .idea-launchpad__inner {
    padding: 55px 22px;
    border-radius: 20px;
  }

  .idea-launchpad__title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 26px;
  }

  .idea-launchpad__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 0;
    font-size: 14px;
  }

  /* dekor biar ga ganggu konten */
  .spark-1 {
    width: 240px;
    height: 240px;
    top: -80px;
    left: -80px;
    opacity: 0.25;
  }

  .spark-2 {
    width: 110px;
    height: 110px;
    bottom: -40px;
    right: -40px;
    opacity: 0.3;
  }
}
