/* About Page Specific Styles */
.about-page-wrapper {
  width: min(1200px, 100%);
  display: flex;
  flex-direction: column;
  gap: 80px;
  z-index: 2;
  padding-bottom: 80px;
  margin-top: 20px;
}

/* ─── Hero Section ─── */
.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #e879f9;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: inherit;
}

.about-title {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  filter: drop-shadow(0 4px 16px rgba(168, 85, 247, 0.4));
  font-family: 'Outfit', sans-serif;
}

.about-subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 620px;
  line-height: 1.7;
  margin: 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.stat-pill {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
}

.stat-pill:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* ─── Features Section ─── */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.section-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(168,85,247,0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 18px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.feature-text h3 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  font-family: 'Outfit', sans-serif;
}

.feature-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 16px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  color: #a5b4fc;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── Mission Section ─── */
.mission-dashboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 48px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  position: relative;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.mission-dashboard::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05), transparent 60%);
  pointer-events: none;
}

.mission-text { flex: 1; z-index: 1; }

.mission-text h2 {
  font-size: 2.4rem;
  color: #fff;
  margin: 0 0 16px 0;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
}

.mission-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.mission-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.mission-avatar {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: floatImage 6s ease-in-out infinite alternate;
}

/* ─── Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
  opacity: 0;
}

.value-card {
  background: rgba(17, 24, 39, 0.3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(168,85,247,0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2));
  border: 1px solid rgba(168,85,247,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.value-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: -0.02em;
  font-family: 'Outfit', sans-serif;
}

.value-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── CTA Section ─── */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.05));
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 72px 40px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: var(--shadow);
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0 0 16px 0;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 36px 0;
  max-width: 500px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-primary {
  padding: 16px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 20px rgba(99,102,241,0.3);
  font-family: 'Outfit', sans-serif;
  display: inline-block;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(99,102,241,0.4);
  filter: brightness(1.1);
}

.cta-secondary {
  padding: 16px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  display: inline-block;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ─── Animations ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .mission-dashboard {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .about-title {
    font-size: 2.4rem;
  }

  .cta-section {
    padding: 48px 24px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}
