/* /about — company page, loaded ONLY on /about after tokens.css +
   marketing.css, which supply the canvas, section bands, labels, steps and
   CTA band. This file holds only what /about adds: prose measure, the stats
   row, the founders. */

.abt-hero-copy { text-align: center; }
.abt-prose { font-size: .92rem; line-height: 1.6; color: var(--ink); }
.abt-prose + .abt-prose { margin-top: 12px; }
.abt-prose-block { max-width: 640px; margin-inline: auto; }
.abt-prose-block + .abt-prose-block, .abt-stats + .abt-prose-block { margin-top: 20px; }
.abt-tagline { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; line-height: 1.35; margin-top: 18px; color: var(--navy); }
.abt-quote { max-width: 640px; margin-inline: auto; }

/* Stats: 2-up on phones, one row on desktop. */
.abt-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.abt-stats .box { margin-bottom: 0 !important; }
.abt-stat-num { display: block; font-family: var(--serif); font-weight: 800; font-size: 1.6rem; line-height: 1.1; color: var(--orange-d); }
.abt-stat-lbl { display: block; font-size: .72rem; color: var(--muted); margin-top: 4px; }
.abt-stats .abt-stat:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* The learning loop: stacked with down arrows on phones, one row with right
   arrows on desktop. */
.abt-loop { display: flex; flex-direction: column; margin-top: 24px; }
.abt-loop .box { margin-bottom: 0 !important; align-items: center; } /* chip + title share the middle line */
.abt-loop-title { font-size: .9rem; }
.abt-loop-arrow { text-align: center; color: var(--muted); font-size: 1.1rem; line-height: 1; padding: 6px 0; }
.abt-loop-arrow::before { content: "\2193"; }
.abt-loop-step--ai { border-color: var(--ai-line); box-shadow: var(--glow-ai); }
.abt-loop-step--ai .ln-step-num { background: var(--ai-grad); }

.abt-founders { display: grid; gap: 14px; max-width: 560px; margin-inline: auto; }
.abt-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  margin-bottom: 12px; border: 3px solid var(--card); box-shadow: var(--shadow-sm);
}
.abt-avatar--initials { background: var(--orange-soft); color: var(--orange-d); font-family: var(--serif); font-weight: 800; font-size: 2rem; }
.abt-founder .title a { color: var(--navy); }

.ln-cta .abt-cta-alt { margin-inline-start: 8px; border-color: #fff; color: #fff; background: transparent; }
.ln-cta .abt-cta-alt:hover { background: rgba(255, 255, 255, .15); }

@media (min-width: 769px) {
  .abt-founders { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .abt-hero-copy { max-width: 760px; margin-inline: auto; }
  .abt-hero-copy .title.is-3 { font-size: clamp(2.4rem, 2.2vw + 1.2rem, 3.2rem); line-height: 1.06; letter-spacing: -.025em; }
  .abt-prose { font-size: 1.02rem; }
  .abt-tagline { font-size: 1.35rem; }
  .abt-stats { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .abt-loop { flex-direction: row; align-items: stretch; margin-top: 32px; }
  .abt-loop .box { flex: 1; }
  .abt-loop-arrow { display: flex; align-items: center; justify-content: center; width: 36px; padding: 0; }
  .abt-loop-arrow::before { content: "\2192"; }
  .abt-stats .abt-stat:last-child:nth-child(odd) { grid-column: auto; }
  .abt-stat-num { font-size: 2rem; }
}
