.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .55rem .8rem;
  color: var(--surface);
  background: var(--ink);
  border-radius: 7px;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.start-paths {
  margin: 1rem 0 1.35rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--blue) 7%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--blue) 28%, var(--border));
  border-radius: 12px;
}

.start-paths__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.start-paths__head h2 {
  margin: 0;
  color: var(--ink-2);
}

.start-paths__head p {
  margin: 0;
  color: var(--ink-3);
  font-size: .86rem;
}

.start-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}

.start-path {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem .65rem;
  padding: .75rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
}

.start-path:hover {
  color: var(--accent-ink);
  border-color: var(--blue);
  background: var(--blue-wash);
}

.start-path:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.start-path__number {
  grid-row: 1 / span 2;
  color: var(--blue);
  font: 600 .76rem var(--font-mono);
}

.start-path strong { line-height: 1.35; }

.start-path > span:last-child {
  color: var(--ink-2);
  font-size: .82rem;
  line-height: 1.4;
}

.card__difficulty {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--ink-2);
  white-space: nowrap;
}

.card__difficulty::before {
  content: "Niveau: ";
  color: var(--ink-3);
}

.card__cli::before { content: "Werkzeug: "; color: var(--ink-3); }
.card__cost::before { content: "Umfang/Kosten: "; color: var(--ink-3); }

.project-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .65rem;
  margin: .85rem 0;
  padding: 0;
  list-style: none;
}

.project-links li {
  padding: .75rem .8rem;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: .86rem;
}

.project-links li > a:first-child {
  display: block;
  margin-bottom: .3rem;
  font-size: .9rem;
}

.chip-count { color: var(--ink-3); }
.chip[aria-pressed="true"] .chip-count { color: inherit; }

.filter-legend {
  margin: .5rem 0 0;
  color: var(--ink-3);
  font-size: .78rem;
}

@media (max-width: 780px) {
  .start-paths__head { display: block; }
  .start-paths__head p { margin-top: .25rem; }
  .start-paths__grid { grid-template-columns: 1fr; }
}
