.features {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-primary);
  max-width: 640px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 56px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 217, 138, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-item .icon-badge svg {
  width: 20px;
  height: 20px;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- Principles: a short, plainly-stated set of build commitments.
   Replaces the old unattributed "mission" quote. --- */
.principles {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.principles-header {
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}

.principles-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.principle-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
}

.principle-row:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.principle-index {
  font-family: var(--font-mono, var(--font-body));
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 4px;
}

.principle-row h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.principle-row p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
}

.cta-band {
  position: relative;
  z-index: 1;
  margin: 0 auto 120px;
  max-width: var(--max-width);
  padding: 0 32px;
}

.cta-band-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band-inner h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-band-inner p {
  position: relative;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-band-inner .hero-cta {
  position: relative;
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .principle-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cta-band-inner {
    padding: 48px 28px;
  }
}