.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Section divider glow */
.section::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--glow);
  margin-bottom: 2rem;
  opacity: 0.6;
}
