/* ============================================================
   PPSN — About Page CSS (page-about)
   ============================================================ */

/* ── ABOUT INTRO ── */
#page-about .about-intro-lead {
  font-size: 1rem;
  color: var(--mid);
  line-height: 2;
  font-weight: 300;
}

/* ── FOUNDER CARD ── */
#page-about .founder-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2.5rem;
}
#page-about .founder-avatar {
  width: 80px;
  height: 80px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
#page-about .founder-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .2rem;
}
#page-about .founder-role {
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-lg);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: var(--sp-lg);
}
#page-about .founder-edu-item {
  display: flex;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: .85rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.6;
}
#page-about .founder-edu-item:last-child { border-bottom: none }
#page-about .founder-edu-item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .55rem;
}

/* ── VISION / MISSION BOXES ── */
#page-about .vm-box {
  background: var(--ink);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#page-about .vm-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(177, 149, 112, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177, 149, 112, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#page-about .vm-box-content { position: relative; z-index: 1 }
#page-about .vm-box-tag {
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-xl);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: var(--sp-md);
}
#page-about .vm-box-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  opacity: .7;
}
#page-about .vm-box-title {
  font-size: 1.15rem;
  color: white;
  line-height: 1.4;
  margin-bottom: 1rem;
}
#page-about .vm-box-body {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, .5);
  font-weight: 300;
  line-height: var(--lh-relaxed);
}

/* ── CERTIFICATION BADGES ── */
#page-about .cert-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 1.2rem;
  border: 1px solid var(--rule);
  background: white;
  margin-bottom: var(--sp-sm);
  transition: background var(--tr-base);
}
#page-about .cert-badge:hover { background: var(--paper) }
#page-about .cert-badge-ico {
  width: 40px;
  height: 40px;
  background: var(--gold-tint-bg);
  border: 1px solid var(--gold-tint-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
#page-about .cert-badge-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .2rem;
}
#page-about .cert-badge-desc {
  font-size: .78rem;
  color: var(--mid);
  font-weight: 300;
}

#page-about .cert-view-btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ── TIMELINE ── */
#page-about .timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
#page-about .tl-year {
  font-family: 'Bebas Neue', var(--fd);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
  padding-top: .1rem;
}
#page-about .tl-body {
  border-left: 1px solid var(--rule);
  padding-left: 1.5rem;
  padding-bottom: .5rem;
}
#page-about .tl-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .3rem;
}
#page-about .tl-desc {
  font-size: .83rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ── STATS BAR ── (uses shared .u-stats-bar tokens but kept scoped) */
#page-about .about-stats {
  background: var(--ink);
  padding: 3rem 0;
}
#page-about .stat-num {
  font-family: var(--fd);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
#page-about .stat-lbl {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .35);
  letter-spacing: var(--ls-xs);
  margin-top: .3rem;
}
#page-about .stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .08);
  align-self: stretch;
  margin: 0 1rem;
}

/* ── CTA SECTION ── */
#page-about .cta-section {
  background: var(--gold);
}
#page-about .cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  font-weight: 700;
}
#page-about .cta-subtitle {
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
}
#page-about .btn-cta-secondary {
  background: white;
  color: var(--gold);
  font-weight: 700;
}

@media(max-width:767px) {
  #page-about .founder-card { padding: 1.5rem }
  #page-about .vm-box { padding: 1.75rem }
  #page-about .about-stats .d-flex { flex-wrap: wrap; gap: 1.5rem; justify-content: center }
  #page-about .stat-divider { display: none }
}
