/* Journey Hub Pages */

.journey-hero {
  padding: 3rem 0 2rem;
}

.journey-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.02em;
}

.journey-hero .lead {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* Start Here - numbered sequence */
.start-here {
  padding: 2.5rem 0;
  border-top: 2px solid var(--accent);
}

.start-here h2 {
  margin: 0 0 1.5rem;
}

.start-here-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: start-here;
}

.start-here-list li {
  counter-increment: start-here;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.start-here-list li::before {
  content: counter(start-here);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
}

.start-here-list a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.start-here-list a:hover {
  text-decoration: underline;
}

.start-here-list .item-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Go Deeper sections */
.go-deeper {
  padding: 2rem 0;
}

.go-deeper h2 {
  margin: 0 0 2rem;
}

.topic-group {
  margin-bottom: 2.5rem;
}

.topic-group h3 {
  margin: 0 0 1rem;
  color: var(--accent);
}

.topic-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-group li {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--border);
}

.topic-group li:hover {
  border-left-color: var(--accent);
}

.topic-group a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
}

.topic-group a:hover {
  text-decoration: underline;
}

.topic-group .item-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Journey CTA */
.journey-cta {
  background: var(--bg-alt);
  margin: 0 calc(-1 * clamp(1.1rem, 3vw, 1.6rem));
  padding: 2.5rem clamp(1.1rem, 3vw, 1.6rem);
  text-align: center;
}

.journey-cta h2 {
  margin: 0 0 0.75rem;
}

.journey-cta p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 560px) {
  .journey-hero {
    padding: 2rem 0 1.5rem;
  }

  .start-here-list li {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.2rem;
  }

  .start-here-list li::before {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }
}
