/* About Page */

.about-page {
  padding: 4rem 2rem;
}

.about-inner {
  max-width: 42rem;
  margin: 0 auto;
}

/* Header */
.about-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink-border);
  flex-shrink: 0;
}

.about-header h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.about-role {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.about-social {
  display: flex;
  gap: 1rem;
}

.about-social a {
  font-size: 0.875rem;
  color: var(--ivory-muted);
  text-decoration: none;
}

.about-social a:hover {
  color: var(--teal);
}

/* Narrative */
.about-narrative {
  margin-bottom: 3rem;
}

.about-narrative p {
  font-size: 1.0625rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-narrative strong {
  color: var(--ivory);
}

/* Stats */
.about-stats {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: 0.75rem;
}

.about-stats h2,
.about-companies h2,
.about-audience h2,
.about-cta h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.about-stats ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-stats li {
  font-size: 1rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ink-border);
}

.about-stats li:last-child {
  border-bottom: none;
}

.about-stats strong {
  color: var(--gold);
}

/* Credentials */
.about-credentials {
  margin-bottom: 3rem;
}

.about-company-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-company-list span {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ivory-muted);
  background: var(--surface);
  border: 1px solid var(--ink-border);
  padding: 0.375rem 1rem;
  border-radius: 1rem;
}

.about-audience-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
}

.about-audience-label {
  font-size: 0.8125rem;
  color: var(--ivory-muted);
}

/* Credentials inline (under header) */
.about-credentials-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-credentials-inline span {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ivory-muted);
  background: var(--surface);
  border: 1px solid var(--ink-border);
  padding: 0.375rem 1rem;
  border-radius: 1rem;
}

/* Newsletter */
.about-newsletter {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--ink-border);
}

.about-newsletter h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.about-newsletter p {
  color: var(--ivory-dim);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.about-newsletter .form-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.about-newsletter .form-message.success {
  color: var(--emerald);
}
.about-newsletter .form-message.error {
  color: #e05555;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--ink-border);
}

.about-cta p {
  color: var(--ivory-dim);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-header {
    flex-direction: column;
    text-align: center;
  }

  .about-social {
    justify-content: center;
  }

  .about-audience-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
