/* ── ABOUT PAGE — DARK THEME ───────────────────────────── */
.nps-intro-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .nps-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}
.nps-intro-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.nps-intro-text p strong {
  color: var(--off-white);
  font-weight: 500;
}

.crisis-card {
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.08),
    rgba(10, 22, 40, 0.9)
  );
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: var(--r-2xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.crisis-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, var(--gold));
}
.crisis-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e74c3c;
  margin-bottom: 12px;
}
.crisis-label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: #e74c3c;
}
.crisis-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.crisis-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.cs {
  background: rgba(5, 13, 26, 0.7);
  border: 1px solid rgba(231, 76, 60, 0.18);
  border-radius: var(--r-lg);
  padding: 12px;
}
.cs__val {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 19px;
  color: #e74c3c;
  display: block;
  line-height: 1;
}
.cs__label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}
.crisis-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
}

.future-card {
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.07),
    rgba(10, 22, 40, 0.9)
  );
  border: 1px solid rgba(46, 204, 113, 0.28);
  border-radius: var(--r-2xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.future-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2ecc71, var(--blue-glow));
}
.future-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2ecc71;
  margin-bottom: 12px;
}
.future-label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: #2ecc71;
}
.future-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.future-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.future-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.55;
}
.fp__dot {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #2ecc71;
  margin-top: 1px;
}

/* History Timeline */
.history-timeline {
  display: flex;
  flex-direction: column;
}
.ht-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  position: relative;
}
.ht-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(27, 79, 138, 0.5),
    rgba(27, 79, 138, 0.06)
  );
  z-index: 0;
}
.ht-year-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}
.ht-year {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-align: center;
}
.ht-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
  z-index: 1;
}
.ht-dot--gold {
  background: rgba(245, 166, 35, 0.2);
  border-color: var(--gold);
}
.ht-dot--blue {
  background: rgba(27, 79, 138, 0.2);
  border-color: var(--blue-2);
}
.ht-dot--green {
  background: rgba(46, 204, 113, 0.15);
  border-color: #2ecc71;
}
.ht-content {
  padding: 8px 0 28px 18px;
}
.ht-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 5px;
}
.ht-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* EMA Contribution */
.ema-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .ema-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.ema-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.ema-text p strong {
  color: var(--off-white);
  font-weight: 500;
}
.ema-stats-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ema-stat-card {
  background: var(--navy);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  transition: var(--t);
}
.ema-stat-card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateX(4px);
}
.ema-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ei-gold {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.22);
}
.ei-blue {
  background: rgba(74, 158, 240, 0.1);
  border: 1px solid rgba(74, 158, 240, 0.22);
}
.ei-green {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.22);
}
.ema-stat__val {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  line-height: 1;
  display: block;
}
.ema-stat__label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.ema-stat__desc {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.55);
  margin-top: 2px;
  line-height: 1.4;
}

/* Story Timeline */
.story-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.story-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 16px;
}
.story-text p strong {
  color: var(--off-white);
  font-weight: 500;
}
.timeline {
  display: flex;
  flex-direction: column;
}
.tl-item {
  display: flex;
  gap: 18px;
  position: relative;
}
.tl-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(27, 79, 138, 0.6),
    rgba(27, 79, 138, 0.06)
  );
}
.tl-dot {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(27, 79, 138, 0.2);
  border: 2px solid rgba(27, 79, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
  transition: var(--t);
  flex-shrink: 0;
}
.tl-item:hover .tl-dot {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.5);
}
.tl-body {
  padding-bottom: 28px;
}
.tl-year {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}
.tl-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* Team */
.leader-card {
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(27, 79, 138, 0.5);
  border-radius: var(--r-2xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .leader-card {
    grid-template-columns: 160px 1fr;
  }
}
.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
}
.leader-avatar {
  width: 360px;
  height: 360px;
  border-radius: var(--r-xl);
  flex-shrink: 0;
  border: 2px solid rgba(245, 166, 35, 0.28);
  object-fit: cover;
  object-position: center;
}
@media (min-width: 640px) {
  .leader-avatar {
    width: 160px;
    height: 260px;
  }
}
.leader-name {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.leader-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.leader-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lbadge {
  background: rgba(27, 79, 138, 0.2);
  border: 1px solid rgba(27, 79, 138, 0.4);
  border-radius: var(--r-md);
  padding: 4px 12px;
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 500;
}
.team-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-card {
  background: var(--navy-2);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 24px;
  text-align: center;
  transition: var(--t);
}
.team-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.tc-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(27, 79, 138, 0.3),
    rgba(245, 166, 35, 0.1)
  );
  border: 2px solid rgba(27, 79, 138, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}
.tc-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 3px;
}
.tc-role {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.tc-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* Certs */
.certs-grid {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}
@media (min-width: 480px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .certs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cert-card {
  background: var(--navy);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 22px 16px;
  text-align: center;
  transition: var(--t);
}
.cert-card:hover {
  border-color: rgba(245, 166, 35, 0.32);
  transform: translateY(-3px);
}
.cert-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.cert-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 5px;
}
.cert-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
