/* Axencia.co — About: Enhanced UI, Animated Icons, Realtime Indicators */

.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header .about-live {
  order: -1;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0 56px;
}

.about-stat {
  text-align: center;
  padding: 28px 36px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  min-width: 140px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(59, 130, 246, 0.08);
}

.about-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #60a5fa;
  font-variant-numeric: tabular-nums;
  display: block;
  line-height: 1.2;
}

.about-stat-suffix {
  font-size: 1.25rem;
  color: #93c5fd;
  margin-left: 2px;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* Realtime indicator */
.about-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 24px;
}

.about-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: aboutLivePulse 1.5s ease-in-out infinite;
}

@keyframes aboutLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.9; transform: scale(1.1); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* About cards with SVG icons */
.about-card {
  position: relative;
  overflow: hidden;
}

.about-card .card-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.25);
  transition: all 0.4s ease;
}

.about-card:hover .card-icon-wrap {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.2));
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.about-card .card-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #93c5fd;
  transition: all 0.4s ease;
}

.about-card:hover .card-icon-wrap svg {
  color: #60a5fa;
}

.about-icon-target svg { animation: aboutIconPulse 2s ease-in-out infinite; }
.about-icon-chart svg { animation: aboutIconFloat 2.5s ease-in-out infinite; }
.about-icon-trophy svg { animation: aboutIconPulse 2.2s ease-in-out infinite 0.3s; }

@keyframes aboutIconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@keyframes aboutIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* About story block */
.about-story-block {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  padding: 48px 56px;
  margin: 0 auto 48px;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.about-story-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  opacity: 0.6;
}

.about-story-block p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}

/* Mission & values */
.about-mission {
  margin-top: 56px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.about-mission-item {
  padding: 28px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.about-mission-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.about-mission-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #e8e8ed;
}

.about-mission-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .about-stats { gap: 20px; margin: 32px 0 40px; }
  .about-stat { padding: 20px 24px; min-width: 110px; }
  .about-stat-num { font-size: 2rem; }
  .about-story-block { padding: 32px 24px; }
  .about-mission-grid { grid-template-columns: 1fr; }
}
