.roadmap :focus-visible {
  outline: 3px solid rgba(168, 85, 247, 0.55);
  outline-offset: 2px;
  border-radius: 14px;
}

.roadmap .hero {
  padding: 48px 0 12px;
  text-align: center;
}

.roadmap .hero__grid {
  display: block;
}

.roadmap .hero h1 {
  margin: 0 auto 14px;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.roadmap .hero p {
  margin: 0 auto 0;
  color: var(--muted);
  max-width: 86ch;
  font-size: 17px;
  line-height: 1.6;
}

.roadmap .hero__note {
  display: inline-block;
  margin-top: 10px;
}

.roadmap .pillrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
}

.roadmap .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
  box-shadow: var(--shadow2);
}

.roadmap .hero__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.roadmap .section-title {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 14px;
}

.roadmap .section-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.01em;
}

.roadmap .roadmap-controls {
  display: flex;
  justify-content: center;
  margin: 10px 0 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.roadmap .roadmap-filters {
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}

.roadmap .filters-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.roadmap .filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.04);
}

.roadmap .filter-btn {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.roadmap .filter-btn[aria-pressed="true"] {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.95),
    rgba(168, 85, 247, 0.85)
  );
  box-shadow: 0 14px 26px rgba(91, 33, 182, 0.28);
}

.roadmap .filter-btn[data-filter="infra"][aria-pressed="true"] {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.95),
    rgba(168, 85, 247, 0.7)
  );
}

.roadmap .filter-btn[data-filter="api"][aria-pressed="true"] {
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.95),
    rgba(168, 85, 247, 0.85)
  );
}

.roadmap .filter-btn[data-filter="frontend"][aria-pressed="true"] {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.9),
    rgba(168, 85, 247, 0.65)
  );
}

.roadmap .filter-btn[data-filter="bug"][aria-pressed="true"] {
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.92),
    rgba(168, 85, 247, 0.65)
  );
}

.roadmap .filter-btn[data-filter="futur"][aria-pressed="true"] {
  background: linear-gradient(
    135deg,
    rgba(100, 116, 139, 0.92),
    rgba(168, 85, 247, 0.65)
  );
}

.roadmap .seg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.04);
}

.roadmap .seg button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}

.roadmap .seg button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.95),
    rgba(168, 85, 247, 0.85)
  );
  box-shadow: 0 14px 26px rgba(91, 33, 182, 0.35);
}

.roadmap .mode-explain {
  display: flex;
  justify-content: center;
  margin: 20px 0 14px;
}

.roadmap .mode-explain__card {
  max-width: 920px;
  width: 100%;
  text-align: center;
}

.roadmap .mode-explain__card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.96);
  letter-spacing: -0.01em;
}

.roadmap .mode-explain__card p {
  margin: 0 auto;
  max-width: 840px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.roadmap .meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: auto;
  overflow: hidden;
  white-space: nowrap;
}

.roadmap .tag {
  font-size: 10.5px;
  color: rgba(46, 16, 101, 0.82);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(91, 33, 182, 0.05)
  );
  white-space: nowrap;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
}

.roadmap .fresco {
  margin-top: 8px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: auto;
}

.roadmap .fresco:before {
  content: "";
  position: absolute;
  inset: -120px -180px auto auto;
  width: 520px;
  height: 420px;
  background:
    radial-gradient(
      ellipse 60% 45% at 35% 35%,
      rgba(168, 85, 247, 0.16),
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 40% at 70% 45%,
      rgba(240, 171, 252, 0.12),
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 35% at 45% 80%,
      rgba(91, 33, 182, 0.06),
      transparent 75%
    );
  pointer-events: none;
  filter: blur(3px);
  opacity: 0.9;
}

.roadmap .fresco__viewport {
  height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  padding: 14px;
}

.roadmap .fresco__viewport:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(246, 248, 252, 0.95) 0%,
    rgba(246, 248, 252, 0) 10%,
    rgba(246, 248, 252, 0) 90%,
    rgba(246, 248, 252, 0.95) 100%
  );
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.roadmap .fresco__scroll {
  height: auto;
  position: relative;
}

.roadmap .fresco__sticky {
  position: relative;
  top: auto;
  height: 100%;
  display: flex;
  align-items: stretch;
  padding: 0;
  justify-content: center;
  z-index: 1;
}

.roadmap .fresco__track {
  will-change: transform;
  display: flex;
  gap: 14px;
  align-items: stretch;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.06s linear,
    opacity 0.18s ease;
  opacity: 1;
  width: 100%;
  height: 100%;
  justify-content: center;
}

html.no-js .roadmap .fresco__scroll {
  height: auto;
}

html.no-js .roadmap .fresco__sticky {
  position: relative;
  top: auto;
  height: auto;
  padding: 0 14px 14px;
  justify-content: center;
}

html.no-js .roadmap .fresco__viewport {
  height: 560px;
  overflow: hidden;
  padding: 14px;
}

html.no-js .roadmap .fresco__track {
  padding: 0;
  justify-content: center;
}

.roadmap .lane {
  width: 378px;
  min-width: 378px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  padding: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
}

.roadmap .lane:before {
  content: "";
  position: absolute;
  inset: -90px -140px auto auto;
  width: 360px;
  height: 280px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(168, 85, 247, 0.12),
    transparent 64%
  );
  pointer-events: none;
  opacity: 0.75;
}

.roadmap .lane > * {
  position: relative;
  z-index: 1;
}

.roadmap .lane__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 0;
}

.roadmap .lane__head h4 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(46, 16, 101, 0.92);
}

.roadmap .lane__badge {
  font-size: 12px;
  color: rgba(46, 16, 101, 0.85);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.12),
    rgba(91, 33, 182, 0.06)
  );
  white-space: nowrap;
}

.roadmap .lane__items {
  display: grid;
  gap: 10px;
  overflow: visible;
  padding-right: 0;
  flex: 0 0 auto;
  min-height: 0;
  align-content: start;
}

.roadmap .rm-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.05);
  padding: 12px;
  position: relative;
  overflow: hidden;
  height: 140px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 8px;
  margin: 0;
}

.roadmap .rm-item:before {
  content: "";
  position: absolute;
  inset: -90px -140px auto auto;
  width: 340px;
  height: 260px;
  background:
    radial-gradient(
      ellipse 60% 45% at 35% 35%,
      rgba(168, 85, 247, 0.12),
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 40% at 70% 45%,
      rgba(240, 171, 252, 0.1),
      transparent 70%
    );
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.85;
}

.roadmap .rm-item > * {
  position: relative;
  z-index: 1;
}

.roadmap .rm-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.roadmap .rm-item h5 {
  margin: 0;
  font-size: 13px;
  color: rgba(46, 16, 101, 0.92);
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.roadmap .rm-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.roadmap .rm-cat {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(15, 23, 42, 0.78);
  white-space: nowrap;
  flex: 0 0 auto;
}

.roadmap .rm-cat[data-cat="infra"] {
  border-color: rgba(59, 130, 246, 0.22);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(59, 130, 246, 0.04)
  );
}

.roadmap .rm-cat[data-cat="api"] {
  border-color: rgba(168, 85, 247, 0.24);
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.14),
    rgba(91, 33, 182, 0.06)
  );
  color: rgba(46, 16, 101, 0.92);
}

.roadmap .rm-cat[data-cat="frontend"] {
  border-color: rgba(34, 197, 94, 0.22);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.12),
    rgba(34, 197, 94, 0.05)
  );
}

.roadmap .rm-cat[data-cat="bug"] {
  border-color: rgba(244, 63, 94, 0.22);
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.1),
    rgba(244, 63, 94, 0.04)
  );
}

.roadmap .rm-cat[data-cat="futur"] {
  border-color: rgba(148, 163, 184, 0.42);
  background: rgba(148, 163, 184, 0.1);
}

.roadmap .lane[hidden] {
  display: none !important;
}

.roadmap .disclaimer {
  max-width: 920px;
  margin: 18px auto 0;
  text-align: center;
}

.roadmap .disclaimer .micro {
  line-height: 1.6;
}

.roadmap .disclaimer__date {
  display: block;
  margin-top: 8px;
  color: var(--muted2);
  font-size: 12.5px;
}

.roadmap .timeline-wrap {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.roadmap .timeline-wrap:before {
  content: "";
  position: absolute;
  inset: -140px -180px auto auto;
  width: 560px;
  height: 460px;
  background:
    radial-gradient(
      ellipse 60% 45% at 35% 35%,
      rgba(168, 85, 247, 0.18),
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 40% at 70% 45%,
      rgba(240, 171, 252, 0.14),
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 35% at 45% 80%,
      rgba(91, 33, 182, 0.1),
      transparent 75%
    );
  filter: blur(4px);
  opacity: 0.95;
  pointer-events: none;
}

.roadmap .timeline-wrap > * {
  position: relative;
  z-index: 1;
}

.roadmap .timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 6px;
}

.roadmap .timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(91, 33, 182, 0),
    rgba(168, 85, 247, 0.75),
    rgba(91, 33, 182, 0)
  );
  opacity: 0.9;
}

.roadmap .t-item {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: stretch;
  gap: 14px;
}

.roadmap .t-side {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

.roadmap .t-side.right {
  justify-content: flex-start;
}

.roadmap .t-rail {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.roadmap .t-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.95),
    rgba(168, 85, 247, 0.85)
  );
  box-shadow: 0 16px 30px rgba(91, 33, 182, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.roadmap .t-dot:after {
  content: "";
  position: absolute;
  top: 6px;
  width: 34px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(168, 85, 247, 0),
    rgba(168, 85, 247, 0.55)
  );
  opacity: 0.85;
}

.roadmap .t-item:nth-child(even) .t-dot:after {
  left: 50%;
  transform: translateX(10px);
}

.roadmap .t-item:nth-child(odd) .t-dot:after {
  right: 50%;
  transform: translateX(-10px) rotate(180deg);
}

.roadmap .t-card {
  width: min(520px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
}

.roadmap .t-card:before {
  content: "";
  position: absolute;
  inset: -90px -140px auto auto;
  width: 360px;
  height: 280px;
  background:
    radial-gradient(
      ellipse 60% 45% at 35% 35%,
      rgba(168, 85, 247, 0.14),
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 40% at 70% 45%,
      rgba(240, 171, 252, 0.12),
      transparent 70%
    );
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}

.roadmap .t-card > * {
  position: relative;
  z-index: 1;
}

.roadmap .t-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.roadmap .t-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(46, 16, 101, 0.86);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.12),
    rgba(91, 33, 182, 0.06)
  );
  white-space: nowrap;
}

.roadmap .t-ver {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(15, 23, 42, 0.78);
  white-space: nowrap;
}

.roadmap .t-card h5 {
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(46, 16, 101, 0.92);
  letter-spacing: -0.01em;
}

.roadmap .t-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.roadmap .t-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.roadmap .t-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(46, 16, 101, 0.92);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.roadmap .t-link:hover {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 12px 26px rgba(91, 33, 182, 0.1);
}

.roadmap .changelog-intro {
  max-width: 78ch;
  margin: 0 auto 18px;
  color: var(--muted);
  text-align: center;
}

.roadmap .changelog-cta {
  margin-top: 18px;
  text-align: center;
}

.roadmap .changelog-cta .micro {
  margin-top: 10px;
}

@media (max-width: 1050px) {
  .roadmap .fresco__viewport {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 14px;
  }

  .roadmap .fresco__sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 0;
  }

  .roadmap .fresco__track {
    width: max-content;
    justify-content: flex-start;
    height: auto;
  }

  .roadmap .lane {
    scroll-snap-align: start;
  }
}

@media (max-width: 920px) {
  .roadmap .timeline:before {
    left: 16px;
    transform: none;
  }

  .roadmap .t-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .roadmap .t-side {
    display: none;
  }

  .roadmap .t-rail {
    justify-content: flex-start;
  }

  .roadmap .t-dot:after {
    display: none;
  }

  .roadmap .t-card {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .roadmap .hero {
    padding: 34px 0 8px;
  }

  .roadmap .seg button {
    padding: 12px 18px;
  }

  .roadmap .mode-explain__card p {
    font-size: 15.5px;
  }
}
