/* about.css — Story section, Deploy ecosystem block, principles grid */

/* Story section — editorial reading width, centered */
.about-story {
  background-color: var(--color-bg-dark);
}

.about-story .container-narrow p {
  font-size: var(--text-body-large);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-story .container-narrow p + p {
  margin-top: var(--space-md);
}

/* Deploy Ecosystem */
.deploy-ecosystem {
  background-color: var(--color-bg-black);
}

.deploy-ecosystem h2 {
  color: var(--color-text-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.deploy-ecosystem p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.ecosystem-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ecosystem-item {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
}

.ecosystem-item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h3);
  color: var(--color-text-white);
  margin-bottom: 4px;
}

.ecosystem-item-name.teal {
  color: var(--color-primary);
}

.ecosystem-item-desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
}

/* Values / Principles */
.about-values {
  background-color: var(--color-bg-dark);
}

.about-values-header {
  margin-bottom: var(--space-lg);
}

.about-values-header h2 {
  color: var(--color-text-white);
  margin-top: var(--space-xs);
}

.principle-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.principle-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-xs);
}

.principle-body {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .deploy-ecosystem .two-col-60-40 {
    grid-template-columns: 1fr;
  }
}
