.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line, #d9e1ec);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--accent-strong, var(--green, #0f766e));
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 34, 48, .08);
}

.home-link:hover {
  border-color: rgba(15, 118, 110, .3);
  background: var(--accent-soft, var(--green-soft, #e8f7f3));
  color: var(--accent-strong, var(--green, #0b5f59));
}

.action-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  padding: 12px 16px;
  border: 1px solid rgba(15, 118, 110, .22);
  border-radius: 999px;
  background: var(--accent, var(--green, #0f766e));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(15, 118, 110, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .16s ease, transform .16s ease;
}

.action-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .home-link {
    align-self: stretch;
  }

  .action-toast {
    right: 16px;
    bottom: 16px;
  }
}
