.about{
  max-width: 1000px;
  margin: 110px auto 80px;
  padding: 20px;
}

/* HERO */
.about-hero{
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.about-photo{
  width: 180px;
  height: 180px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.15);
}

.about-info h1{
  font-size: 28px;
  font-weight: 800;
}

.about-info h1 span{
  color: #7aa6ff;
}

.tagline{
  opacity: .8;
  margin-bottom: 8px;
}

.badges span{
  background: rgba(255,255,255,.1);
  padding: 6px 12px;
  border-radius: 10px;
  margin-right: 5px;
  font-size: 12px;
}

.bio{
  margin-top: 10px;
  opacity: .85;
  max-width: 650px;
}

/* STATS */
.stats{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
  margin: 40px 0;
  gap: 10px;
}

.stats h2{
  font-size: 30px;
  color: #7aa6ff;
}

/* SKILLS */
.skills h3,
.timeline h3{
  margin-bottom: 10px;
  font-size: 20px;
}

.skill-list span{
  background: rgba(255,255,255,.12);
  padding: 8px 14px;
  border-radius: 12px;
  margin: 5px;
  display: inline-block;
}

/* TIMELINE */
.time-card{
  padding: 15px;
  margin-top: 10px;
  border-left: 2px solid #7aa6ff;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
}

/* CTA */
.about-cta{
  margin-top: 35px;
  text-align: center;
}

.btn-contact{
  padding: 12px 18px;
  background: #7aa6ff;
  border-radius: 10px;
  display: inline-block;
  color: #000;
  font-weight: 600;
}

.about{
  opacity: 0;
  transform: translateY(20px);
  transition: .35s ease;
}

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