main {
  position: relative;
}

main::before,
main::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1024px;
  background-image: url("../images/about-light.png");
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

main::before {
  top: 0;
}

main::after {
  bottom: -70px;
  transform: rotate(-180deg);
}

@media screen and (max-width: 768px) {
  main::after {
    bottom: -155px;
  }
}

#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  pointer-events: none;
  z-index: -1;
}

#particles-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 800px;
  pointer-events: none;
  z-index: 0;
}

.about-text {
  margin-bottom: 8rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

/* Past Ignite Events */
.past-ignite .wrapper {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}

.ignite-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
}

.ignite-list .ignite-img {
  flex: 0 0 calc((100% - 5rem) * 0.38);
}

.ignite-list .ignite-img img {
  width: 100%;
  height: auto;
}

.ignite-list .content {
  flex: 0 0 calc((100% - 5rem) * 0.62);
  max-width: 600px;
}

.ignite-list .content h2 {
  margin-bottom: 8px;
}

.ignite-list .content p.description {
  margin-top: 2.5rem;
}

/* SHOWCASE */
.showcase-wrapper {
  position: relative;
  height: 480vh;
}

.showcase {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: #101010;
}

.showcase-images {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  perspective: 2000px;
}

.showcase-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 350px;
  transform: translate3d(-50%, -50%, -1000px) scale(0);
  will-change: transform;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.showcase-intro-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 50%;
  z-index: 1;
}

.showcase-intro-header h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.1rem;
  line-height: 0.95;
}

.showcase .word {
  display: inline-block;
  transition: opacity 0.1s;
}

@media (max-width: 1000px) {
  .showcase-img {
    width: 280px;
    height: 200px;
  }

  .showcase-intro-header {
    width: 90%;
    padding: 1.5rem;
  }
}
