*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cs-background);
  color: var(--cs-text);
}

.roadmap-hero {
  padding: 72px 24px 60px;
  text-align: center;
}

.roadmap-hero-badge {
  margin-bottom: 16px;
  display: inline-block;
}

.roadmap-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.roadmap-hero p {
  color: var(--cs-text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #0ea5e9, #ec4899);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0%; }
  50% { background-position: 100%; }
}

.legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cs-text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--shipped { background: #22c55e; }
.legend-dot--in-progress { background: #f59e0b; }
.legend-dot--planned { background: #7c3aed; }
.legend-dot--considering { background: var(--cs-border); }

.roadmap-body {
  padding-bottom: 60px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 720px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

.phase-card {
  background: var(--cs-surface);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  padding: 24px;
}

.phase-card--shipped { border-top: 3px solid #22c55e; }
.phase-card--in-progress { border-top: 3px solid #f59e0b; }
.phase-card--planned { border-top: 3px solid #7c3aed; }
.phase-card--future { border-top: 3px solid #0ea5e9; }

.phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.phase-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.phase-icon--shipped { background: rgba(34, 197, 94, 0.15); }
.phase-icon--in-progress { background: rgba(245, 158, 11, 0.15); }
.phase-icon--planned { background: rgba(124, 58, 237, 0.15); }
.phase-icon--future { background: rgba(14, 165, 233, 0.15); }

.phase-title {
  font-weight: 700;
  font-size: 15px;
}

.phase-date {
  font-size: 12px;
  color: var(--cs-text-muted);
  margin-top: 2px;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.item-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.item-text {
  color: var(--cs-text-muted);
  line-height: 1.5;
}

.item--done .item-dot { background: #22c55e; }
.item--in-progress .item-dot { background: #f59e0b; }
.item--planned .item-dot { background: #7c3aed; }
.item--considering .item-dot { background: var(--cs-border); }

.feature-cta {
  padding: 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.feature-cta h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-cta p {
  color: var(--cs-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.logo { font-size:18px;font-weight:800;background:linear-gradient(135deg,#7c3aed,#0ea5e9);-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-decoration:none; }
.nav-right { display:flex;align-items:center;gap:6px;flex-wrap:wrap; }
.nav-more-wrap { position:relative; }
.nav-more-menu { position:absolute;right:0;top:calc(100% + 8px);min-width:200px;max-height:70vh;overflow-y:auto;background:var(--cs-surface);border:1px solid var(--cs-border);border-radius:8px;box-shadow:0 12px 40px rgba(0,0,0,0.35);padding:8px 0;z-index:300; }
.nav-more-menu[hidden] { display:none; }
.nav-more-menu a { display:block;padding:8px 16px;font-size:13px;color:var(--cs-text-muted);text-decoration:none; }
.nav-more-menu a:hover { background:rgba(124,58,237,0.1);color:var(--cs-text); }
