/* ============================================
   about.css
   ============================================ */

/* PAGE HERO */
.page-hero {
  padding: 10rem 5vw 6rem;
  background: var(--bg-tint);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 80% at 80% 40%, rgba(91,45,142,.1) 0%, transparent 70%);
}
.page-hero .inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

/* ORIGIN */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.origin-card {
  background: var(--dark); border-radius: var(--r-xl);
  padding: 2.5rem;
}
.oc-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: 2rem;
}
.oc-comparison { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.oc-side { flex: 1; }
.oc-side-title { font-size: .875rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: .3rem; }
.oc-side-desc { font-size: .72rem; color: rgba(255,255,255,.35); line-height: 1.5; }
.oc-mid {
  font-weight: 800; font-size: .95rem; color: var(--purple-pale);
  text-align: center; padding: 0 .75rem; white-space: nowrap;
}
.oc-values { display: flex; flex-direction: column; gap: .5rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }
.oc-v { font-size: .875rem; color: rgba(255,255,255,.7); display: flex; gap: .5rem; }
.oc-v::before { content: '✓'; color: var(--teal); flex-shrink: 0; }

/* TEAM */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1200px; margin: 2.5rem auto 0;
}
.team-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem;
  transition: var(--ease);
}
.team-card:hover { border-color: var(--purple-pale); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tc-avatar {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.6rem; color: #fff;
  margin-bottom: 1.25rem;
}
.tc-role { font-size: .7rem; font-weight: 700; color: var(--purple); letter-spacing: .04em; margin-top: .2rem; }
.tc-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }

/* CREDENTIALS */
.cred-cards { display: flex; flex-direction: column; gap: .75rem; }
.cred-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-md); transition: var(--ease);
}
.cred-card:hover { border-color: var(--purple-pale); background: var(--bg-tint); }
.cred-logo {
  width: 42px; height: 42px; background: var(--purple-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-weight: 900; font-size: 1rem;
  color: var(--purple); flex-shrink: 0;
}
.cred-company { font-weight: 700; font-size: .9rem; }
.cred-role-lbl { font-size: .75rem; color: var(--muted); margin-top: .1rem; }

/* VALUES */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; max-width: 1200px; margin: 2.5rem auto 0;
}
.val-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 2rem; transition: var(--ease);
}
.val-card:hover { background: rgba(255,255,255,.07); }
.val-num { font-size: .68rem; font-weight: 700; color: var(--purple-mid); letter-spacing: .1em; margin-bottom: .75rem; }
.val-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.val-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* EXPERTISE BARS */
.expertise-section { background: var(--bg-tint); }
.expertise-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 2.5rem auto 0;
}
.exp-item { margin-bottom: 1.5rem; }
.exp-header { display: flex; justify-content: space-between; margin-bottom: .5rem; }
.exp-name { font-size: .875rem; font-weight: 600; color: var(--ink); }
.exp-pct { font-size: .8rem; font-weight: 700; color: var(--purple); font-family: var(--font-mono); }
.exp-track { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.exp-fill {
  height: 100%; background: linear-gradient(90deg, var(--purple-dark), var(--purple-mid));
  border-radius: 4px; width: 0;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}
