:root {
  --journey-border: rgba(20, 30, 45, 0.12);
  --journey-bg: rgba(255, 255, 255, 0.78);
}

.journey-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.journey-hero {
  text-align: left;
}

.formula {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--journey-border);
}

.button.primary {
  background: #111827;
  color: white;
}

.button.secondary {
  background: white;
  color: #111827;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 36px 0;
}

.journey-step,
.proof-card,
.victory-paths {
  background: var(--journey-bg);
  border: 1px solid var(--journey-border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.journey-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  color: white;
  font-weight: 900;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.path-grid button {
  border: 1px solid var(--journey-border);
  border-radius: 18px;
  padding: 14px;
  background: white;
  font-weight: 800;
  cursor: pointer;
}

pre {
  white-space: pre-wrap;
  border-radius: 18px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.06);
  overflow: auto;
}
