/* Hero */
.hero-section__actions {
  align-items: center;
}

.hero-visual {
  isolation: isolate;
  position: relative;
}

.hero-visual__art {
  filter: drop-shadow(0 0 3rem rgba(139, 92, 246, 0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2rem);
  }
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* About */
.section--about {
  background: var(--color-surface);
  border-top: 0.2rem solid var(--color-primary);
  border-bottom: 0.2rem solid var(--color-primary);
}

.about-grid {
  position: relative;
  z-index: 1;
}

/* Skills */
.section--skills {
  background: transparent;
  position: relative;
}

/* .section--skills::before {
  content: "// ===== SKILLS.JSON =====";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  color: var(--color-muted);
  font-size: 1rem;
} */

.skills-grid {
  position: relative;
  z-index: 1;
}

/* Stack */
.section--stack {
  background: var(--color-surface);
  border-top: 0.2rem solid var(--color-primary);
  border-bottom: 0.2rem solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

/* .section--stack::before {
  content: "// ===== TECH_STACK.JSON =====";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  color: var(--color-primary);
  font-size: 1rem;
  opacity: 0.6;
} */

.section--stack::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}

.tech-grid {
  position: relative;
  z-index: 1;
}

/* Projects */
.section--projects {
  background: transparent;
  position: relative;
}
/*
.section--projects::before {
  content: "/* ========== PORTFOLIO ========== ";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  color: var(--color-muted);
  font-size: 1rem;
}
*/

.projects-grid {
  position: relative;
  z-index: 1;
}

/* Experience */
.section--experience {
  background: var(--color-surface-light);
  border: 0.2rem solid var(--color-secondary);
  margin: 2rem 0;
}

.timeline-item {
  position: relative;
}

/* Contact */
.section--contact {
  padding-block: clamp(6rem, 9vw, 8rem);
  background: transparent;
}
