/* ============================================================
   ZeeroCap · about.css  (final)
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.abt-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border-lt);
}
.abt-hero__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: center;
}
.abt-hero__eyebrow {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue); margin-bottom: 14px;
}
.abt-hero__h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); letter-spacing: -.04em;
  margin-bottom: 18px;
}
.abt-hero__sub {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.78; max-width: 500px;
  margin-bottom: 28px;
}
.abt-hero__scroll {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--ink-3);
  text-decoration: none; transition: color .15s;
}
.abt-hero__scroll:hover { color: var(--blue); }
.abt-hero__scroll svg { transition: transform .15s; }
.abt-hero__scroll:hover svg { transform: translateY(3px); }

/* KPI card */
.abt-kpi-grid {
  border: 1px solid var(--border-lt);
  border-radius: 14px; overflow: hidden;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
}
.abt-kpi {
  padding: 22px 20px;
  border-right: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  display: flex; flex-direction: column; gap: 4px;
}
.abt-kpi:nth-child(2n) { border-right: none; }
.abt-kpi:nth-child(3), .abt-kpi:nth-child(4) { border-bottom: none; }
.abt-kpi__n {
  font-size: 1.6rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.04em; line-height: 1;
}
.abt-kpi__l { font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }

/* ── Story ─────────────────────────────────────────────────── */
.abt-story {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-lt);
}
.abt-story__inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 72px; align-items: start;
}
.abt-story__aside-label {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-3); margin-bottom: 12px;
}
.abt-story__rule { width: 1px; height: 44px; background: var(--border); margin-bottom: 12px; }
.abt-story__aside-year { font-size: 11px; color: var(--ink-3); letter-spacing: .06em; }
.abt-story__body p {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.82; margin-bottom: 18px;
}
.abt-story__body p:last-child { margin-bottom: 0; }
.abt-story__lead {
  font-size: 1.2rem !important;
  font-weight: 600; color: var(--ink) !important;
  letter-spacing: -.02em; line-height: 1.4 !important;
  margin-bottom: 24px !important;
}
.abt-story__body strong { color: var(--ink); font-weight: 600; }

/* ── How We Work ───────────────────────────────────────────── */
.abt-how {
  padding: 72px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-lt);
}
.abt-sec-hd { margin-bottom: 44px; }
.abt-sec-hd__eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue); margin-bottom: 10px;
}
.abt-sec-hd__h {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700; line-height: 1.15;
  color: var(--ink); letter-spacing: -.03em;
}
.abt-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.abt-principle {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 12px;
  padding: 28px 24px;
}
.abt-principle__n {
  display: block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; color: var(--blue);
  margin-bottom: 14px;
}
.abt-principle__title {
  font-size: 16px; font-weight: 700;
  color: var(--ink); letter-spacing: -.02em;
  line-height: 1.3; margin-bottom: 10px;
}
.abt-principle__body { font-size: 14px; color: var(--ink-2); line-height: 1.75; }

/* ── Radical Transparency / Truths ────────────────────────── */
.abt-truths {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-lt);
  background: var(--dark);
}
.abt-truths__hd {
  margin-bottom: 48px;
}
.abt-truths .abt-sec-hd__eyebrow { color: #3b82f6; margin-bottom: 0; }
.abt-truths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.abt-truth {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 32px 40px 32px 0;
  border-bottom: 1px solid #1e2d3d;
}
.abt-truths__grid > .abt-truth:nth-child(odd) {
  border-right: 1px solid #1e2d3d;
}
.abt-truths__grid > .abt-truth:nth-child(even) {
  padding-left: 40px; padding-right: 0;
}
.abt-truths__grid > .abt-truth:nth-last-child(-n+2) { border-bottom: none; }
.abt-truth__num {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; color: #3b82f6;
  flex-shrink: 0; min-width: 20px; padding-top: 4px;
}
.abt-truth__title {
  font-size: 15px; font-weight: 700;
  color: #f0f4ff; letter-spacing: -.02em;
  line-height: 1.35; margin-bottom: 10px;
}
.abt-truth__body {
  font-size: 14px; color: #94a3b8; line-height: 1.78;
}

/* ── Team Traits ───────────────────────────────────────────── */
.abt-team {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-lt);
}
.abt-team__intro {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.78; max-width: 560px;
  margin-top: 12px;
}
.abt-team__traits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.abt-trait {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: 12px;
  padding: 28px 26px;
}
.abt-trait__icon {
  width: 38px; height: 38px;
  background: var(--blue-dim);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.abt-trait__title {
  font-size: 15px; font-weight: 700;
  color: var(--ink); letter-spacing: -.015em;
  line-height: 1.3; margin-bottom: 9px;
}
.abt-trait__body { font-size: 14px; color: var(--ink-2); line-height: 1.75; }
.abt-team__closer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-lt);
  max-width: 620px;
}
.abt-team__closer p { font-size: 14px; color: var(--ink-3); line-height: 1.75; }

/* ── Stand Against / Values ────────────────────────────────── */
.abt-values {
  padding: 72px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-lt);
}
.abt-values__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.abt-value {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-lt);
}
.abt-values__grid > .abt-value:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--border-lt);
}
.abt-values__grid > .abt-value:nth-child(even) { padding-left: 48px; }
.abt-values__grid > .abt-value:nth-last-child(-n+2) { border-bottom: none; }
.abt-value__x {
  flex-shrink: 0; font-size: 14px;
  font-weight: 700; color: #ef4444;
  margin-top: 2px; line-height: 1;
}
.abt-value__title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.abt-value__body { font-size: 13.5px; color: var(--ink-2); line-height: 1.65; }

/* ── Pull Quote ────────────────────────────────────────────── */
.abt-pullquote {
  padding: 80px 0;
  background: #060d18;
}
.abt-pullquote__inner { max-width: 760px; }
.abt-pullquote__label {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: #374151; margin-bottom: 24px;
}
.abt-pullquote__q {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500; line-height: 1.58;
  color: #f0f4ff; font-style: italic;
  letter-spacing: -.02em; margin-bottom: 28px;
}
.abt-pullquote__footer {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.abt-pullquote__attr { font-size: 12.5px; color: #6b7280; letter-spacing: .04em; }
.abt-pullquote__cta {
  font-size: 13.5px; font-weight: 500;
  color: #93c5fd; text-decoration: none; transition: color .15s;
}
.abt-pullquote__cta:hover { color: #fff; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .abt-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .abt-kpi-grid { max-width: 340px; }
  .abt-principles { grid-template-columns: 1fr; gap: 12px; }
  .abt-team__traits { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .abt-story__inner { grid-template-columns: 1fr; gap: 24px; }
  .abt-story__aside { display: flex; align-items: center; gap: 14px; }
  .abt-story__rule { width: 28px; height: 1px; margin: 0; }
  .abt-story__aside-year { display: none; }
  .abt-truths__grid { grid-template-columns: 1fr; }
  .abt-truth { padding: 28px 0 !important; border-right: none !important; border-bottom: 1px solid #1e2d3d !important; }
  .abt-truths__grid > .abt-truth:last-child { border-bottom: none !important; }
  .abt-values__grid { grid-template-columns: 1fr; }
  .abt-values__grid > .abt-value:nth-child(odd) { padding-right: 0; border-right: none; }
  .abt-values__grid > .abt-value:nth-child(even) { padding-left: 0; }
  .abt-values__grid > .abt-value:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-lt); }
  .abt-values__grid > .abt-value:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .abt-hero { padding: 52px 0 44px; }
  .abt-story, .abt-how, .abt-truths, .abt-team, .abt-values, .abt-pullquote { padding: 52px 0; }
  .abt-hero__h1 { font-size: 1.7rem; }
  .abt-sec-hd { margin-bottom: 28px; }
  .abt-principle, .abt-trait { padding: 20px 18px; }
  .abt-truths__hd { margin-bottom: 32px; }
}
