/* Página oficial / roadmap — reusa los tokens de style.css */

.roadmap-wrap { width: 100%; max-width: 760px; }

.rm-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.rm-wordmark {
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--chalk); text-decoration: none;
}
.rm-play-btn {
  width: auto; padding: 9px 18px; border-radius: 8px; font-weight: 700; font-size: 13px;
  background: linear-gradient(180deg, var(--floodlight), var(--floodlight-dim));
  color: var(--ink); text-decoration: none;
}

.rm-hero {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 36px;
  padding: 64px 16px;
  min-height: clamp(280px, 42vw, 460px);
  display: flex;
  align-items: center;
  background-color: var(--pitch-night);
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("assets/roadmap-hero.jpg");
  background-size: cover;
  background-position: center;
}
.rm-hero-inner { max-width: 760px; margin: 0 auto; width: 100%; }
.rm-hero h1 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em;
  font-size: clamp(32px, 6vw, 48px); line-height: 1.05; text-align: left; margin: 0 0 14px 0;
  color: var(--chalk);
}
.rm-hero-sub {
  font-size: 15px; line-height: 1.6; color: var(--chalk); opacity: 0.75; max-width: 56ch; margin: 0;
}

.rm-section { margin-bottom: 40px; }

.rm-goal-headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(20px, 3.4vw, 28px);
  line-height: 1.15;
  color: var(--floodlight);
  margin: 0 0 6px 0;
}

.rm-timeline {
  list-style: none; margin: 16px 0 0 0; padding: 0;
  border-left: 2px solid var(--net-line);
}
.rm-phase {
  display: flex; gap: 14px; padding: 0 0 26px 22px; margin-left: -2px; position: relative;
}
.rm-phase:last-child { padding-bottom: 0; }
.rm-phase-status {
  position: absolute; left: -14px; top: -2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--pitch-line); border: 2px solid var(--net-line);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.rm-phase.done .rm-phase-status { border-color: var(--floodlight-dim); }
.rm-phase.active .rm-phase-status { border-color: var(--floodlight); box-shadow: 0 0 12px rgba(255, 201, 74, 0.5); }
.rm-phase.evaluating .rm-phase-status {
  border-style: dashed;
  border-color: var(--net-line);
  color: var(--chalk);
  opacity: 0.6;
}
.rm-phase h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em;
  font-size: 15px; margin: 2px 0 6px 0; color: var(--chalk);
}
.rm-phase.next h3, .rm-phase.next p { opacity: 0.65; }
.rm-phase.evaluating h3, .rm-phase.evaluating p { opacity: 0.5; }
.rm-phase p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--chalk); opacity: 0.75; max-width: 58ch; }
.rm-eval-note {
  font-family: var(--font-mono); font-size: 11px; line-height: 1.6; color: var(--chalk);
  opacity: 0.5; max-width: 58ch; margin: 18px 0 0 0;
}

.rm-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 14px;
}
.rm-stat {
  background: var(--pitch-line); border: 1px solid var(--net-line); border-radius: 10px; padding: 16px;
}
.rm-stat-label {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--chalk); opacity: 0.6; margin-bottom: 6px;
}
.rm-stat-value {
  font-family: var(--font-display); font-size: 30px; color: var(--floodlight); line-height: 1; margin-bottom: 10px;
}
.bar-bg {
  background: var(--pitch-night); border: 1px solid var(--net-line); border-radius: 999px;
  height: 8px; overflow: hidden;
}
.bar-fill {
  height: 100%; width: 100%; background: var(--floodlight);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.rm-stat-goal {
  font-family: var(--font-mono); font-size: 10px; color: var(--chalk); opacity: 0.5; margin-top: 6px;
}

.rm-footer {
  text-align: center;
  padding: 10px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rm-footer a { font-size: 13px; opacity: 0.7; text-decoration: none; }
.rm-footer a:hover { opacity: 1; }

@media (max-width: 480px) {
  .rm-hero h1 { font-size: 30px; }
}
