/* About page styles — scoped .about-* prefix. Sits alongside theme.css tokens. */

.about-page {
  font-family: var(--ie-font-body);
  color: var(--ie-text);
  margin: 0;
  padding: 0;
  background: var(--ie-warm);
}

/* ── Hero refinements (re-uses theme .ie-hero) ───────────────── */
.about-hero-content {
  text-align: left;
  max-width: 680px;
}

.about-headline {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
}

/* ── Thesis grid (re-uses theme .ie-mission) ─────────────────── */
.about-thesis-grid {
  text-align: left;
}

/* ── Timeline ───────────────────────────────────────────────── */
.about-timeline {
  background: var(--ie-cream);
  padding: 96px 24px;
}

.about-timeline-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-section-eyebrow {
  font-family: var(--ie-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ie-coral);
  margin: 0 0 12px;
}

.about-section-h2 {
  font-family: var(--ie-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--ie-text);
  margin: 0 0 56px;
  letter-spacing: -0.01em;
}

.about-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.about-timeline-step {
  --step-color: var(--ie-coral);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.about-timeline-step + .about-timeline-step::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 31px;
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--ie-coral) 0%, rgba(255, 107, 107, 0.18) 100%);
}

.about-timeline-marker {
  width: 64px;
  display: flex;
  justify-content: center;
}

.about-timeline-marker span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--step-color);
  color: #fff;
  font-family: var(--ie-font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-timeline-body h3 {
  font-family: var(--ie-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ie-text);
  margin: 6px 0 8px;
}

.about-timeline-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ie-text-dim);
  margin: 0;
}

/* ── CTA band (re-uses theme .ie-hero blob + .ie-btn) ───────── */
.about-cta-band {
  background: var(--ie-cream);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
}

.about-section-h2--invert {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
}

.about-section-eyebrow--invert {
  color: var(--ie-yellow);
}

.about-cta-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ie-text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
}

.about-cta-actions {
  justify-content: center;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 720px) {
  .about-timeline,
  .about-cta-band {
    padding: 64px 20px;
  }

  .about-timeline-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .about-timeline-marker {
    width: 48px;
  }

  .about-timeline-marker span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .about-timeline-step + .about-timeline-step::before {
    left: 23px;
  }
}
