/* ================================
   ABOUT – WEB3 INSPIRED DESIGN
================================ */

.about-hero {
  position: relative;
  padding: 140px 0 120px;
  background: radial-gradient(circle at top, #1b1b3a, #0b0b14);
  text-align: center;
  overflow: hidden;
}

.about-hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
}

.about-hero h1 span {
  color: var(--purple);
}

.hero-subtitle {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--text-muted);
}

/* WEB3 ORBS */
.orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: #7c4dff;
  top: 20%;
  left: 10%;
}

.orb-2 {
  width: 160px;
  height: 160px;
  background: #00e5ff;
  bottom: 20%;
  right: 15%;
}

.orb-3 {
  width: 120px;
  height: 120px;
  background: #ff5ec4;
  top: 30%;
  right: 30%;
}

/* MISSION */
.about-mission {
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 20px;
}

/* VALUES */
.about-values {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.value-card i {
  font-size: 1.8rem;
  color: var(--purple);
  margin-bottom: 16px;
}

/* TIMELINE */
.about-timeline {
  padding: 100px 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin: 40px auto 0;
}

.timeline-item {
  background: rgba(255,255,255,0.05);
  padding: 20px 24px;
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.timeline-item span {
  font-weight: 600;
  color: var(--purple);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.4rem;
  }
}
