/* ─── PN Features Section ─── */

.pn-feat-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.pn-feat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.pn-feat-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: #5be3a0;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: block;
}

.pn-feat-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: #e8eaf2;
}

.pn-feat-h2-accent {
  color: #e8eaf2;
}

.pn-feat-desc {
  color: #6b7280;
  max-width: 520px;
  margin-top: .75rem;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

/* ─── Grid ─── */

.pn-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5px;
  margin-top: 3.5rem;
  background: rgba(255, 255, 255, .07);
  border-radius: 16px;
  overflow: hidden;
}

.pn-feat-card {
  background: #101218;
  padding: 2rem;
  transition: background .25s;
}

.pn-feat-card:hover {
  background: #161921;
}

.pn-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.pn-feat-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #e8eaf2;
}

.pn-feat-card-desc {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
  .pn-feat-section {
    padding: 3rem 0;
  }
  .pn-feat-grid {
    grid-template-columns: 1fr;
  }
}
