/* Vanday — About page-specific styles. Builds on tokens.css + landing.css. */

/* ---------- Hero ---------- */
.about-hero {
  padding-top: 56px;
  padding-bottom: 24px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  /* Top-anchor both columns so a short text block doesn't get vertically
     centered against the 360px-tall photo and leave a yawning gap below
     the title before the body section starts. */
  align-items: start;
}
.about-h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 16px 0 0;
  text-wrap: balance;
}
.about-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.about-h1 .glyph {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.about-lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
  font-style: italic;
}

.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.about-photo-cap {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ---------- Body ---------- */
.about-body {
  padding-top: 0;
  padding-bottom: 80px;
}
.about-prose {
  max-width: 680px;
}
.about-prose > p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 22px;
}
.about-prose > p:last-child {
  margin-bottom: 0;
}

/* ---------- Section ---------- */
.about-section {
  margin-top: 64px;
  max-width: 720px;
}
.about-section h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 26px;
  text-wrap: balance;
}
.about-section h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}
.about-section > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 680px;
}
.about-section > p:last-child {
  margin-bottom: 0;
}

/* ---------- Three-point list ("What I learned") ---------- */
.about-points {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.about-point:last-child {
  border-bottom: 1px solid var(--border);
}
.about-point-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 6px;
}
.about-point-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0 0 8px;
}
.about-point-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Pull-out paragraph (single-paragraph definition) ---------- */
.about-pullout {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0;
  max-width: 720px;
}

/* ---------- Signature ---------- */
.about-sig {
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.about-sig strong {
  color: var(--text);
  font-weight: 500;
}

/* ---------- Final CTA — inline (smaller than home) ---------- */
.about-final-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
}
.about-final-cta-text {
  flex: 1;
  min-width: 240px;
}
.about-final-cta-text h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.about-final-cta-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Secondary newsletter signup (below the final CTA) ----------
   Quieter, smaller-feeling than the coral CTA — same .waitlist pill from
   landing.css for the form itself; this wrapper just sets the lead copy
   above it using the design system's sans font + muted color. */
.about-newsletter {
  margin-top: 28px;
  max-width: 560px;
}
.about-newsletter > p {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .about-point {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }
}
