/* --- APPLE-THEMED ROADMAP SPECIFIC STYLES --- */

.roadmap-fixed-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--white);
  border: var(--border-light);
  border-radius: 20px;
  margin-top: 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.roadmap-svg {
  width: 100%;
  height: 100%;
}

.roadmap-track-base {
  stroke: #E5E5EA;
  stroke-width: 8;
  stroke-linecap: round;
}

.roadmap-track-fill {
  stroke: var(--apple-blue);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

/* Milestone detail cards */
.roadmap-station-card {
  background-color: var(--white);
  border: var(--border-light);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  position: relative;
}

.roadmap-station-card.active {
  border-color: var(--apple-blue);
  background-color: var(--white);
}

.roadmap-station-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.roadmap-station-card .status-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background-color: var(--soft-gray);
  color: #6E6E73;
  margin-bottom: 12px;
}

.roadmap-station-card.active .status-tag {
  background-color: rgba(0, 113, 227, 0.1);
  color: var(--apple-blue);
}

.roadmap-station-card p {
  font-size: 14px;
  color: #6E6E73;
}

.roadmap-station-indicator {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--text-charcoal);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 11px;
}

.roadmap-station-card.active .roadmap-station-indicator {
  border-color: var(--apple-blue);
  background-color: var(--apple-blue);
  color: var(--white);
}

.roadmap-sub-list {
  list-style: none;
  margin-top: 15px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #6E6E73;
}

.roadmap-sub-list li::before {
  content: "• ";
  color: var(--apple-blue);
  font-weight: bold;
}
