.journey-wrapper {
  margin: 60px auto;
  max-width: 1000px;
}

.journey-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.journey-app {
  display: flex;
  gap: 40px;
}

.journey-left canvas {
  border-radius: 16px;
}

.journey-right {
  max-width: 420px;
}

.journey-text {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.journey-options button {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 26px;
  border: 1px solid #ccc;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.journey-options button.active {
  background: linear-gradient(135deg, #4f6cff, #6b7cff);
  color: #ffffff;
  border-color: #4f6cff;
  box-shadow: 0 6px 18px rgba(79,108,255,0.25);
}


.thinking { background:#eef2ff; border-color:#4f6cff; }
.service { background:#e9f7f2; border-color:#4fbf9b; }
.creation { background:#f2edff; border-color:#9b6cff; }
.building { background:#fff3dc; border-color:#f2a93b; }

.journey-continue {
  margin-top: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.journey-note {
  font-size: .85rem;
  opacity: .6;
}
.journey-continue {
  margin-top: 18px;
  padding: 10px 4px;
  font-size: 1.05rem;
  background: none;
  border: none;
  color: #4f6cff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.journey-continue:hover {
  color: #2f3cff;
}

.journey-continue:active {
  transform: translateY(1px);
  opacity: 0.7;
}
.journey-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.journey-progress span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d3e8;
}

.journey-progress span.active {
  background: #4f6cff;
}
.journey-download {
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 22px;
  border: 1px solid #4f6cff;
  background: #4f6cff;
  color: #fff;
  cursor: pointer;
}
.journey-wrapper.clarifier .journey-text {
  font-size: 1.55rem;
  font-style: italic;
}

.journey-wrapper.clarifier .journey-options button {
  border-style: dashed;
}
.journey-tests {
  margin-top: 80px;
  display: grid;
  gap: 80px;
}

