/* ----------------------------- */
/* Section 7 Three.js background */
/* ----------------------------- */
.section-three{
  position: relative;
  overflow: hidden;
  background: transparent;
}
.section-three .three-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 50% 35%, rgba(168, 76, 255, .18), transparent 65%),
    radial-gradient(700px 520px at 35% 60%, rgba(90, 140, 255, .10), transparent 70%);
}
.section-three canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  filter: blur(0px);
}
.section-three .container{
  position: relative;
  z-index: 1;
}
.glass-panel{
  border-radius: 26px;
  border: 1px solid rgba(244,244,245,.14);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  box-shadow: 0 26px 64px rgba(0,0,0,.62);
  padding: 26px;
  width: 100%;
  height: 100%;
}

/* Hide SVG icon background while Section 7 is active */
body.no-icons #bg-layer{
  opacity: 0 !important;
}

