.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-label {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* Feature grid */

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

.feature-cell {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.75rem;
  background: var(--bg);
  position: relative;
  z-index: 0;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s, z-index 0s;
}

.feature-cell:hover {
  background: var(--bg-raised);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  z-index: 1;
}

.feature-cell-icon {
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1;
}

.feature-cell h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-bright);
}

.feature-cell p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.feature-cmd {
  display: block;
  margin-top: auto;
  padding-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Problem / solution block */

.problem {
  background: var(--bg-subtle);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.problem-inner h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.problem-inner p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.solution-list li {
  font-size: 0.875rem;
  color: var(--text-dim);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}

.solution-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-dim);
}

/* Screenshot */

.screenshot-wrap {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.screenshot {
  max-width: 820px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border-hi);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 1.5rem;
  }
}
