.wrap-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.15rem;
}

.page-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
}

.page-menu a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
}

.page-menu a:hover {
  color: var(--green);
  border-color: rgba(74, 222, 128, 0.4);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

.feature {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(12, 22, 40, 0.65);
  padding: 1.1rem 1rem;
}

.feature h3 {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.role {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(12, 22, 40, 0.65);
  padding: 1.1rem 1rem;
}

.role strong {
  display: block;
  font-family: 'Exo 2', system-ui, sans-serif;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.role p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.steps li {
  position: relative;
  padding: 0.85rem 0 0.85rem 3rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-band {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), rgba(34, 211, 238, 0.06));
  padding: 1.5rem 1.25rem;
  margin: 2rem 0 1rem;
  text-align: center;
}

.cta-band h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 1.15rem;
}

.note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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