/*
 * v4-2: "Warm Aurora"
 * Large, sweeping color washes — like aurora borealis.
 * Uses both ::before pseudo-elements AND blobs for layered depth.
 * Warm orange-cyan mix. Wider, softer but at HIGH alpha.
 * Key difference from v4-1: much bigger, softer, more atmospheric.
 */

/* Override base blob: moderate blur, full opacity */
.blob {
  filter: blur(40px) !important;
  opacity: 1 !important;
  border-radius: 50%;
}

/* Section-level color washes via ::before */
.has-blobs::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== HERO ===== */
.hero.has-blobs::before {
  background:
    radial-gradient(ellipse 700px 500px at 80% 25%, rgba(0, 209, 178, 0.20) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 15% 75%, rgba(255, 122, 0, 0.18) 0%, transparent 70%);
}

.hero .blob-1 {
  width: 600px;
  height: 600px;
  top: -5%;
  right: -5%;
  background: rgba(0, 209, 178, 0.18) !important;
  filter: blur(60px) !important;
}

.hero .blob-2 {
  width: 500px;
  height: 500px;
  bottom: -5%;
  left: -5%;
  background: rgba(255, 122, 0, 0.16) !important;
  filter: blur(50px) !important;
}

.hero .blob-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 25%;
  background: rgba(183, 255, 60, 0.14) !important;
  filter: blur(45px) !important;
}

/* ===== PHILOSOPHY ===== */
#philosophy.has-blobs::before {
  background:
    radial-gradient(ellipse 600px 500px at 20% 30%, rgba(255, 122, 0, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 80% 70%, rgba(0, 209, 178, 0.15) 0%, transparent 70%);
}

#philosophy .blob-1 {
  width: 550px;
  height: 550px;
  top: 5%;
  left: -3%;
  background: rgba(255, 122, 0, 0.16) !important;
  filter: blur(55px) !important;
}

#philosophy .blob-2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: 0%;
  background: rgba(0, 209, 178, 0.14) !important;
  filter: blur(50px) !important;
}

/* ===== MENTORS ===== */
#mentors.has-blobs::before {
  background:
    radial-gradient(ellipse 500px 400px at 85% 35%, rgba(255, 122, 0, 0.18) 0%, transparent 70%);
}

#mentors .blob-1 {
  width: 500px;
  height: 500px;
  top: 5%;
  right: -3%;
  background: rgba(255, 122, 0, 0.16) !important;
  filter: blur(55px) !important;
}

/* ===== WALKAWAY ===== */
#walkaway.has-blobs::before {
  background:
    radial-gradient(ellipse 600px 400px at 15% 30%, rgba(0, 209, 178, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 80% 70%, rgba(255, 122, 0, 0.14) 0%, transparent 70%);
}

#walkaway .blob-1 {
  width: 550px;
  height: 550px;
  top: 5%;
  left: -5%;
  background: rgba(0, 209, 178, 0.16) !important;
  filter: blur(55px) !important;
}

/* ===== CTA ===== */
.section-cta.has-blobs::before {
  background:
    radial-gradient(ellipse 800px 600px at 50% 50%, rgba(0, 209, 178, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 80% 25%, rgba(255, 122, 0, 0.16) 0%, transparent 70%);
}

.section-cta .blob-1 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 209, 178, 0.20) !important;
  filter: blur(70px) !important;
  animation: none !important;
}

.section-cta .blob-2 {
  width: 400px;
  height: 400px;
  top: 5%;
  right: 5%;
  background: rgba(255, 122, 0, 0.16) !important;
  filter: blur(50px) !important;
}

@media (max-width: 480px) {
  .blob {
    display: block !important;
    opacity: 1 !important;
  }

  .has-blobs::before {
    content: '' !important;
  }

  .hero.has-blobs::before {
    background:
      radial-gradient(ellipse 350px 300px at 75% 15%, rgba(0, 209, 178, 0.25) 0%, transparent 70%),
      radial-gradient(ellipse 300px 250px at 20% 80%, rgba(255, 122, 0, 0.22) 0%, transparent 70%) !important;
  }

  .hero .blob-1 {
    width: 300px;
    height: 300px;
    top: 3%;
    left: 30%;
    background: rgba(0, 209, 178, 0.24) !important;
    filter: blur(45px) !important;
  }

  .hero .blob-2 {
    width: 280px;
    height: 280px;
    bottom: 5%;
    left: 5%;
    background: rgba(255, 122, 0, 0.22) !important;
    filter: blur(40px) !important;
  }

  .hero .blob-3 {
    width: 200px;
    height: 200px;
    top: 35%;
    left: 15%;
    background: rgba(183, 255, 60, 0.18) !important;
    filter: blur(35px) !important;
  }

  #philosophy.has-blobs::before {
    background:
      radial-gradient(ellipse 300px 250px at 25% 25%, rgba(255, 122, 0, 0.22) 0%, transparent 70%),
      radial-gradient(ellipse 280px 220px at 75% 70%, rgba(0, 209, 178, 0.18) 0%, transparent 70%) !important;
  }

  #philosophy .blob-1 {
    width: 280px;
    height: 280px;
    top: 3%;
    left: 10%;
    background: rgba(255, 122, 0, 0.22) !important;
    filter: blur(42px) !important;
  }

  #philosophy .blob-2 {
    width: 240px;
    height: 240px;
    bottom: 5%;
    right: 5%;
    background: rgba(0, 209, 178, 0.18) !important;
    filter: blur(38px) !important;
  }

  #mentors .blob-1 {
    width: 260px;
    height: 260px;
    top: 5%;
    left: 25%;
    background: rgba(255, 122, 0, 0.22) !important;
    filter: blur(42px) !important;
  }

  #walkaway .blob-1 {
    width: 280px;
    height: 280px;
    top: 3%;
    left: 10%;
    background: rgba(0, 209, 178, 0.22) !important;
    filter: blur(42px) !important;
  }

  .section-cta .blob-1 {
    width: 350px;
    height: 350px;
    background: rgba(0, 209, 178, 0.26) !important;
    filter: blur(50px) !important;
  }

  .section-cta .blob-2 {
    width: 240px;
    height: 240px;
    top: 5%;
    right: 5%;
    background: rgba(255, 122, 0, 0.20) !important;
    filter: blur(40px) !important;
  }
}

@media (max-width: 800px) and (min-width: 481px) {
  .blob {
    opacity: 1 !important;
  }

  .hero .blob-1 { width: 450px; height: 450px; filter: blur(55px) !important; }
  .hero .blob-2 { width: 380px; height: 380px; filter: blur(45px) !important; }
  .hero .blob-3 { width: 240px; height: 240px; filter: blur(40px) !important; }
  #philosophy .blob-1 { width: 420px; height: 420px; filter: blur(48px) !important; }
  #philosophy .blob-2 { width: 300px; height: 300px; filter: blur(42px) !important; }
  #mentors .blob-1 { width: 380px; height: 380px; filter: blur(48px) !important; }
  #walkaway .blob-1 { width: 420px; height: 420px; filter: blur(48px) !important; }
  .section-cta .blob-1 { width: 550px; height: 550px; filter: blur(60px) !important; }
  .section-cta .blob-2 { width: 320px; height: 320px; filter: blur(45px) !important; }
}

/* ===== CLOSED BANNER ===== */
.closed-banner {
  width: 100%;
  background: #e53e3e;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

body.has-closed-banner {
  padding-top: 46px;
}

@media (max-width: 640px) {
  .closed-banner {
    font-size: 0.82rem;
    padding: 0.625rem 1rem;
  }

  body.has-closed-banner {
    padding-top: 40px;
  }
}
