/* ============================================================
   NECHO — About Page Styles (Consolidated & Premium)
   ============================================================ */

/* ── Section label (Unified with home) ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  flex-shrink: 0;
}

/* ── Nav Overrides for About Page ── */
#nav {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none;
  transition: background 0.5s, padding 0.4s;
  padding: 2rem 3rem;
  height: auto;
}

#nav.scrolled {
  background: rgba(5, 5, 5, 0.9) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 1rem 3rem;
}

/* ── Hero & Narrative Elevation ── */
.dyn-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.dyn-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
}

.dyn-ticker {
  display: block;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  will-change: transform, opacity;
}

/* ── Main Layout ── */
.about-main {
  position: relative;
  background-color: var(--bg);
  color: var(--text);
  padding-bottom: 8rem;
  overflow: hidden;
}

/* ── Value & Team Cards ── */
.value-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.012);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  padding: 3rem 2.5rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
  border-color: var(--border-2);
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(232, 77, 28, 0.05);
}

.team-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
  border-color: var(--border-2);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  filter: grayscale(0.8) contrast(1.05);
  transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-avatar {
  filter: grayscale(0) contrast(1);
}

/* ── Stats & Timeline ── */
.stat-orb {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-2), transparent);
  transform: translateX(-50%);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--glow);
  flex-shrink: 0;
}

/* ── Animations ── */
@keyframes float-orb {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.float-orb {
  animation: float-orb 8s ease-in-out infinite;
}

/* ── Dynamic Background Meshes ── */
.mission-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, var(--glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--glow-2) 0%, transparent 50%);
  pointer-events: none;
}