/* ============================================
   ABOUT.CSS — About page specific styles
   Used by: about.html only
   ============================================ */

.about-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-block h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--warm);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.about-block p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
}

.about-block p + p { margin-top: 12px; }

/* Reused step flow, styled for about page */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.flow-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
}

.flow-step .step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--slate);
  border: 1px solid var(--border-med);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  flex-shrink: 0;
}

.flow-step-text strong {
  display: block;
  font-size: 14px;
  color: var(--warm);
  margin-bottom: 3px;
}

.flow-step-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Who it's for pills */
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--warm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  padding: 7px 14px;
  border-radius: 20px;
}

/* Extended disclaimer box */
.disclaimer-box {
  padding: 20px 22px;
  border-left: 3px solid var(--amber);
  background: rgba(232,168,51,0.04);
}

.disclaimer-box p {
  color: var(--muted);
  font-size: 13.5px;
}

/* Builder / self-promo closing block */
.builder-note {
  padding: 24px 26px;
  background: rgba(74,144,217,0.05);
  border: 1px solid rgba(74,144,217,0.15);
}

.builder-note p {
  color: var(--warm);
  font-size: 14px;
  line-height: 1.8;
}

.builder-note a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid rgba(74,144,217,0.4);
  transition: opacity 0.2s;
}

.builder-note a:hover { opacity: 0.8; }
