/* ROADMAP CSS */

.roadmap-hero {
  background-color: var(--black);
  padding: 8rem 0 4rem;
  text-align: center;
}

.roadmap-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.roadmap-hero-sub {
  font-size: 1.25rem;
  color: var(--grey-300);
  line-height: 1.6;
  padding: 0 1rem;
}

/* Goals Section */
.goals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .goals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.goal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.goal-card:hover {
  transform: translateY(-5px);
}

.goal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.goal-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.goal-card p {
  color: var(--grey-300);
  line-height: 1.6;
}

/* Timeline Section */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  width: 4px;
  background: var(--surface-light);
  border-radius: 4px;
}

@media (min-width: 768px) {
  .timeline-track {
    left: 50%;
    transform: translateX(-50%);
  }
}

.phase {
  position: relative;
  width: 100%;
  padding-left: 4rem;
  margin-bottom: 3rem;
}

.phase::before {
  content: '';
  position: absolute;
  left: 1.625rem;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--surface-light);
  border: 2px solid var(--black);
  border-radius: 50%;
  z-index: 1;
}

@media (min-width: 768px) {
  .phase {
    width: 50%;
    margin-bottom: 4rem;
  }

  .phase-left {
    padding-left: 0;
    padding-right: 3rem;
    left: 0;
    text-align: right;
  }

  .phase-left::before {
    left: auto;
    right: -0.5rem;
  }

  .phase-right {
    padding-left: 3rem;
    left: 50%;
  }

  .phase-right::before {
    left: -0.5rem;
  }
}

.phase-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.phase-in-progress .phase-content {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.15);
}

.phase-in-progress::before {
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}

.phase-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.status-in-progress {
  background: rgba(255, 87, 34, 0.2);
  color: var(--orange);
}

.status-coming-soon {
  background: rgba(158, 158, 158, 0.2);
  color: var(--grey-300);
}

.status-future {
  background: rgba(80, 80, 80, 0.2);
  color: var(--grey-400);
}

.phase-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.phase-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-content li {
  color: var(--grey-300);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.phase-left .phase-content li {
  padding-left: 0;
  padding-right: 1.5rem;
}

.phase-content li::before {
  content: '•';
  color: var(--orange);
  position: absolute;
  left: 0;
}

.phase-left .phase-content li::before {
  left: auto;
  right: 0;
}

@media (max-width: 767px) {
  .phase-left .phase-content li {
    padding-left: 1.5rem;
    padding-right: 0;
    text-align: left;
  }
  .phase-left .phase-content li::before {
    left: 0;
    right: auto;
  }
}

/* ---------- MYSTERY PHASE 3 ---------- */
.phase-mystery .phase-content {
  border-color: rgba(255, 107, 0, 0.15);
  background: rgba(10, 10, 10, 0.8);
  overflow: hidden;
}

.phase-mystery::before {
  background: rgba(255, 107, 0, 0.3);
  box-shadow: 0 0 14px rgba(255, 107, 0, 0.4);
  animation: mystery-pulse 2.5s ease-in-out infinite;
}

@keyframes mystery-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

.status-mystery {
  background: rgba(255, 107, 0, 0.1);
  color: rgba(255, 107, 0, 0.7);
  border: 1px solid rgba(255, 107, 0, 0.2);
  letter-spacing: 0.15em;
}

.phase-mystery-body {
  position: relative;
}

.phase-mystery-blur {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  opacity: 0.35;
}

.phase-mystery-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.phase-mystery-icon {
  font-size: 40px;
  animation: mystery-pulse 3s ease-in-out infinite;
  display: block;
}

.phase-mystery-lock p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding: 0;
}
