/*
 * About page — page-specific styles.
 *
 * Foundation tokens (--accent, --ink-deep, --text), the page hero
 * surface (.page-hero, .page-hero-title, .page-hero-sub), section
 * heads, .card-grid, .stats-grid, +statTile output, +arrowLink output,
 * and +ctaButton output are all owned by the shared stylesheet under
 * /css/. This file only adds the few about-specific surfaces this
 * page introduces: the section spacing rhythm, the immortal-roll grid,
 * the "three doors in" tri-card, and a minor accent treatment.
 */

/* ------- section rhythm ------- */
.about-section {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(235, 233, 228, 0.06);
}

.about-section:first-of-type {
  border-top: 0;
}

.about-section--accented {
  background: linear-gradient(
    180deg,
    rgba(241, 108, 10, 0.04) 0%,
    rgba(241, 108, 10, 0.0) 100%
  );
}

/* ------- prose blocks ------- */
.about-prose {
  max-width: 62ch;
}

.about-prose p {
  margin: 0 0 1.1rem;
  line-height: 1.65;
  color: var(--text, #ebe9e4);
}

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

/* ------- immortal roll ------- */
.about-immortals {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: 0.5rem 1rem;
  max-width: 48rem;
}

.about-immortals li {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--text, #ebe9e4);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(235, 233, 228, 0.08);
}

.about-team-note {
  margin: 2rem 0 0;
  max-width: 62ch;
  line-height: 1.65;
  color: var(--text, #ebe9e4);
}

/* ------- codebase stats — tighten the home grid for this context ------- */
.about-stats {
  max-width: 64rem;
}

/* ------- three doors ------- */
.about-doors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}

.about-door {
  padding: 1.5rem;
  border: 1px solid rgba(235, 233, 228, 0.1);
  border-radius: 0.5rem;
  background: rgba(17, 21, 26, 0.4);
}

.about-door h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--text, #ebe9e4);
}

.about-door p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: var(--text, #ebe9e4);
}

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

.about-cta {
  margin-top: 1rem;
}

/* ------- responsive tightening ------- */
@media (max-width: 640px) {
  .about-section {
    padding: 3rem 0;
  }

  .about-immortals {
    grid-template-columns: repeat(2, 1fr);
  }
}
