.roadmap-hero {
  text-align: center;
  padding-top: 6rem;
}

.hero-subtext {
  max-width: 700px;
  margin: 1rem auto 2rem;
}

.btn-primary {
  background: #caa24d;
  color: #121212;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}

.roadmap-timeline .phase {
  border-left: 3px solid #caa24d;
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.phase-label {
  font-size: 0.85rem;
  color: #caa24d;
  letter-spacing: 0.05em;
}

.phase ul {
  padding-left: 1.2rem;
}

.phase li {
  margin-bottom: 0.5rem;
}

.founder-roi {
  background: var(--charcoal-900);
  border-radius: 8px;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.roi-card {
  background: var(--charcoal-800);
  padding: 1.5rem;
  border-radius: 8px;
}

.founder-comparison table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.founder-comparison th,
.founder-comparison td {
  padding: 0.75rem;
  border-bottom: 1px solid #2a2a2a;
}

.founder-comparison th {
  text-align: left;
  color: #caa24d;
}

.final-cta {
  text-align: center;
  padding-bottom: 6rem;
}

.cta-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #999;
}

.roadmap-vertical {
  background: #121212;
  color: #f5f5f5;
  padding: 4rem 1.5rem;
}

.roadmap-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.roadmap-header p {
  color: #cfcfcf;
}

/* Timeline spine */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2a2a2a;
  transform: translateX(-50%);
}

/* Timeline item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* Dot */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 2rem;
  width: 14px;
  height: 14px;
  background: #caa24d;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -7px;
}

.timeline-item:nth-child(even)::before {
  left: -7px;
}

/* Card */
.timeline-content {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
}

.phase-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #caa24d;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  margin-top: 0;
}

.timeline-content ul {
  padding-left: 1.1rem;
}

.timeline-content li {
  margin-bottom: 0.5rem;
  color: #d0d0d0;
  list-style: none;
}

.bullet-point {
    font-weight: bold;
    font-size: larger;
}

.future-user { color: var(--gold-600)}
/* Mobile: stack vertically */
@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 0;
    text-align: left;
    left: 0 !important;
  }

  .timeline-item::before {
    left: 1px;
  }
}
