/* ── About Page Styles ───────────────────────────────────────── */

.about-hero {
  background: var(--gradient-surface);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(79, 70, 229, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.about-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-hero p {
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ── Mission / Vision Grid ─ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.about-mission-card {
  padding: var(--space-xl);
}

.about-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.about-mission-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.about-mission-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Numbered Feature List ─ */
.about-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
}

.feature-number {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  line-height: 1;
  min-width: 48px;
}

.feature-details h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.feature-details p {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Tech Stack ─ */
.tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.88rem;
}

.tech-emoji {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 1.6rem; }
  .about-feature-item { flex-direction: column; gap: var(--space-sm); }
}
