/*
static/css/apps/about.css
==========================================================================
   ABOUT PAGE
   Section 1: Why we exist — white, editorial prose
   Section 2: Your expertise first — light gray, three principle cards
   ========================================================================== */

.about-page-wrapper {
  width: 100%;
}

/* ── SHARED ──────────────────────────────────────────────────────────────── */

.about-section-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scp-green);
  margin-bottom: 1.25rem;
  text-align: center;
}

/* ── WHY WE EXIST ────────────────────────────────────────────────────────── */

.about-gap {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 4.5rem 2.5rem;
}

.about-gap-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-gap-lead {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-gap-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.125rem;
}

.about-gap-body p:last-child {
  margin-bottom: 0;
}

/* Founding principle — visually set apart from the body text */
.about-gap-closing {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.65;
  font-style: italic;
}

/* ── YOUR EXPERTISE FIRST ────────────────────────────────────────────────── */

.about-manifesto {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 4.5rem 2.5rem;
}

.about-manifesto-inner {
  max-width: 920px;
  margin: 0 auto;
}

/* Three cards side by side */
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-principle-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--scp-green);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.375rem;
  transition: box-shadow 0.2s ease;
}

.about-principle-card:hover {
  box-shadow: var(--shadow-md);
}

.about-principle-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.about-principle-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .about-gap,
  .about-manifesto {
    padding: 3rem 1.5rem;
  }

  .about-principles {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
} 