/* ============================================================
   ParenthLabs — About Page
   ============================================================ */

/* ── Mission ────────────────────────────────────────────────── */
.mission-sec { padding: var(--sec-py) 0; }

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

.mission-content h2 { margin-bottom: 18px; }
.mission-content p {
  font-size: .9875rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.mission-quote {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: var(--accent-lite);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.mission-quote p {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-h);
  line-height: 1.6;
  margin: 0;
}

/* Stat stack */
.mission-stats { display: flex; flex-direction: column; gap: 14px; }

.m-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow var(--ease);
}
.m-stat:hover { box-shadow: var(--sh-sm); }

.m-stat-val {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-h);
  letter-spacing: -.04em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}
.m-stat-desc {
  font-size: .9rem;
  line-height: 1.55;
}

/* ── Values ─────────────────────────────────────────────────── */
.values-sec {
  background: var(--bg-alt);
  padding: var(--sec-py) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 48px;
}

.val-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.val-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.val-card:hover::after   { transform: scaleX(1); }
.val-card:hover          { box-shadow: var(--sh-md); }

.val-icon {
  width: 44px; height: 44px;
  background: var(--accent-lite);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.val-card h3 { font-size: 1.025rem; margin-bottom: 8px; }
.val-card p  { font-size: .9rem; line-height: 1.72; }

/* ── Why us ─────────────────────────────────────────────────── */
.why-sec { padding: var(--sec-py) 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}

.why-list { display: flex; flex-direction: column; gap: 22px; }

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-d);
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 3px;
  flex-shrink: 0;
  min-width: 28px;
}
.why-text h4 { font-size: .975rem; margin-bottom: 4px; }
.why-text p  { font-size: .875rem; line-height: 1.72; }

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.compare-table th {
  font-family: var(--font-d);
  font-size: .75rem;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  background: var(--bg-alt);
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.compare-table th.accent-col {
  color: var(--accent);
  background: var(--accent-lite);
  text-align: center;
}
.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.accent-col {
  text-align: center;
  background: rgba(15,23,175,.02);
}
.chk-yes {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #166534;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}
.chk-no {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #FEE2E2;
  color: #991B1B;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem;
}

/* ── Team placeholder ────────────────────────────────────────── */
.team-sec { background: var(--bg-alt); padding: var(--sec-py) 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  text-align: center;
  transition: box-shadow var(--ease);
}
.team-card:hover { box-shadow: var(--sh-md); }

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-lite);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  border: 2px solid var(--border);
}
.team-name {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-h);
  display: block;
  margin-bottom: 4px;
}
.team-role {
  font-size: .8125rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}
.team-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .mission-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
