/* About page styles */

.about-hero {
  padding: 80px 0 0;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.about-hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 680px;
  line-height: 1.8;
  margin-top: 16px;
}

.about-hero-visual { margin-top: 60px; border-top: 1px solid var(--border); }

.stat-band {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 0;
  gap: 0;
  flex-wrap: wrap;
}

.sb-item { text-align: center; padding: 0 48px; }
.sb-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--gold); }
.sb-label { font-size: 0.78rem; color: var(--text3); margin-top: 4px; }
.sb-div { width: 1px; height: 48px; background: var(--border2); }

/* Mission split */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-values { display: flex; flex-direction: column; gap: 24px; }
.mv-item { display: flex; gap: 16px; align-items: flex-start; }
.mv-icon { font-size: 1.5rem; flex-shrink: 0; }
.mv-item h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.mv-item p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card { padding: 28px; text-align: center; }

.team-avatar-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg);
}

.ta-1 { background: linear-gradient(135deg, var(--gold), #e8a830); }
.ta-2 { background: linear-gradient(135deg, var(--teal), #007a6a); }
.ta-3 { background: linear-gradient(135deg, #9945ff, #6a23cc); }
.ta-4 { background: linear-gradient(135deg, #627eea, #3a5bcc); }

.team-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--gold); font-family: var(--font-mono); margin-bottom: 12px; }
.team-bio { font-size: 0.8rem; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-socials a {
  width: 30px; height: 30px;
  border-radius: 6px;
  border: 1px solid var(--border2);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text3);
  transition: all var(--trans);
}
.team-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.tl-item {
  position: relative;
  padding-bottom: 24px;
}

.tl-dot {
  position: absolute;
  left: -43px;
  top: 20px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--bg);
  box-shadow: 0 0 12px var(--teal-glow);
}

.tl-dot-gold {
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.tl-content { padding: 20px 24px; }

.tl-year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 6px;
}

.tl-content h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.tl-content p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; }

/* Compliance */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.comp-item { text-align: center; padding: 32px 24px; }
.comp-icon { font-size: 2.5rem; margin-bottom: 16px; }
.comp-item h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.comp-item p { font-size: 0.8rem; color: var(--text2); line-height: 1.7; }

/* CTA reuse */
.cta-section { padding: 100px 0; }
.cta-box {
  position: relative;
  text-align: center;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 32px;
  padding: 80px 40px;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .mission-split { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .stat-band { flex-direction: column; }
  .sb-div { width: 60px; height: 1px; }
}
