/* ============================================================================
   About page — /about/
   ----------------------------------------------------------------------------
   Long-form narrative. Hero with skewed display headline + italic
   accent, then prose sections with display-caps section headers, serif
   body, italic emphasis, and a quote pull. CTA closer reuses pp-cta
   from product.css.
   ========================================================================== */

/* ---- Hero -------------------------------------------------------------- */
.ab-hero {
  padding-block: var(--s-9) var(--s-7);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.ab-hero__inner {
  max-width: 1100px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.ab-hero__kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 var(--s-4);
}
.ab-hero__kicker em.italic {
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: 14px;
  color: var(--marquee);
}

.ab-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 0 0 var(--s-6);
  transform: skewX(-6deg);
  transform-origin: 0% 100%;
  display: inline-block;
  max-width: 18ch;
}
.ab-hero__headline em.italic {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: -0.01em;
  transform: skewX(0);
  display: inline-block;
  color: var(--marquee);
}

.ab-hero__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 0 var(--s-6);
}
.ab-hero__lede em.italic {
  color: var(--text);
}

/* Faint TVL ghost on the right, like the homepage hero. */
.ab-hero__ghost {
  position: absolute;
  right: clamp(-3vw, -1.5vw, 0vw);
  top: clamp(80px, 14vh, 180px);
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 380px);
  line-height: 0.86;
  color: var(--bg-deep);
  opacity: 0.45;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

/* ---- Body sections ----------------------------------------------------- */
.ab-section {
  padding-block: var(--s-8);
  border-top: 1px solid rgba(42, 35, 29, 0.10);
}

.ab-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 640px);
  gap: var(--s-7);
  max-width: 1080px;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .ab-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--s-4);
  }
}

.ab-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0;
  padding-top: 4px;
  position: sticky;
  top: calc(var(--nav-h, 80px) + var(--s-4));
  align-self: start;
}
@media (max-width: 900px) {
  .ab-section__eyebrow { position: static; }
}

.ab-section__body {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
  color: var(--text);
}
.ab-section__body em {
  font-style: italic;
  color: var(--marquee);
}
.ab-section__body strong {
  font-weight: 500;
  color: var(--text);
}

.ab-section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 var(--s-5);
  color: var(--text);
}
.ab-section__title em.italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--marquee);
}

.ab-section__body p {
  margin: 0 0 var(--s-4);
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
}
.ab-section__body p:last-child { margin-bottom: 0; }

.ab-section__body p.lede-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--text-soft);
  margin-bottom: var(--s-5);
}
.ab-section__body p.lede-quote em {
  color: var(--text);
  font-style: italic;
}

.ab-section__body ul {
  margin: 0 0 var(--s-4);
  padding-left: 22px;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
}
.ab-section__body li {
  position: relative;
  margin: 0 0 var(--s-3);
}
.ab-section__body li::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--marquee);
  border-radius: 50%;
}
.ab-section__body li strong {
  font-weight: 600;
  color: var(--text);
}

/* Pull-quote — used for the founder line at the bottom of the story. */
.ab-pull {
  margin: var(--s-5) 0;
  padding: var(--s-5) var(--s-6);
  background: var(--paper, #FAF5E8);
  border-left: 3px solid var(--marquee);
  border-radius: var(--r-md);
  box-shadow: 0 18px 36px -16px rgba(20, 17, 14, 0.10);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4;
  color: var(--text);
}
.ab-pull p { margin: 0; font-family: var(--font-serif); }
.ab-pull__attr {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---- Timeline (building in public section) --------------------------- */
.ab-timeline {
  list-style: none;
  margin: var(--s-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  padding-left: var(--s-5);
}
.ab-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(42, 35, 29, 0.18);
}
.ab-timeline__item { position: relative; }
.ab-timeline__item::before {
  content: '';
  position: absolute;
  left: calc(var(--s-5) * -1 + 2px);
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-wash);
  box-shadow: 0 0 0 3px var(--bg);
}
.ab-timeline__item--foundation::before {
  background: var(--text);
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px rgba(42, 35, 29, 0.18);
}
.ab-timeline__item--now::before {
  background: var(--marquee);
}
.ab-timeline__item--launch::before {
  background: #2E9163;
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px rgba(46, 145, 99, 0.30);
}

.ab-timeline__date {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.ab-timeline__item--foundation .ab-timeline__date { color: var(--text); }
.ab-timeline__item--now .ab-timeline__date { color: var(--marquee); }
.ab-timeline__item--launch .ab-timeline__date { color: #2E9163; }

.ab-timeline__title {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.ab-timeline__body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}

/* ---- Mobile -------------------------------------------------------------- */
@media (max-width: 720px) {
  .ab-hero { padding-block: var(--s-7) var(--s-5); }
  .ab-hero__headline { font-size: clamp(40px, 11vw, 64px); }
  .ab-section { padding-block: var(--s-7); }
  .ab-pull { padding: var(--s-4); }
}
