.home-hero {
  text-align: center;
  padding: 0.5rem 0 1.75rem;
}

.home-hero h1 {
  font-size: 2.5rem;
  color: var(--text);
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.home-tagline {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin: 0 0 1.25rem;
  font-weight: 350;
}

.home-subline {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 60ch;
  margin: 0 auto;
}

.home-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.home-path-card {
  padding: 2.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 72px rgb(3 4 16 / 92%);
}

.home-active-role {
  max-width: 640px;
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.home-active-role__summary {
  flex: 1;
  min-width: 180px;
}

.home-active-role__eyebrow,
.home-workflow-switch__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-active-role__eyebrow {
  margin-bottom: 0.25rem;
}

.home-active-role__label {
  font-size: 1.1rem;
}

.home-active-role__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.home-workflow-switch {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 2rem 0 1rem;
}

.home-workflow-switch__eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
}

.home-switch-form {
  margin: 0;
}

.home-path-card--active {
  border: 1px solid var(--accent, var(--vt-color-success));
  box-shadow: 0 0 0 2px rgb(var(--vt-color-success-rgb) / 18%);
}

.home-path-card h2 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.home-path-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

.home-path-card ul {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 1.2rem;
  margin: 1.25rem 0;
  line-height: 1.8;
}

.home-path-card ul li {
  margin-bottom: 0.5rem;
}

.home-cta {
  display: inline-block;
  margin-top: 1.25rem;
}

.home-gh-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: rgb(255 255 255 / 6%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 10%);
}

.home-gh-note svg {
  vertical-align: middle;
  margin-right: 0.5rem;
  color: var(--text);
}

.home-gh-note__icon-link {
  margin-right: 0.5rem;
}

.home-gh-note__icon-link svg {
  width: 0.85rem;
  height: 0.85rem;
}

@media (max-width: 768px) {
  .home-hero h1 { font-size: 2rem; }
  .home-tagline { font-size: 1rem; }
  .home-paths { grid-template-columns: 1fr; }
  .home-active-role {
    padding: 1rem 1.1rem;
  }
}
