/* ================= PAGE ================= */
.join-page {
  background: #fff;
}

/* ================= HERO ================= */
.coloring-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.85) 45%,
      rgba(255,255,255,0.3) 70%
    ),
    url("../../assets/images/hero-banner.jpeg") no-repeat right center / cover;
}

.coloring-hero-inner {
  max-width: 520px;
  margin-left: 80px;
}

.hero-pill {
  background: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  background: linear-gradient(90deg,#ff4fae,#ffb000,#4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  color: #555;
  margin: 18px 0 24px;
}

/* ================= SECTION BASE ================= */
.section {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.bg-blobs {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,79,174,.2), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(79,210,255,.2), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255,176,0,.18), transparent 50%);
  filter: blur(90px);
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.about-pill {
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

/* ================= BENEFITS ================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 28px;
}

.benefit-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.98),
    rgba(255,255,255,0.9)
  );
  padding: 30px 24px;
  border-radius: 26px;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 90px rgba(0,0,0,.14);
}

/* ================= CONTENT CARD ================= */
.content-card {
  max-width: 720px;
  margin: auto;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.98),
    rgba(255,255,255,0.9)
  );
  backdrop-filter: blur(12px);
  padding: 42px;
  border-radius: 32px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.1);
}

.content-card p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 22px;
}

/* ================= LINKS ================= */
.link-pills,
.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.link-pills span,
.social-links span {
  background: linear-gradient(135deg,#fff0f7,#f0fbff);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .join-hero-inner {
    margin-left: 24px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .content-card {
    padding: 32px 24px;
  }
}
