/* Aftergrowth roadmap page. Leans on the site shell (styles.css) for the page frame,
   header and .card; this file only shapes the roadmap content itself. */

/* .main is a flex column, so the horizontal axis is the cross axis here. */
.roadmap-main {
  align-items: center;
}

.roadmap-shell {
  width: min(860px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 48px;
}

.roadmap-intro {
  padding: 24px 28px;
}

.roadmap-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb000;
}

.roadmap-title {
  margin: 4px 0 8px;
  font-size: 2rem;
}

.roadmap-strap {
  margin: 0 0 6px;
  color: #c9cdd3;
}

.roadmap-note {
  margin: 0;
  font-size: 0.85rem;
  color: #8a9099;
}

.roadmap-section {
  padding: 20px 28px 8px;
}

.roadmap-heading {
  margin: 0 0 14px;
  font-size: 1rem;
}

.roadmap-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
}

.roadmap-badge-active {
  color: #ffb000;
  border-color: #a9762a;
  background: rgba(255, 176, 0, 0.08);
}

.roadmap-badge-planned {
  color: #9fc177;
  border-color: #55693f;
  background: rgba(159, 193, 119, 0.07);
}

.roadmap-badge-considering {
  color: #8a9099;
  border-color: #3a3f46;
  background: rgba(138, 144, 153, 0.06);
}

.roadmap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roadmap-list li {
  padding: 12px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.roadmap-list h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.roadmap-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #a7adb5;
}
