/* ============================================================
   ABOUT PAGE — /about
   Story page built from the shared DS tokens. Nothing here is
   reused elsewhere, so it all stays scoped under .about-* names.
   ============================================================ */

/* ---- hero ---------------------------------------------------- */
/* copy left, founders photo right; the pair sits above the fold with the
   trusted-by wall right under it, so the hero has to stay compact */
.ab-hero { padding: clamp(72px, 10vh, 124px) 0 clamp(24px, 4vh, 44px); }
.ab-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(32px, 5vw, 68px); align-items: start; }
/* the hero shares the standard 1180 container so its left edge lines up with
   every band below it; the copy itself is what gets the narrow measure */

.ab-hero h1 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.012em;
  line-height: 1.16; margin: 0; font-size: clamp(30px, 3.8vw, 50px); color: #464545; text-wrap: balance; }
/* site-v3.js fades the nav CTA in once the first content .btn-cta scrolls past.
   This page has no hero CTA, so that button lives at the very bottom and the nav
   would stay empty the whole way down: show it from the top instead. */
.nav-actions .nav-cta { opacity: 1; pointer-events: auto; transform: none; }
/* "Backed by Y Combinator" lockup, same treatment as the home hero badge */
.ab-yc { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 20px; line-height: 1.4; }
.ab-yc span { font-size: 16px; font-weight: 500; color: #687085; }
.ab-yc img { flex: none; width: 119px; height: auto; display: block; }

/* ---- founders photo band ------------------------------------- */
.ab-photo { margin: 0; text-align: center; }
.ab-photo .shot { display: block; max-width: 500px; margin-left: auto; border-radius: 22px;
  overflow: hidden; box-shadow: var(--shadow-selected); line-height: 0; }
.ab-photo .shot img { width: 100%; height: auto; display: block; }
.ab-photo figcaption { margin-top: 14px; font-size: 13.5px; color: var(--slate-500); }

/* the shared logo wall draws a hairline under itself to separate it from the
   next band; directly under this hero it just reads as a header rule */
.ab-hero + .trusted { border-bottom: 0; }

/* ---- story --------------------------------------------------- */
.ab-story .ab-prose { max-width: 68ch; margin-top: 28px; }
.ab-story p { font-size: clamp(16px, 1.35vw, 18px); line-height: 1.65; color: var(--slate-600);
  margin: 0 0 20px; text-wrap: pretty; }
.ab-story p:last-child { margin-bottom: 0; }

/* ---- values -------------------------------------------------- */
/* the cards themselves are the security page's .sec-card, loaded from
   security.css, so the two pages stay identical; only the grid is local */
.ab-values .vgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 40px; }

/* ---- team ---------------------------------------------------- */
.ab-team .tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; margin-top: 34px; }
.ab-p { display: flex; flex-direction: column; text-align: left; }
.ab-p .face { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px; display: block;
  background: var(--surface-muted-2); box-shadow: var(--shadow-sm); }
/* name line carries the LinkedIn link on its right edge */
.ab-p .hd { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.ab-p .nm { font-family: var(--font-serif); font-weight: 400; font-size: 16px; letter-spacing: -0.012em; color: var(--ink-900); }
.ab-p .role { display: block; margin-top: 3px; font-size: 13.5px; color: var(--slate-600); }
.ab-p .bio { margin: 12px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--slate-600); }
/* past employers in their own colours, centred as a row under the bio */
.ab-p .past { display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: auto; padding-top: 18px; }
.ab-p .past img { height: 24px; max-width: 92px; object-fit: contain; }
.ab-p .li { display: inline-flex; flex: none; color: #0A66C2; }
.ab-p .li:hover { opacity: .75; }
.ab-p .li svg { width: 17px; height: 17px; }

/* ---- backers ------------------------------------------------- */
.ab-backers .bgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 34px; }
.ab-back { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-elevation); }
.ab-back .mark { display: flex; align-items: center; height: 48px; }
.ab-back .mark img { flex: none; height: 32px; width: auto; display: block; }
/* FundersClub's mark is a square lion tile, so it sizes like an app icon
   rather than to the YC lockup's wordmark height */
.ab-back .mark-lion img { height: 48px; border-radius: 11px; }
.ab-back b { display: block; font-size: 15px; font-weight: 600; color: var(--ink-900); }
.ab-back span { display: block; margin-top: 4px; font-size: 13.5px; line-height: 1.5; color: var(--slate-600); }

/* ---- closing CTA --------------------------------------------- */
.ab-cta { text-align: center; background: var(--surface-cream); border-top: 1px solid var(--line); padding: clamp(64px, 9vh, 104px) 0; }
.ab-cta h2 { margin: 0 auto; max-width: 15ch; }
.ab-cta .lead { margin: 16px auto 0; }

/* ---- responsive ---------------------------------------------- */
@media (max-width: 860px) {
  /* stacked: copy first, photo under it, capped so it never dominates */
  .ab-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .ab-photo .shot { max-width: 420px; margin: 0 auto; }
  .ab-values .vgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .ab-hero { padding-top: clamp(28px, 6vh, 52px); }
  .ab-backers .bgrid { grid-template-columns: 1fr; }
  .ab-back { gap: 16px; padding: 20px; }
  .ab-values .vgrid { grid-template-columns: minmax(0, 1fr); }
  .ab-team .tgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
